﻿
:root {
    --primary: #D4A574;
    --primary-dark: #B8864B;
    --primary-light: #0425be;
    --secondary: #0425be;
    --accent: #C75B39;
    --accent-light: #E57373;
    --bg-warm: #FFF8F0;
    --bg-cream: #FEF3E2;
    --text-dark: #4A3728;
    --text-light: #8B7355;
    --text-muted: #A89080;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(139, 105, 20, 0.08);
    --shadow: 0 4px 20px rgba(139, 105, 20, 0.12);
    --shadow-lg: 0 8px 40px rgba(139, 105, 20, 0.18);
    --shadow-xl: 0 12px 60px rgba(139, 105, 20, 0.22);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    background: var(--bg-warm);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== PARTICLES ========== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.4;
    }

    95% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-10vh) translateX(30px) rotate(720deg);
        opacity: 0;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

    .navbar.scrolled {
        background: rgba(255, 248, 240, 0.92);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-sm);
        padding: 12px 40px;
    }

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(184, 134, 75, 0.3);
}

.nav-brand-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.nav-brand-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

    .nav-menu a {
        text-decoration: none;
        color: var(--text-light);
        font-size: 0.92rem;
        font-weight: 500;
        padding: 10px 18px;
        border-radius: var(--radius-sm);
        transition: all 0.3s ease;
        position: relative;
    }

        .nav-menu a:hover {
            color: var(--secondary);
            background: rgba(212, 165, 116, 0.12);
        }

        .nav-menu a.active {
            color: var(--secondary);
            background: rgba(212, 165, 116, 0.18);
            font-weight: 600;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Google Login Button */
.google-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .google-btn:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

    .google-btn img {
        width: 20px;
        height: 20px;
    }

    .google-btn.logged-in {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        border-color: transparent;
        color: var(--white);
    }

.nav-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--secondary);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 1;
}

.hero-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212,165,116,0.15), rgba(232,195,158,0.2));
    border: 1px solid var(--primary-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
}

    .hero-badge i {
        color: var(--accent);
    }

.hero-title {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

    .hero-title span {
        background: linear-gradient(135deg, var(--primary-dark), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(184, 134, 75, 0.35);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(184, 134, 75, 0.45);
    }

.btn-secondary {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

    .btn-secondary:hover {
        border-color: var(--primary-dark);
        background: var(--bg-cream);
        transform: translateY(-3px);
    }

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.hero-image-main {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    overflow: hidden;
}

    .hero-image-main::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.6;
    }

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: -60px;
    right: -60px;
    opacity: 0.5;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-light);
    bottom: -40px;
    left: -40px;
    opacity: 0.3;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 6s ease-in-out infinite;
}

.float-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.float-card-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.float-card-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.fc-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

    .fc-1 .float-card-icon {
        background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
        color: #1565C0;
    }

.fc-2 {
    bottom: 80px;
    right: -20px;
    animation-delay: 2s;
}

    .fc-2 .float-card-icon {
        background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
        color: var(--secondary);
    }

.fc-3 {
    bottom: 20px;
    left: 20px;
    animation-delay: 4s;
}

    .fc-3 .float-card-icon {
        background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
        color: #2E7D32;
    }

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ========== FEATURES ========== */
.features {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212,165,116,0.15), rgba(232,195,158,0.2));
    border: 1px solid var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--primary-dark));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    color: var(--secondary);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: #1565C0;
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #2E7D32;
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
    color: #7B1FA2;
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    color: #C62828;
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #E0F7FA, #B2EBF2);
    color: #00838F;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== DEMO SECTION ========== */
.demo {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.demo-wrap {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--white), var(--bg-cream));
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 165, 116, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.demo-chat {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: inset 0 2px 8px rgba(139,105,20,0.06);
}

.chat-msg {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    animation: msgPop 0.5s ease both;
}

    .chat-msg:nth-child(1) {
        animation-delay: 0.2s;
    }

    .chat-msg:nth-child(2) {
        animation-delay: 0.8s;
    }

    .chat-msg:nth-child(3) {
        animation-delay: 1.4s;
    }

@keyframes msgPop {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

    .chat-avatar.naani {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    }

    .chat-avatar.user {
        background: linear-gradient(135deg, #90CAF9, #42A5F5);
    }

.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 80%;
}

    .chat-bubble.naani {
        background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
        color: var(--text-dark);
        border-bottom-left-radius: 4px;
    }

    .chat-bubble.user {
        background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
        color: #1565C0;
        border-bottom-right-radius: 4px;
        margin-left: auto;
    }

.demo-info h3 {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.demo-info p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.demo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .demo-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
        color: var(--text-dark);
        font-weight: 500;
    }

        .demo-list li i {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 25px 20px;
    position: relative;
    z-index: 1;
}

.testi-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 165, 116, 0.08);
    transition: all 0.3s ease;
}

    .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.testi-stars {
    color: #FFB300;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testi-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testi-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== CTA ========== */
.cta {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.cta-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--secondary), #667eea);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

    .cta-wrap::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.cta-title {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--white);
    color: var(--secondary);
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #2D1F14);
    color: var(--white);
    padding: 60px 40px 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.footer-brand-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links a:hover {
            color: var(--primary-light);
            transform: translateX(4px);
        }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s;
        font-size: 1rem;
    }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 80px 30px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
}

    .mobile-menu.open {
        right: 0;
    }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-warm);
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--secondary);
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .mobile-menu-list a {
        display: block;
        padding: 14px 16px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        border-radius: var(--radius-sm);
        transition: all 0.3s;
    }

        .mobile-menu-list a:hover {
            background: var(--bg-cream);
            color: var(--secondary);
        }

.mobile-menu-google {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-desc {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-wrap {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

        .navbar.scrolled {
            padding: 10px 20px;
        }

    .nav-menu, .nav-actions .google-btn {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .features {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 60px 20px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .demo {
        padding: 20px 11px;
    }

    .demo-wrap {
        padding: 30px;
    }

    .cta {
        padding: 60px 20px;
    }

    .cta-wrap {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .float-card {
        display: none;
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }


