/* SatgamAI Homepage — Finalized Brand System */
/* Colors: Indigo + Cyan + Purple + Gold | Fonts: Abhaya Libre + Space Grotesk + JetBrains Mono */

:root {
    /* Indigo Family */
    --indigo-deep: #1A237E;
    --indigo: #3949AB;
    --indigo-light: #5C6BC0;
    --indigo-pale: #E8EAF6;
    
    /* AI Cyan */
    --cyan-deep: #0891B2;
    --cyan: #00D9FF;
    --cyan-light: #67E8F9;
    --cyan-glow: rgba(0, 217, 255, 0.25);
    
    /* AI Purple */
    --purple-deep: #6D28D9;
    --purple: #8B5CF6;
    --purple-light: #A78BFA;
    
    /* Gold */
    --gold-rich: #B8822D;
    --gold: #C9943A;
    --gold-light: #E0B76B;
    
    /* Neutrals */
    --deep-ink: #0D1117;
    --charcoal: #1A1F2E;
    --card-dark: #242B3D;
    --slate: #64748B;
    --slate-light: #94A3B8;
    --warm-cream: #FFF8E7;
    --border-light: #E0D8CC;
    
    /* Typography */
    --font-vedantic: 'Abhaya Libre', serif;
    --font-modern: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    font-family: var(--font-modern);
    color: var(--deep-ink);
    background: var(--warm-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 231, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 248, 231, 0.98);
    box-shadow: 0 2px 24px rgba(13, 17, 23, 0.06);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 0;
}

.logo-sat {
    font-family: var(--font-vedantic);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--indigo-deep);
}

/* Light logo on dark backgrounds */
footer .logo-sat,
.cta-section .logo-sat,
.upanishad .logo-sat,
.differentiators .logo-sat { color: white; }

.logo-ai {
    font-family: var(--font-modern);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cyan);
    text-shadow: 0 0 12px var(--cyan-glow);
}

.logo-ai i {
    font-style: italic;
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--deep-ink);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--indigo);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--indigo) !important;
    color: white !important;
    padding: 0.7rem 1.75rem;
    border-radius: 6px;
    border: 2px solid var(--indigo);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--indigo) !important;
    transform: translateY(-2px);
}

.nav-cta::after { display: none !important; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
    background: var(--warm-cream);
}

.hero-lotus {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 600px;
    height: 600px;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content { max-width: 750px; }

.hero h1 {
    font-family: var(--font-vedantic);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--indigo-deep);
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--slate);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan-deep), var(--purple-deep));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--indigo);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--indigo);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--indigo);
    color: white;
    transform: translateY(-3px);
}

/* ===== UPANISHAD ===== */
.upanishad {
    background: var(--deep-ink);
    color: white;
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}

.upanishad::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.upanishad-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.devanagari {
    font-family: var(--font-vedantic);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--cyan);
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-shadow: 0 0 30px var(--cyan-glow);
}

.transliteration {
    font-family: var(--font-vedantic);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: white;
    opacity: 0.9;
    font-weight: 400;
}

.translation {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--slate-light);
    font-weight: 300;
}

.upanishad-story {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.upanishad-story h3 {
    font-family: var(--font-vedantic);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--cyan);
}

.upanishad-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #D1D5DB;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.breakdown-item { text-align: center; }

.breakdown-term {
    font-family: var(--font-vedantic);
    font-size: 2.5rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.breakdown-meaning {
    font-size: 1rem;
    color: var(--purple-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.breakdown-desc {
    font-size: 1.05rem;
    color: #D1D5DB;
    line-height: 1.6;
}

/* ===== HOW WE WORK ===== */
.how-we-work {
    padding: 8rem 3rem;
    background: var(--warm-cream);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-family: var(--font-vedantic);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--indigo-deep);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--slate);
    line-height: 1.7;
}

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

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(57, 73, 171, 0.1);
    border-color: var(--indigo);
}

.step-number {
    font-family: var(--font-vedantic);
    font-size: 3rem;
    color: var(--indigo);
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.25;
}

.step h3 {
    font-family: var(--font-vedantic);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--indigo-deep);
}

.step p {
    color: var(--slate);
    line-height: 1.7;
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: 8rem 3rem;
    background: var(--indigo-pale);
}

.industries-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.industry-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.1);
}

.industry-card h3 {
    font-family: var(--font-vedantic);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--indigo-deep);
}

.industry-card p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== DIFFERENTIATORS ===== */
.differentiators {
    padding: 8rem 3rem;
    background: var(--charcoal);
    color: white;
}

.differentiators .section-header h2 { color: white; }
.differentiators .section-header p { color: #E2E8F0; }

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

.diff-item { text-align: center; }

.diff-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--card-dark);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diff-item h3 {
    font-family: var(--font-vedantic);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.diff-item p {
    color: #E2E8F0;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 8rem 3rem;
    background: var(--deep-ink);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-lotus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-vedantic);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--cyan);
    text-shadow: 0 0 30px var(--cyan-glow);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #D1D5DB;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: linear-gradient(135deg, var(--cyan-deep), var(--purple-deep));
    color: white;
    padding: 1.1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 217, 255, 0.35);
}

/* ===== FOOTER ===== */
footer {
    background: var(--deep-ink);
    color: white;
    padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.footer-lotus {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand { max-width: 350px; }

.footer-logo {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-sat { color: white; }

.footer-tagline {
    font-family: var(--font-vedantic);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--cyan-light);
}

.footer-brand p {
    color: #CBD5E1;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section h4 {
    font-family: var(--font-vedantic);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--cyan);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--cyan);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #CBD5E1;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.domain {
    font-family: var(--font-mono);
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}

/* ===== ANIMATIONS ===== */

/* Styled "ai" in body text — always cyan italic */
i:not([class]) {
    color: var(--cyan);
    font-style: italic;
}

/* On light backgrounds, make ai slightly darker for readability */
.how-we-work i:not([class]),
.industries i:not([class]),
.page-hero i:not([class]),
.founder-section i:not([class]),
.comparison-section i:not([class]) {
    color: var(--cyan-deep);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================ */
/* ===== CINEMATIC ANIMATIONS ================================= */
/* ============================================================ */

@media (prefers-reduced-motion: no-preference) {

    /* ----- 1. LOTUS COMES ALIVE -----
       NOTE: Each SVG <ellipse> petal has an inline transform="rotate(N 100 100)"
       attribute. CSS `transform` would OVERRIDE that (no merging), collapsing all
       8 petals onto petal #1. So per-petal animations only touch OPACITY/FILTER.
       Only the outer <svg> element (.hero-lotus) is safe to rotate via CSS. */

    .hero-lotus {
        animation: lotus-rotate 90s linear infinite;
        transform-origin: center center;
        will-change: transform;
    }
    .hero-lotus g {
        animation: lotus-glow 10s ease-in-out infinite;
    }
    .hero-lotus ellipse {
        animation: petal-pulse 7s ease-in-out infinite;
    }
    .hero-lotus ellipse:nth-of-type(1) { animation-delay: 0s; }
    .hero-lotus ellipse:nth-of-type(2) { animation-delay: 0.7s; }
    .hero-lotus ellipse:nth-of-type(3) { animation-delay: 1.4s; }
    .hero-lotus ellipse:nth-of-type(4) { animation-delay: 2.1s; }
    .hero-lotus ellipse:nth-of-type(5) { animation-delay: 2.8s; }
    .hero-lotus ellipse:nth-of-type(6) { animation-delay: 3.5s; }
    .hero-lotus ellipse:nth-of-type(7) { animation-delay: 4.2s; }
    .hero-lotus ellipse:nth-of-type(8) { animation-delay: 4.9s; }

    .hero-lotus circle {
        animation: center-pulse 6s ease-in-out infinite;
    }

    @keyframes lotus-rotate {
        /* Must preserve translateY(-50%) from the static .hero-lotus rule,
           because CSS `transform` does not merge — it replaces. */
        from { transform: translateY(-50%) rotate(0deg); }
        to   { transform: translateY(-50%) rotate(360deg); }
    }
    @keyframes lotus-glow {
        0%, 100% { opacity: 0.08; }
        50%      { opacity: 0.16; }
    }
    @keyframes petal-pulse {
        0%, 100% { opacity: 0.65; }
        50%      { opacity: 1; }
    }
    @keyframes center-pulse {
        0%, 100% {
            opacity: 0.6;
            filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.25));
        }
        50% {
            opacity: 0.95;
            filter: drop-shadow(0 0 22px rgba(139, 92, 246, 0.55));
        }
    }

    /* ----- 2. HERO CINEMATIC REVEAL ----- */
    .hero h1 {
        opacity: 0;
        transform: translateY(40px);
        animation: cine-rise 1.3s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero-subtitle {
        opacity: 0;
        transform: translateY(30px);
        animation: cine-rise 1.2s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero-ctas {
        opacity: 0;
        transform: translateY(24px);
        animation: cine-rise 1.2s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes cine-rise {
        to { opacity: 1; transform: translateY(0); }
    }

    /* ----- 3. HIGHLIGHT WORDS — animated gradient shimmer ----- */
    .hero h1 .highlight {
        background: linear-gradient(
            90deg,
            var(--cyan) 0%,
            var(--purple) 35%,
            var(--indigo) 65%,
            var(--cyan) 100%
        );
        background-size: 250% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        animation: shimmer 6s ease-in-out infinite;
        position: relative;
    }
    @keyframes shimmer {
        0%, 100% { background-position: 0% center; }
        50%      { background-position: 250% center; }
    }

    /* ----- 4. AMBIENT FLOATING PARTICLES IN HERO ----- */
    .hero { position: relative; }
    .hero::before,
    .hero::after {
        content: "";
        position: absolute;
        width: 6px; height: 6px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }
    .hero::before {
        background: var(--cyan);
        box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan-glow);
        top: 35%;
        left: 18%;
        animation: float-a 14s ease-in-out infinite;
    }
    .hero::after {
        background: var(--purple);
        box-shadow: 0 0 12px var(--purple);
        top: 65%;
        left: 12%;
        animation: float-b 17s ease-in-out infinite;
    }
    .hero-container { position: relative; z-index: 2; }
    @keyframes float-a {
        0%, 100% { transform: translate(0, 0);          opacity: 0.4; }
        50%      { transform: translate(120px, -160px); opacity: 0.9; }
    }
    @keyframes float-b {
        0%, 100% { transform: translate(0, 0);          opacity: 0.5; }
        50%      { transform: translate(-90px, -130px); opacity: 1; }
    }

    /* ----- 5. SANSKRIT — letter-spacing + blur unfurl ----- */
    .devanagari {
        animation: devanagari-unfurl 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    @keyframes devanagari-unfurl {
        0%   { opacity: 0; letter-spacing: 0.8em; filter: blur(10px); transform: scale(0.95); }
        50%  { opacity: 0.6; letter-spacing: 0.25em; filter: blur(4px); }
        100% { opacity: 1; letter-spacing: 0; filter: blur(0); transform: scale(1); }
    }
    .transliteration {
        animation: cine-rise 1.2s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    .translation {
        animation: cine-rise 1.2s 1.0s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    /* ----- 6. CARDS — lift + glow on hover ----- */
    .industry-card,
    .step,
    .diff-item,
    .breakdown-item {
        transition:
            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
            box-shadow 0.4s ease,
            border-color 0.4s ease,
            background-color 0.4s ease;
    }
    .industry-card:hover,
    .step:hover,
    .diff-item:hover,
    .breakdown-item:hover {
        transform: translateY(-8px);
        box-shadow:
            0 24px 48px -12px rgba(57, 73, 171, 0.22),
            0 0 0 1px rgba(0, 217, 255, 0.35),
            0 0 40px rgba(139, 92, 246, 0.18);
    }

    /* ----- 7. PRIMARY CTA — shine sweep on hover ----- */
    .btn-primary {
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .btn-primary::after {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.45) 50%,
            transparent 70%
        );
        transition: left 0.7s ease;
        pointer-events: none;
    }
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(57, 73, 171, 0.25);
    }
    .btn-primary:hover::after {
        left: 120%;
    }

    /* ----- 8. NAV LOGO — subtle hover sheen ----- */
    .logo .logo-ai {
        position: relative;
        transition: filter 0.3s ease;
    }
    .logo:hover .logo-ai {
        filter: drop-shadow(0 0 8px var(--cyan-glow));
    }

    /* ----- 9. STEP NUMBERS — gradient text ----- */
    .step-number {
        background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    /* ----- 10. PAGE-LOAD AMBIENT BACKGROUND PULSE ----- */
    .hero::before { animation-fill-mode: both; }

} /* end prefers-reduced-motion: no-preference */

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero h1,
    .hero-subtitle,
    .hero-ctas,
    .devanagari,
    .transliteration,
    .translation {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-container { padding: 1rem 2rem; }
    .hero h1 { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-ctas { flex-direction: column; }
    .hero-lotus { width: 400px; height: 400px; right: -15%; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .diff-grid { grid-template-columns: 1fr; }
    .breakdown-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2.5rem; }
    .devanagari { font-size: 2.5rem; }
}