/* ============================================
   LANDING PAGE STYLES
   ============================================ */

/* Modern Google Fonts - Inter + Poppins for logo */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

:root {
    --primary-color: #2d7a3e;
    --primary-dark: #1b4d25;
    --primary-light: #4caf50;
    --secondary-color: #e9c46a;
    --accent-color: #d4a373; /* Earthy tan/gold instead of red */
    --text-dark: #1a2f23; /* Dark green-black */
    --text-light: #5c6b5f;
    --bg-light: #f1f8f3; /* Very light green tint */
    --bg-white: #ffffff;
    --border-color: #dcead9;
    --shadow: 0 4px 12px rgba(45, 122, 62, 0.08);
    --shadow-lg: 0 15px 35px rgba(45, 122, 62, 0.12);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Reset body/html to prevent default margin gaps */
html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.landing-page {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
}

/* Ensure sections span full width */
section {
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(45, 122, 62, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s;
    /* Light frosted glass pill matching navbar */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 6px 16px 6px 10px;
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.1),
        0 0 35px rgba(255, 255, 255, 0.65),
        0 0 60px rgba(255, 255, 255, 0.4);
}

.nav-logo a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 0 50px rgba(255, 255, 255, 0.85),
        0 0 80px rgba(255, 255, 255, 0.55);
}

.navbar.scrolled .nav-logo a {
    color: var(--primary-color);
    background: rgba(45, 122, 62, 0.08);
    border-color: rgba(45, 122, 62, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-logo a:hover {
    background: rgba(45, 122, 62, 0.12);
    border-color: rgba(45, 122, 62, 0.3);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.logo-text {
    color: white; /* Default to white */
    transition: color 0.3s;
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
}

/* Wordmark Logo Styles */
.logo-wordmark {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-wordmark .book {
    color: #ffffff;
}

.logo-wordmark .a {
    color: #4CAF50;
}

.logo-wordmark .tee {
    color: #ffffff;
}

.navbar.scrolled .logo-wordmark .book,
.navbar.scrolled .logo-wordmark .tee {
    color: var(--text-dark);
}

.navbar.scrolled .logo-wordmark .a {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9); /* Default to white-ish */
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover,
.nav-link.active {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
    text-shadow: none;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

/* Match hero button styling for navbar CTA */
.nav-btn.btn-primary {
    background: #2d7a3e;
    border: 2px solid #2d7a3e;
    color: white;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.4);
}

.nav-btn.btn-primary:hover {
    background: #1f5a2b;
    border-color: #1f5a2b;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white; /* Default white */
    border-radius: 3px;
    transition: 0.3s;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 2rem 0 2rem;
    margin: 0;
    color: white;
    /* Fixed navbar takes 70-80px height, padding-top accounts for it */
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Gradient text - see HERO GSAP ANIMATION SUPPORT section */

/* Hero visual mockup removed */
.hero-image {
    display: none;
}

.hero-browser-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.browser-header {
    background: #e1e4e8;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.browser-dot:nth-child(2) {
    background: #ffbd2e;
}

.browser-dot:nth-child(3) {
    background: #27c93f;
}

.browser-url {
    margin-left: auto;
    background: white;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.browser-content {
    padding: 2rem;
    min-height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.3;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: var(--bg-white);
}

/* Feature Category Tabs */
.feature-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.feature-tab {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.feature-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    font-size: 0.65em;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    padding: 0.2em 0.6em;
    border-radius: 12px;
    margin-left: 0.5em;
    vertical-align: middle;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

/* GSAP handles reveal animation - visible class kept for non-JS fallback */
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.hidden {
    display: none;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Mobile: horizontal scroll for tabs */
@media (max-width: 768px) {
    .feature-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .feature-tab {
        flex-shrink: 0;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* Old emoji icon size removed - SVG icons styled in SVG FEATURE ICONS section */

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.step p {
    font-family: var(--font-primary);
    color: var(--text-light);
}

/* ============================================
   DEMO CTA
   ============================================ */

.demo-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.demo-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.demo-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.01em;
}

.demo-content p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.demo-features ul {
    list-style: none;
    padding: 0;
}

.demo-features li {
    font-family: var(--font-primary);
    padding: 0.75rem 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ============================================
   PRICING PREVIEW
   ============================================ */

.pricing-preview {
    background: var(--bg-white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-dark);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-card.featured .price span {
    color: rgba(255,255,255,0.8);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255,255,255,0.2);
}

/* Promo Badge - positioned to avoid Popular badge */
.promo-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    z-index: 10;
    display: none;
    animation: pulse-promo 2s infinite;
}

.promo-badge.active {
    display: block;
}

@keyframes pulse-promo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* When both badges present, adjust positions */
.pricing-card .badge + .promo-badge,
.pricing-card .promo-badge + .badge {
    /* Popular badge stays center, promo goes right */
}

/* Original price strikethrough styling */
.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 400;
    margin-right: 0.5rem;
    opacity: 0.7;
}

.pricing-card.featured .original-price {
    color: rgba(255,255,255,0.6);
}

/* Add-on Callout */
.addon-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    margin: 2rem auto 0;
    padding: 1.25rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid rgba(46, 125, 50, 0.15);
    max-width: 640px;
    font-family: var(--font-primary);
}

.addon-callout svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

.addon-callout p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.addon-callout a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.addon-callout a:hover {
    text-decoration: underline;
}

/* Fine Print Disclaimer */
.pricing-fine-print {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-fine-print p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.pricing-fine-print strong {
    color: var(--text-dark);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    background: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.final-cta p {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(45, 122, 62, 0.3) 100%);
}

/* ============================================
   MOBILE MENU (Outside navbar for proper backdrop-filter)
   ============================================ */

/* Hide mobile menu by default (desktop) */
.nav-menu-mobile {
    display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    /* Hide desktop menu on mobile */
    .nav-menu-desktop {
        display: none !important;
    }
    
    /* Show and style mobile menu */
    .nav-menu-mobile {
        display: flex;
        position: fixed;
        left: 0;
        top: 80px;
        flex-direction: column;
        /* Frosted glass - now works since it's outside navbar */
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        text-align: center;
        transition: transform 0.3s ease, background 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        z-index: 999;
        padding: 2rem 0;
        transform: translateX(-105%);
        will-change: transform;
        list-style: none;
        margin: 0;
    }
    
    /* White text for frosted glass menu */
    .nav-menu-mobile .nav-link {
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu-mobile .nav-link:hover,
    .nav-menu-mobile .nav-link.active {
        color: white;
    }
    
    .nav-menu-mobile.active {
        transform: translateX(0);
    }
    
    /* When scrolled past features section, darken background */
    .nav-menu-mobile.scrolled-past {
        background: rgba(0, 0, 0, 0.5);
    }
    
    /* When on light background pages (navbar has scrolled class), use white glass */
    .nav-menu-mobile.light-mode {
        background: rgba(255, 255, 255, 0.92);
        border-bottom: 1px solid rgba(45, 122, 62, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu-mobile.light-mode .nav-link {
        color: var(--text-dark);
        text-shadow: none;
    }
    
    .nav-menu-mobile.light-mode .nav-link:hover,
    .nav-menu-mobile.light-mode .nav-link.active {
        color: var(--primary-color);
    }
    
    .nav-menu-mobile li {
        margin: 1rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        grid-template-columns: 1fr;
        min-height: 100vh;
        min-height: 100svh; /* Use small viewport height for mobile browsers */
        padding: 0 1.5rem;
        padding-top: max(70px, 10vh); /* Scale with viewport, min 70px for navbar */
        padding-bottom: max(70px, 10vh); /* Balance top padding for true center */
        margin-top: 0;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .demo-card {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Hero specific button overrides */
.hero .btn-primary {
    background: #2d7a3e;
    border-color: #2d7a3e;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.4);
}

.hero .btn-primary:hover {
    background: #1f5a2b;
    transform: translateY(-2px);
}

.hero .btn-secondary {
    color: white;
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover {
    background: white;
    color: #2d7a3e;
}

/* ============================================
   HERO GSAP ANIMATION SUPPORT
   ============================================ */

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-title,
.hero-subtitle,
.hero-buttons {
    opacity: 0;
}

.hero-title.gsap-ready,
.hero-subtitle.gsap-ready,
.hero-buttons.gsap-ready {
    opacity: 1;
}

/* Gradient text shimmer effect */
.gradient-text {
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 50%, #84fab0 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text.shimmer {
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--text-dark);
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
}

/* ============================================
   SVG FEATURE ICONS
   ============================================ */

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.1) 0%, rgba(76, 175, 80, 0.08) 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    transform: scale(1.05);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

/* ============================================
   GSAP FEATURE CARD OVERRIDES
   ============================================ */

.feature-card {
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.gsap-revealed {
    /* GSAP controls opacity and transform directly */
    opacity: 1;
    transform: none;
}
