/* 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;
}

.ellipse {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: var(--gradient-primary);
    animation: float 8s ease-in-out infinite;
}

.ellipse-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    background: var(--gradient-primary);
    animation-delay: 0s;
    animation-duration: 10s;
}

.ellipse-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    background: var(--gradient-secondary);
    animation-delay: -3s;
    animation-duration: 12s;
}

.ellipse-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation-delay: -6s;
    animation-duration: 14s;
}

.stars {
    position: absolute;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite alternate;
}

.stars-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.stars-2 {
    top: 70%;
    right: 25%;
    animation-delay: 1s;
}

.stars-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

/* QR Logo Background Elements */
.bg-decoration::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 8%;
    width: 120px;
    height: 120px;
    background-image: url('../images/qr_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    transform: rotate(-15deg);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.bg-decoration::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    background-image: url('../images/qr_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    transform: rotate(20deg);
    animation: float 8s ease-in-out infinite reverse;
    z-index: 1;
}

/* Additional QR Logo Elements */
.qr-bg-1, .qr-bg-2, .qr-bg-3 {
    position: absolute;
    background-image: url('../images/qr_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    z-index: 1;
    animation: float 10s ease-in-out infinite;
}

.qr-bg-1 {
    top: 45%;
    right: 15%;
    width: 100px;
    height: 100px;
    transform: rotate(45deg);
    animation-delay: -2s;
}

.qr-bg-2 {
    top: 65%;
    right: 35%;
    width: 60px;
    height: 60px;
    transform: rotate(-30deg);
    animation-delay: -4s;
}

.qr-bg-3 {
    top: 25%;
    left: 15%;
    width: 90px;
    height: 90px;
    transform: rotate(60deg);
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% { 
        transform: translateY(-20px) rotate(calc(var(--rotation, 0deg) + 5deg));
    }
}

/* 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;
}


/* Countdown timer - Modern minimal design */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 0 0;
}

.countdown-item {
    text-align: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 8px;
    min-width: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.countdown-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2px;
}

.countdown-label {
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.8;
}

/* Desktop: Larger countdown and left column padding */
@media (min-width: 1025px) {
    .countdown-container {
        gap: 16px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 18px 12px;
        border-radius: 16px;
    }

    .countdown-number {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .hero-left {
        padding-left: 40px;
    }
}

/* Early access section */
.early-access {
    margin: 0;
}

/* Desktop: Show early access in left column, hide standalone */
.early-access-desktop {
    display: block;
}

.early-access-tablet {
    display: none;
}

/* Tablet: Hide early access in left column, show standalone */
@media (max-width: 1024px) and (min-width: 769px) {
    .early-access-desktop {
        display: none;
    }

    .early-access-tablet {
        display: block;
    }

    /* Reduce hero container height and gap for tablet */
    .hero-container {
        min-height: auto;
        align-items: center;
        margin-bottom: 20px;
    }

    .early-access-standalone {
        margin: 10px 0 40px 0;
    }
}

.early-access-standalone {
    text-align: center;
    margin: 20px 0 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.early-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.early-access-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Signup form */
.signup-form {
    max-width: 100%;
    margin: 0 0 20px 0;
}

.form-group {
    display: flex;
    gap: 12px;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 6px;
    box-shadow: var(--shadow-lg);
    transition: border-color 0.3s ease;
}

.form-group:focus-within {
    border-color: var(--primary-color);
}

.email-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 16px;
    background: transparent;
    color: var(--text-dark);
}

.email-input::placeholder {
    color: var(--text-light);
}

.signup-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.btn-icon {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.signup-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-message {
    text-align: center;
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    opacity: 1;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    opacity: 1;
}

/* Social proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    color: var(--text-gray);
}

/* Centered Social proof */
.social-proof-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-gray);
    margin-top: 30px;
    text-align: center;
}

.avatars {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.joined-people-image {
    height: 40px;
    width: auto;
    margin-right: -8px;
    border-radius: 20px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 3px solid white;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.more {
    background: var(--text-light);
}

.social-proof-text {
    font-size: 14px;
    font-weight: 500;
}

/* Benefits preview */
.benefits-preview {
    padding: 100px 0;
    background: var(--bg-gray);
    margin-top: 100px;
}

/* Join now Section */
.join-now {
    padding: 100px 0;
    background: var(--bg-white);
}

.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 80px;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Secure Premium CTA Button */
.secure-premium-cta {
    text-align: center;
    margin-bottom: 40px;
}

.secure-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    min-width: 280px;
}

.secure-premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.secure-premium-btn:active {
    transform: translateY(0);
}

.secure-premium-btn .btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.secure-premium-btn:hover .btn-icon {
    transform: translateX(4px);
}

.step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qr-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.email-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.star-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.gift-icon {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: white;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

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

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

/* Important Note */
.important-note {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.note-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 4px;
}

.note-content {
    flex: 1;
}

.note-title {
    font-size: 18px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 8px;
}

.note-text {
    color: #92400e;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

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

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

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.benefit-item {
    text-align: center;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    display: inline-block;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* 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;
    }

    .countdown-container {
        gap: 12px;
        margin: 20px 0 0 0;
    }

    .countdown-item {
        min-width: 65px;
        padding: 14px 8px;
    }

    .countdown-number {
        font-size: 22px;
        margin-bottom: 4px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .signup-btn {
        justify-content: center;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 12px;
    }
    
    .secure-premium-btn {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        padding: 16px 32px;
        font-size: 1rem;
        justify-content: center;
    }

    .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);
    }

    .countdown-container {
        gap: 8px;
    }

    .countdown-item {
        min-width: 50px;
        padding: 8px 6px;
    }

    .countdown-number {
        font-size: 14px;
    }

    .countdown-label {
        font-size: 9px;
    }
    
    .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;
    }
}

/* Additional mobile styles for Join now section */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .step-card {
        padding: 30px 25px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .important-note {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
}

/* 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;
    }
}

/* 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); }
}

/* Floating Premium Button */
.floating-premium-btn {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px) scale(0.8);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
}

.floating-premium-btn.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.floating-premium-btn:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.floating-premium-btn:active {
    transform: translateX(-50%) translateY(0) scale(0.98);
}

.floating-premium-btn .btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.floating-premium-btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-text-mobile {
    display: none;
}

@media (max-width: 768px) {
    .btn-text-desktop {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
    }
    .floating-premium-btn {
        bottom: 70px;
        padding: 14px 20px;
        font-size: 15px;
        gap: 10px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}
