:root {
    --primary: #10B981; /* Emerald Green */
    --primary-hover: #059669;
    --secondary: #34D399; /* Light Green */
    --bg-dark: #071210; /* Very dark green-black */
    --bg-darker: #020504; /* Almost black */
    --surface: rgba(16, 24, 22, 0.6); /* Dark green glass */
    --surface-light: rgba(255, 255, 255, 0.03);
    --border: rgba(16, 185, 129, 0.15); /* Greenish border */
    --text-main: #f0fdf4; /* Very light green tinted white */
    --text-muted: #9ca3af;
    --font-main: 'Outfit', sans-serif;
    
    --glow-spread: 140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Global Reset and Utilities */
a, button { text-decoration: none !important; }
.d-inline-block { display: inline-block; }
.mt-1 { margin-top: 1rem; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.w-full { width: 100%; text-align: center; }

/* Glassmorphism */
.glassmorphism {
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}
h1 span {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(120deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Logo Styles */
.nav-logo {
    max-height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
}
.footer-logo {
    max-height: 40px;
    width: auto;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, var(--primary), #047857);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
}
.btn-secondary {
    background: rgba(16, 185, 129, 0.05);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-outline:hover {
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}
.btn-text {
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-text:hover { color: var(--secondary); }
.shadow-glow { box-shadow: 0 0 25px rgba(16, 185, 129, 0.3); }

/* Header and Promo Banner */
/* Header and Promo Banner */
.glass-nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
.glass-nav {
    background: rgba(2, 5, 4, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0.75rem 0;
    z-index: 2;
}

/* Premium Promo Banner Below Header */
.top-promo-banner {
    width: 100%;
    /* Premium fluid gradient background with some transparency for glassmorphism */
    background: linear-gradient(270deg, rgba(6, 78, 59, 0.75), rgba(16, 185, 129, 0.65), rgba(6, 78, 59, 0.75));
    background-size: 200% 200%;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1.5rem;
    position: relative;
    z-index: 1;
    animation: liquidGradient 8s ease infinite;
}

@keyframes liquidGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.top-promo-banner .banner-title {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}

.top-promo-banner .banner-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #fff;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4), inset 0 0 10px rgba(16, 185, 129, 0.2);
    animation: premiumPulse 2s infinite ease-in-out;
}

@keyframes premiumPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.4), inset 0 0 10px rgba(16, 185, 129, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.8), inset 0 0 15px rgba(16, 185, 129, 0.5);
    }
}

.top-promo-banner .banner-cta {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}

.top-promo-banner .banner-cta:hover {
    color: var(--secondary);
    border-bottom: 1px solid var(--secondary);
}

.top-promo-banner .banner-date {
    position: absolute;
    right: 0;
    bottom: -0.2rem;
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 400;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .top-promo-banner {
        padding: 0.5rem;
    }
    .banner-inner {
        flex-direction: row;
        padding-bottom: 0;
        justify-content: center;
        align-items: center;
    }
    .banner-content {
        flex-direction: row;
        gap: 0.4rem;
        flex-wrap: nowrap;
    }
    .top-promo-banner .banner-title,
    .top-promo-banner .banner-cta,
    .top-promo-banner .banner-date {
        font-size: 0.6rem;
        white-space: nowrap;
    }
    .top-promo-banner .banner-date {
        position: static;
        transform: none;
        width: auto;
        margin-left: 0.5rem;
    }
    .top-promo-banner .banner-icon-wrapper {
        width: 18px;
        height: 18px;
    }
    .top-promo-banner .banner-icon-wrapper svg {
        width: 10px;
        height: 10px;
    }
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.desktop-nav a {
    color: var(--text-main);
    margin: 0 1.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}
.desktop-nav a:hover { color: var(--primary); }

/* Hero Section */
.hero {
    position: relative;
    padding: 10.5rem 0 4rem 0;
    text-align: center;
    overflow: hidden;
    min-height: auto;
    display: block;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.hero-content-left .badge {
    display: inline-block;
    align-self: center;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
}

.hero-content-left h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-desc {
    font-size: 0.9rem;
    color: #e2e8f0;
    width: 100%;
}

.hero-content-left .hero-desc[style] {
    font-size: 0.8rem !important;
}

.hero-content-left .cta-group {
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.hero-content-left .cta-group a {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.hero-content-left .countdown-wrapper {
    align-self: center;
    padding: 0.8rem 1rem;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 400px;
}

/* Right Column - Visual Composition - Hidden on mobile by default */
.hero-content-right {
    display: none;
}

/* Desktop styles */
@media (min-width: 961px) {
    .hero {
        padding: 14.5rem 0 8rem 0;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }
    
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 0 2rem;
        flex-direction: row;
    }
    
    .hero-content-left {
        text-align: left;
        gap: 1.5rem;
    }
    
    .hero-content-left .badge {
        align-self: flex-start;
        font-size: 0.85rem;
        padding: 0.5rem 1.5rem;
    }
    
    .hero-content-left h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    .hero-content-left .cta-group {
        justify-content: flex-start;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .hero-content-left .cta-group a {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .hero-content-left .countdown-wrapper {
        margin-top: 1rem;
        align-self: flex-start;
        width: auto;
        max-width: none;
        padding: 2rem 3.5rem;
    }
    
    .hero-content-right {
        display: block;
        position: relative;
        height: 550px;
    }
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.deco-1 {
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(16, 185, 129, 0.15);
}

.deco-2 {
    bottom: 40px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: rgba(16, 185, 129, 0.08);
}

/* Image Pills */
.image-pill {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(16, 185, 129, 0.1);
}

.image-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Pill - Executive */
.main-pill {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 220px;
    height: 380px;
    z-index: 20;
}

/* Top Right Pill - Office */
.top-right-pill {
    top: 20px;
    right: 20px;
    width: 160px;
    height: 220px;
    z-index: 10;
}

.top-right-pill img {
    opacity: 0.75;
}

/* Bottom Right Pill - Legal */
.bottom-right-pill {
    bottom: 20px;
    right: 60px;
    width: 130px;
    height: 180px;
    z-index: 30;
    border-color: rgba(16, 185, 129, 0.3);
}

.bottom-right-pill img {
    opacity: 0.85;
    mix-blend-mode: normal;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-group a {
    white-space: nowrap;
}

/* Countdown */
.countdown-wrapper {
    display: inline-block;
    padding: 2rem 3.5rem;
    background: linear-gradient(180deg, rgba(16, 24, 22, 0.7) 0%, rgba(2, 5, 4, 0.9) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.countdown-wrapper p {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}
.countdown {
    display: flex;
    gap: 1.75rem;
}
.time-box span {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    background: linear-gradient(to bottom, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.time-box small {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
    display: block;
}

/* Sections */
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; margin-bottom: 4rem; font-size: 1.1rem; color: var(--text-muted); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.p-loose { padding: 3.5rem; }

/* Target Section */
.target-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}
.highlight-block {
    padding: 3.5rem;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.08), rgba(2, 5, 4, 0.5));
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}
.check-list { list-style: none; margin-top: 1.5rem;}
.check-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #e2e8f0;
    font-size: 1.05rem;
}
.check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-weight: bold;
}

/* Pricing Grid */
.pricing-section { padding: 6rem 0; background: var(--bg-darker); }

/* Proceso Section */
.proceso-section { padding: 4rem 0; }
.proceso-grid { display: flex; gap: 1rem; margin-bottom: 2rem; justify-content: center; }
.proceso-card { flex: 1; max-width: 200px; padding: 1.5rem; text-align: center; border: 1px solid var(--border); border-radius: 10px; }
.proceso-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 0.75rem; }
.proceso-card h3 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.proceso-card p { font-size: 0.8rem; color: var(--text-muted); }
.proceso-cta { display: flex; gap: 1.5rem; align-items: center; padding: 1.5rem; border: 1px solid var(--border); border-radius: 10px; }
.proceso-image { width: 150px; border-radius: 8px; }
@media (max-width: 768px) { .proceso-grid { flex-wrap: wrap; } .proceso-card { max-width: 45%; } }
@media (max-width: 480px) { .proceso-card { max-width: 100%; } .proceso-cta { flex-direction: column; text-align: center; } }

/* FAQ Section */
.faq-section { padding: 4rem 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; }
.faq-question { width: 100%; padding: 1rem; background: transparent; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-weight: 600; color: #fff; gap: 0.5rem; }
.faq-icon { font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); display: inline-block; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; padding: 0 1rem; }
.faq-item.active .faq-answer { max-height: 150px; padding: 0 1rem 1rem; }
.faq-answer p { font-size: 0.85rem; color: var(--text-muted); }
.faq-cta { display: flex; gap: 1.5rem; align-items: center; padding: 1.5rem; border: 1px solid var(--border); border-radius: 10px; }
.faq-image { width: 150px; border-radius: 8px; }
@media (max-width: 600px) { .faq-grid { grid-template-columns: 1fr; } .faq-cta { flex-direction: column; text-align: center; } }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.price-card {
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(16, 24, 22, 0.4);
}
.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 24, 22, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.price-card.popular {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 24, 22, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.12);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), #059669);
    color: #fff;
    padding: 0.25rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.price-card h3 { font-size: 1.35rem; color: #fff; margin-bottom: 0.5rem; }
.price-card .desc { font-size: 0.85rem; min-height: 40px; margin-bottom: 1.5rem; }
.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}
.price .currency { font-size: 1.2rem; color: var(--primary); margin-right: 0.1rem; }
.price .mxn { font-size: 0.9rem; color: var(--text-muted); margin-left: 0.3rem;}
.old-price {
    display: block;
    width: 100%;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}
.features { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.features li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}
.features li::before {
    content: '•';
    color: var(--primary);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Reasons */
.reasons-section { padding: 6rem 0; background: var(--bg-dark); }
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.reason-card {
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.05);
    transition: all 0.3s ease;
}
.reason-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-5px);
}
.reason-card .icon { font-size: 2.5rem; margin-bottom: 1rem; filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3)); }
.reason-card h4 { color: #fff; font-size: 1.25rem; margin-bottom: 0.5rem; }
.reason-card p { font-size: 0.95rem; }

/* Footer */
footer { padding: 4rem 0 2rem 0; border-top: 1px solid rgba(16, 185, 129, 0.1); background: var(--bg-darker);}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-info p { margin-bottom: 1rem; max-width: 350px; font-size: 0.95rem; }
.footer-payments h4 { color: #fff; font-weight: 500; margin-bottom: 1rem;}
.payment-icons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.pay-chip {
    padding: 0.6rem 1.2rem;
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #e2e8f0;
}

/* Animations Triggered by JS */
.align-reveal { animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.section-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.section-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

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

/* Responsive DESIGN */
@media (max-width: 960px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .p-loose { padding: 2rem; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    
    /* Hamburger Button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }
    .hamburger span {
        width: 30px;
        height: 3px;
        background: var(--text-main);
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

    /* Mobile Menu Drawer */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen right */
        width: 280px;
        height: 100vh;
        background: rgba(16, 24, 22, 0.75) !important; /* matching theme */
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(16, 185, 129, 0.2);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        border-radius: 0; /* Override glassmorphism border radius */
    }
    .mobile-menu.active { right: 0; }
    
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        padding: 0 2rem;
    }
    .mobile-nav a {
        color: #fff;
        font-size: 1.3rem;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .mobile-nav a:hover { color: var(--primary); }
    
    /* Adjust top bar layout */
    .nav-content .btn-outline { display: none; }
    
    /* Hero Mobile */
    .hero {
        padding: 10.5rem 0 4rem 0;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-content-left {
        text-align: center;
        gap: 1rem;
    }
    
    .hero-content-left .badge {
        align-self: center;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-content-left h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content-left .hero-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-content-left .hero-desc[style] {
        font-size: 0.8rem !important;
    }
    
    .hero-content-left .cta-group {
        justify-content: center;
        gap: 0.75rem;
        margin: 0.5rem 0;
    }
    
    .hero-content-left .cta-group a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-content-left .countdown-wrapper {
        align-self: center;
        padding: 1rem 1.5rem;
        margin-top: 0.5rem;
    }
    
    .hero-content-right {
        display: none;
    }
    
    .countdown {
        gap: 0.75rem;
    }
    
    .time-box span {
        font-size: 1.8rem;
    }
    
    .time-box small {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
}

@media (min-width: 769px) {
    .hamburger { display: none; }
    .mobile-menu { display: none; }
}

@media (max-width: 480px) {
    h2 { font-size: 1.8rem; }
    p { font-size: 1rem; }
    .cta-group { flex-direction: column; width: 100%; }
    .cta-group .btn-primary, .cta-group .btn-secondary { width: 100%; text-align: center; }
    .countdown { gap: 1rem; justify-content: center; }
    .countdown-wrapper { width: 100%; padding: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .price { font-size: 2.2rem; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Premium Quick Contact Form */
.quick-contact-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.quick-contact-form {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(16, 24, 22, 0.4);
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(16, 185, 129, 0.05);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.quick-contact-form .form-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.quick-contact-form .form-group {
    flex: 1;
}

.quick-contact-form .glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.quick-contact-form .glass-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.quick-contact-form .glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quick-contact-form .submit-btn {
    padding: 0.8rem 2rem;
    white-space: nowrap;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-status {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    display: none;
}
.form-status.success { color: var(--secondary); display: block; }
.form-status.error { color: #f87171; display: block; }

@media (max-width: 960px) {
    .quick-contact-wrapper { margin-top: 2rem; }
}

@media (max-width: 768px) {
    .quick-contact-wrapper { margin-top: 2rem; margin-bottom: 3rem; padding: 0 1rem; width: 100%; }
    .quick-contact-form { padding: 1.5rem; border-radius: 20px; width: 100%; }
    .quick-contact-form .form-row { flex-direction: column; width: 100%; }
    .quick-contact-form .form-group, .quick-contact-form .submit-btn { width: 100%; }
}
