/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Animation utility classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --border-light: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background decorations */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

.logo-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Language switcher */
.language-switcher {
    display: flex;
    gap: 4px;
    margin-left: 20px;
    background: var(--bg-gray);
    border-radius: 8px;
    padding: 4px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 32px;
}

.lang-btn:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.lang-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main content */
.main-content {
    padding-top: 80px;
    min-height: 100vh;
}

/* Hero section */
.hero {
    padding: 20px 0;
}

/* Hero Title Section - Centered at top */
.hero-title-section {
    text-align: center;
    margin-bottom: 40px;
}

/* Two Column Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: auto;
}

/* Left Column - Description + Early Access */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Right Column - Features + Countdown */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image {
    max-width: 440px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.4s ease;
    animation: floatImage 6s ease-in-out infinite;
}

.features-image:hover {
    transform: translateY(-10px) scale(1.02);
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Early Access Section */
.early-access {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 16px;
}

.google-play-logo {
    height: 20px;
    width: auto;
    margin-left: 6px;
}

.hero-title {
    font-size: clamp(2.5rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: left;
    margin: 0;
}


/* Download Buttons in Hero */
.download-buttons {
    display: flex;
    gap: 16px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--text-dark);
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.store-button.app-store {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.store-button.app-store:hover {
    border-color: var(--primary-color);
}

/* App Store button as button element */
.app-store-btn {
    cursor: pointer;
    font-family: inherit;
}

.app-store-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.store-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.store-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

/* Download Section Styles */
.download-section {
    padding: 100px 0;
    background: var(--bg-gray);
    text-align: center;
}

.download-cta {
    margin-top: 60px;
}

.download-buttons-large {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-button-large {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--text-dark);
    color: white;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--text-dark);
    box-shadow: var(--shadow-md);
}

.store-button-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.store-button-large.app-store {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.store-button-large.app-store:hover {
    border-color: var(--primary-color);
}

/* App Store button as button element (large) */
.app-store-btn-large {
    cursor: pointer;
    font-family: inherit;
}

.app-store-btn-large:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Coming Soon Modal */
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.coming-soon-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.coming-soon-modal.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.modal-message {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.modal-close-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.modal-close-btn:active {
    transform: translateY(0);
}

.store-icon-large {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.store-text-large {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text-large .store-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.store-text-large .store-name {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-white);
    display: none; /* Hidden for now */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.step-item {
    flex: 1;
    position: relative;
    text-align: center;
}

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(99, 102, 241, 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.step-item:hover .step-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.step-icon-circle svg {
    width: 48px;
    height: 48px;
    color: white;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.step-connector {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    position: relative;
}

.step-connector::after {
    content: '→';
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 300;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.step-item:hover + .step-connector::after,
.step-connector:hover::after {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary-dark);
}

@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        gap: 60px;
    }

    .step-connector {
        display: none;
    }

    .step-desc {
        max-width: 400px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-gray);
    display: none; /* Hidden for now */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.star {
    font-size: 20px;
    margin-right: 4px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}




/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

.footer-description {
    color: var(--text-light);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Social Media */
.social-media {
    margin-top: 30px;
}

.social-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Individual social media colors */
.social-link.linkedin {
    background: rgba(14, 118, 168, 0.1);
    color: #0e76a8;
}

.social-link.linkedin::before {
    background: #0e76a8;
}

.social-link.linkedin:hover svg {
    color: white;
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.social-link.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover svg {
    color: white;
}

.social-link.tiktok {
    background: rgba(37, 244, 238, 0.1);
    color: #25f4ee;
}

.social-link.tiktok::before {
    background: #000000;
}

.social-link.tiktok:hover svg {
    color: #25f4ee;
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.social-link.facebook::before {
    background: #1877f2;
}

.social-link.facebook:hover svg {
    color: white;
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.social-link.youtube::before {
    background: #ff0000;
}

.social-link.youtube:hover svg {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-left: 1px solid var(--border-light);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-light);
        font-size: 16px;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }

    /* Hero responsive layout */
    .hero-title-section {
        margin-bottom: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .hero-right {
        order: -1;
    }

    .hero-left {
        gap: 30px;
    }

    .features-image {
        max-width: 350px;
    }

    .early-access {
        text-align: center;
    }

    .social-proof {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .social-proof-centered {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .store-button {
        justify-content: center;
    }

    .social-proof {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-left {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-support {
        justify-content: center;
    }

    .footer-links {
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 0px 0;
    }

    .features-image {
        max-width: 320px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 1.9rem);
    }

    .download-buttons-large {
        flex-direction: column;
        align-items: center;
    }

    .store-button-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* Loading and animation states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.email-input:focus {
    outline: none;
    border: none;
}

.signup-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-gray: #000000;
        --text-light: #333333;
        --border-light: #000000;
    }
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/qr_logo.png');
    background-size: 200px 200px;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.02;
    z-index: 0;
}

.faq-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    margin: 0;
    padding-top: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
        max-height: 300px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.pricing-card-popular {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-plan-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-period {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-savings {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 15px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 28px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--bg-gray);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.pricing-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.pricing-btn-popular {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.pricing-btn-popular:hover {
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card-popular {
        transform: none;
        order: -1;
    }

    .pricing-card-popular:hover {
        transform: translateY(-10px);
    }
}

/* Hide social media section */
.social-media {
    display: none;
}

/* Footer support section */
.footer-support {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.support-label {
    color: var(--text-gray);
    font-weight: 500;
}

.support-email {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-email:hover {
    color: white;
    text-decoration: underline;
}

/* CSS-only language flash prevention */
html[data-lang="es"].loading-spanish {
    visibility: hidden !important;
}

html[data-lang="es"].loading-spanish .language-loader {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Enhanced loader for Spanish page loads */
.language-loader.show {
    opacity: 1;
    visibility: visible;
}

/* Language Change Loader */
.language-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.language-loader.show {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.loader-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--bg-gray);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

