.register-stats {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.register-stats > div {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.form-helper-text {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.field-error {
    display: none;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    color: #ef4444;
    font-size: 0.85rem;
}

.field-error::before {
    content: '⚠';
}

.password-strength {
    margin-bottom: 25px;
}

.password-strength-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.strength-bar-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

#testimonialCarousel {
    margin-top: 30px;
}

.testimonial-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3498DB;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}

.testimonial-content small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.testimonial-content strong {
    color: white;
}

.mobile-app-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.mobile-app-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.mobile-app-content {
    flex: 1;
}

.mobile-app-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mobile-app-title .highlight {
    color: var(--primary-color);
}

.mobile-app-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.mobile-app-phone {
    flex: 0 0 300px;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.phone-notch {
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 25px;
    overflow: hidden;
}

.phone-chat-main-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.phone-chat-header {
    padding: 15px;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-app-icon-small img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.phone-chat-header-title h4 {
    margin: 0;
    font-size: 1rem;
}

.phone-chat-header-title span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.phone-chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f5f5f5;
}

.phone-chat-message {
    margin-bottom: 15px;
    display: flex;
}

.phone-chat-message.user {
    justify-content: flex-end;
}

.phone-chat-message.assistant {
    justify-content: flex-start;
}

.phone-chat-bubble {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.phone-chat-message.user .phone-chat-bubble {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 5px;
}

.phone-chat-message.assistant .phone-chat-bubble {
    background: #e9e9e9;
    color: #333;
    border-bottom-left-radius: 5px;
}

.pwa-install-badge {
    margin-top: 10px;
}

.pwa-badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pwa-badge-content:hover {
    transform: scale(1.05);
}

.pwa-icon {
    font-size: 1.2rem;
}

.pwa-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.phone-chat-input {
    padding: 15px;
    border-top: 1px solid #eee;
}

.phone-chat-input-container {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 8px 15px;
}

.chat-input-placeholder {
    flex: 1;
    color: #999;
    font-size: 0.85rem;
}

.chat-send-btn {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .mobile-app-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-app-phone {
        margin-top: 40px;
    }
    
    .mobile-app-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .mobile-app-title {
        font-size: 2rem;
    }
    
    .mobile-app-container {
        gap: 30px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .register-stats > div {
        gap: 20px;
    }
}