/* =========================================================
   ABHINOVA v4 — AI FUTURE LIGHT
   Sections:
   1. Tokens & base
   2. Layout primitives, buttons, switches
   3. Nav + announcement bar
   4. Hero (mesh, globe, floating cards, stats)
   5. Trust bar / marquee
   6. Sections head, services
   7. Portfolio
   8. Process, pricing
   9. Academy
   10. Contact
   11. Footer
   12. Nova AI panel + estimator
   13. Modal / toast
   14. Animations + responsive
   ========================================================= */

/* ---- Hero logo background animation ---- */
.hero-bg-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hbl-svg {
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    animation: hblPulse 8s ease-in-out infinite;
    opacity: 0.9;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes hblPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 1;
    }
}

.hbl-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(124, 92, 255, 0.12);
}

.hbl-ring-1 {
    width: min(520px, 72vw);
    height: min(520px, 72vw);
    animation: hblRingSpin 18s linear infinite;
    border-color: rgba(124, 92, 255, 0.10);
}

.hbl-ring-2 {
    width: min(680px, 90vw);
    height: min(680px, 90vw);
    animation: hblRingSpin 28s linear infinite reverse;
    border-color: rgba(0, 194, 255, 0.08);
}

.hbl-ring-3 {
    width: min(840px, 110vw);
    height: min(840px, 110vw);
    animation: hblRingSpin 40s linear infinite;
    border-color: rgba(255, 122, 198, 0.06);
    border-style: dashed;
}

@keyframes hblRingSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hbl-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(500px, 70vw);
    height: min(500px, 70vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 255, .10) 0%, rgba(0, 194, 255, .06) 40%, transparent 70%);
    animation: hblGlowPulse 6s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes hblGlowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* ensure hero content sits above bg logo */
.hero-mesh,
.hero-inner,
.hero-stats {
    position: relative;
    z-index: 1;
}

:root {
    color-scheme: light;
}

html {
    color-scheme: light;
}

/* dark theme disabled — always light */

/* ---------- 1. Tokens & base ---------- */
:root {
    --bg: #f5f6fb;
    --bg-soft: #eef0fa;
    --surface: #ffffff;
    --surface-2: #fbfbff;
    --ink: #0a0f1e;
    --ink-2: #151d35;
    --muted: #2e3a55;
    --muted-2: #445070;
    --line: rgba(10, 15, 30, .1);
    --line-2: rgba(10, 15, 30, .05);
    --brand: #7c5cff;
    --brand-2: #00c2ff;
    --brand-3: #ff7ac6;
    --grad: linear-gradient(135deg, #7c5cff 0%, #00c2ff 100%);
    --grad-2: linear-gradient(135deg, #a99bff 0%, #7c5cff 50%, #00c2ff 100%);
    --grad-text: linear-gradient(90deg, #7c5cff, #00c2ff 55%, #ff7ac6);
    --shadow-1: 0 1px 2px rgba(11, 16, 32, .04), 0 8px 30px rgba(11, 16, 32, .06);
    --shadow-2: 0 20px 60px -20px rgba(124, 92, 255, .35), 0 4px 14px rgba(11, 16, 32, .06);
    --shadow-3: 0 30px 80px -30px rgba(0, 194, 255, .4), 0 20px 60px -20px rgba(124, 92, 255, .35);
    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --maxw: 1200px;
    --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Space Grotesk', var(--font);
    --font-mono: 'JetBrains Mono', ui-monospace, Menlo, Monaco, monospace;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    font-size: 1.05rem;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
    line-height: 1.55;
}

img,
svg {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

input,
select,
textarea,
button {
    font: inherit;
    color: inherit
}

.h-display {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.6vw, 4.6rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0 0 1.2rem;
}

.h-section {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: .4rem 0 .6rem;
}

.h-section.light {
    color: #fff
}

.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.kicker {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 600;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(124, 92, 255, .08);
    border: 1px solid rgba(124, 92, 255, .18);
}

.kicker.dark {
    color: #bbb6ff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12)
}

.sec-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 62ch;
    margin: .4rem auto 0;
}

.sec-head {
    text-align: center;
    margin: 0 auto 2.4rem;
    max-width: 760px
}

.cursor-glow {
    position: fixed;
    width: 520px;
    height: 520px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(124, 92, 255, .18), rgba(0, 194, 255, .10) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    left: -1000px;
    top: -1000px;
    z-index: 0;
    mix-blend-mode: multiply;
    transition: opacity .3s var(--ease);
    filter: blur(8px);
}

#particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: .55;
}

/* ---------- 2. Primitives ---------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .78rem 1.15rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: .95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    white-space: nowrap;
    isolation: isolate;
}

.btn-lg {
    padding: .95rem 1.4rem;
    font-size: 1rem;
    border-radius: 16px
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%
}

.btn-primary {
    color: white;
    background: var(--grad);
    box-shadow: 0 10px 28px -10px rgba(124, 92, 255, .55), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -14px rgba(124, 92, 255, .7), 0 6px 18px rgba(0, 194, 255, .25), inset 0 1px 0 rgba(255, 255, 255, .3)
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, .0) 30%, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-120%);
    transition: transform .8s var(--ease);
    z-index: -1;
    mix-blend-mode: overlay;
}

.btn-primary:hover::after {
    transform: translateX(120%)
}

.btn-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, .6);
    border-color: var(--line);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: #fff;
    border-color: rgba(124, 92, 255, .35);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-1)
}

.switch {
    position: relative
}

.switch-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--line);
    padding: .5rem .7rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink-2);
    backdrop-filter: blur(10px);
    transition: all .2s var(--ease);
}

.switch-btn:hover {
    border-color: rgba(124, 92, 255, .4);
    color: var(--brand)
}

.sw-icon {
    font-size: .95rem;
    line-height: 1
}

.sw-caret {
    font-size: .7rem;
    opacity: .6
}

.switch-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    list-style: none;
    padding: .4rem;
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    min-width: 200px;
    box-shadow: var(--shadow-2);
    opacity: 0;
    transform: translateY(-6px) scale(.98);
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    z-index: 60;
}

.switch.is-open .switch-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto
}

.switch-menu li {
    padding: .55rem .7rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: .9rem;
    color: var(--ink-2);
    transition: background .15s var(--ease);
}

.switch-menu li:hover,
.switch-menu li[aria-selected="true"] {
    background: rgba(124, 92, 255, .08);
    color: var(--brand)
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    padding: .5rem .9rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink-2);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all .2s var(--ease);
}

.chip:hover {
    border-color: rgba(124, 92, 255, .4);
    color: var(--brand)
}

.chip.is-on {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 22px -10px rgba(124, 92, 255, .6)
}

/* ---------- 3. Nav + announcement ---------- */
.ann-bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    padding: .55rem 1rem;
    background: linear-gradient(90deg, rgba(124, 92, 255, .97), rgba(0, 194, 255, .97));
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .005em;
    flex-wrap: wrap;
}

.ann-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .25);
    animation: pulse 1.6s ease-in-out infinite;
}

.ann-cta {
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: 1px;
    transition: border-color .2s var(--ease);
}

.ann-cta:hover {
    border-color: #fff
}

/* Site header wrapper — fixed, stacks ann-bar above nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}

.site-header.is-hidden {
    transform: translateY(-110%);
}

.ann-bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    padding: .55rem 1rem;
    background: linear-gradient(90deg, #7c5cff, #00c2ff);
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .005em;
    flex-wrap: wrap;
    line-height: 1.4;
}

.nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem clamp(1rem, 4vw, 2.2rem);
    background: #fff;
    backdrop-filter: saturate(160%) blur(22px);
    -webkit-backdrop-filter: saturate(160%) blur(22px);
    border-bottom: 1px solid var(--line);
    gap: .5rem;
    transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}

.nav.is-scrolled {
    background: rgba(255, 255, 255, .98);
    padding: .45rem clamp(1rem, 4vw, 2.2rem);
    box-shadow: 0 4px 24px -8px rgba(11, 16, 32, .12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -.01em
}

.brand-logo {
    height: 30px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    background: transparent;
}

.nav.is-scrolled .brand-logo {
    height: 26px;
}

.brand-mark {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--grad);
    position: relative;
    box-shadow: 0 6px 16px -6px rgba(124, 92, 255, .6);
}

.brand-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .05rem;
    flex: 0 1 auto;
}

.nav-links a {
    padding: .45rem .65rem;
    border-radius: 10px;
    font-size: .84rem;
    color: var(--ink-2);
    font-weight: 500;
    transition: all .2s var(--ease);
}

.nav-links a:hover {
    color: var(--brand);
    background: rgba(124, 92, 255, .06)
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}

.nav-cta {
    padding: .5rem .9rem;
    font-size: .85rem;
    border-radius: 12px;
    white-space: nowrap;
}

.hamburger {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s var(--ease), opacity .2s var(--ease)
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

/* ---------- 4. Hero ---------- */
.hero {
    position: relative;
    padding: calc(var(--header-h, 110px) + 3.2rem) clamp(1rem, 4vw, 2rem) 1rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible
}

.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.hero-mesh .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    mix-blend-mode: multiply;
    animation: drift 22s ease-in-out infinite;
}

.orb-a {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #a99bff, transparent 65%);
    left: -80px;
    top: -40px
}

.orb-b {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #7fd9ff, transparent 65%);
    right: -100px;
    top: 60px;
    animation-delay: -6s
}

.orb-c {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, #ffb7e0, transparent 65%);
    left: 35%;
    top: 280px;
    animation-delay: -12s
}

.hero-mesh .grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 92, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 92, 255, .08) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 30%, black, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem 0 2rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 600;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .65);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    margin-bottom: 1.4rem;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(124, 92, 255, .18);
    animation: pulse 1.8s infinite
}

.hero-lead {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 54ch;
    margin: .4rem 0 1.6rem
}

.hero-cta {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    color: var(--muted-2)
}

.stars {
    color: #fbbf24;
    letter-spacing: .05em;
    font-size: .95rem
}

.hero-stage {
    position: relative;
    height: 520px;
    display: grid;
    place-items: center
}

.globe {
    position: relative;
    width: 480px;
    height: 480px;
    max-width: 100%
}

.globe-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 30px 60px rgba(124, 92, 255, .25))
}

.globe-rot {
    transform-origin: center;
    animation: spinY 28s linear infinite
}

.globe::before {
    content: "";
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(124, 92, 255, .25), transparent 60%);
    filter: blur(30px);
    z-index: -1;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .7rem;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--line);
    padding: .65rem .85rem;
    border-radius: 14px;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-2);
    animation: float 6s ease-in-out infinite;
    min-width: 200px;
}

.float-1 {
    top: 8%;
    left: -10%;
    animation-delay: -1s
}

.float-2 {
    bottom: 18%;
    left: -4%;
    animation-delay: -3s
}

.float-3 {
    top: 36%;
    right: -12%;
    animation-delay: -2s
}

.fc-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.fc-title {
    font-size: .86rem;
    font-weight: 700;
    color: var(--ink)
}

.fc-meta {
    font-size: .74rem;
    color: var(--muted);
    margin-top: 1px
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    margin: 2rem 0 1rem;
    box-shadow: var(--shadow-1);
    background-color: rgba(255, 255, 255, .6);
    backdrop-filter: blur(12px);
}

.stat {
    background: rgba(255, 255, 255, .7);
    padding: 1.4rem 1rem;
    text-align: center;
    transition: background .25s var(--ease);
}

.stat:hover {
    background: rgba(255, 255, 255, .95)
}

.num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.02em;
}

.lbl {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .2rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500
}

/* ---------- 5. Trust bar / marquee ---------- */
.trust {
    max-width: var(--maxw);
    margin: 3rem auto 2rem;
    padding: 0 clamp(1rem, 4vw, 2rem);
    text-align: center
}

.trust-head {
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 1.2rem;
    font-weight: 600
}

.marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2.6rem;
    width: max-content;
    animation: marquee 40s linear infinite;
    padding: .5rem 0;
}

.marquee-track span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: rgba(11, 16, 32, .32);
    white-space: nowrap;
    transition: color .25s var(--ease);
}

.marquee-track span:hover {
    color: var(--brand)
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .7rem;
    margin-top: 1.6rem
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    font-size: .8rem;
    color: var(--muted);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.bdg-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand)
}

/* ---------- 6. Services ---------- */
.services {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.svc-card {
    position: relative;
    padding: 1.6rem 1.4rem 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .85), rgba(255, 255, 255, .65));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    cursor: pointer;
    isolation: isolate;
}

.svc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(124, 92, 255, .18), transparent 50%);
    opacity: 0;
    transition: opacity .35s var(--ease);
    z-index: -1;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2);
    border-color: rgba(124, 92, 255, .3)
}

.svc-card:hover::before {
    opacity: 1
}

.svc-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--grad);
    margin-bottom: 1rem;
    box-shadow: 0 10px 22px -10px rgba(124, 92, 255, .6);
    transition: transform .35s var(--ease);
}

.svc-card:hover .svc-ico {
    transform: rotate(-6deg) scale(1.05)
}

.svc-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 .35rem;
    letter-spacing: -.01em
}

.svc-desc {
    font-size: .94rem;
    color: var(--muted);
    margin: 0
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: .9rem
}

.svc-tag {
    font-size: .72rem;
    padding: .25rem .55rem;
    border-radius: 8px;
    background: rgba(124, 92, 255, .08);
    color: var(--brand);
    font-weight: 600;
    border: 1px solid rgba(124, 92, 255, .15);
}

.svc-more {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: 1rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand);
    transition: gap .25s var(--ease);
}

.svc-card:hover .svc-more {
    gap: .6rem
}

/* ---------- 7. Portfolio / work ---------- */
.work {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.work-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin: 0 auto 2rem
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
}

.work-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
    border: 1px solid var(--line);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    will-change: transform;
    contain: layout style;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2)
}

.work-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #eef0fa, #fbfbff);
}

.work-thumb svg {
    width: 100%;
    height: 100%
}

.work-tag {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: rgba(255, 255, 255, .9);
    color: var(--ink-2);
    padding: .3rem .6rem;
    border-radius: 8px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    backdrop-filter: blur(8px);
}

.work-body {
    padding: 1rem 1.1rem 1.1rem
}

.work-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 .15rem
}

.work-meta {
    font-size: .85rem;
    color: var(--muted)
}

.work-stack {
    display: flex;
    gap: .3rem;
    margin-top: .65rem;
    flex-wrap: wrap
}

.work-stack span {
    font-family: var(--font-mono);
    font-size: .7rem;
    padding: .2rem .45rem;
    border-radius: 6px;
    background: rgba(11, 16, 32, .05);
    color: var(--muted);
}

.work-card.hidden {
    display: none
}

.work-result {
    position: absolute;
    bottom: .8rem;
    right: .8rem;
    background: var(--grad);
    color: #fff;
    padding: .3rem .6rem;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 700;
    box-shadow: 0 6px 14px -4px rgba(124, 92, 255, .5);
}

/* ---------- 8. Process & pricing ---------- */
.process {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.proc-grid {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: step;
}

.proc-step {
    position: relative;
    padding: 1.6rem 1.3rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.proc-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-1)
}

.proc-num {
    font-family: var(--font-mono);
    font-size: .8rem;
    font-weight: 600;
    color: var(--brand);
    background: rgba(124, 92, 255, .1);
    display: inline-block;
    padding: .25rem .55rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.proc-step h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 .35rem
}

.proc-step p {
    font-size: .9rem;
    color: var(--muted);
    margin: 0
}

.pricing {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    align-items: stretch
}

.price-card {
    position: relative;
    padding: 1.8rem 1.6rem;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2)
}

.price-card.is-feat {
    background: linear-gradient(180deg, #0d1230, #1a1f4a);
    color: #fff;
    border-color: rgba(255, 255, 255, .1);
    box-shadow: var(--shadow-3);
    position: relative;
}

.price-card.is-feat .tier-desc,
.price-card.is-feat .tier-feats li,
.price-card.is-feat .tp-per {
    color: #aab0d0
}

.price-card.is-feat .tier-tag {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .15)
}

.feat-flag {
    position: absolute;
    top: -12px;
    left: 1.6rem;
    background: var(--grad);
    color: #fff;
    padding: .3rem .7rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: 0 6px 14px -4px rgba(124, 92, 255, .5);
}

.tier-tag {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .3rem .6rem;
    border-radius: 8px;
    background: rgba(124, 92, 255, .08);
    color: var(--brand);
    border: 1px solid rgba(124, 92, 255, .15);
    margin-bottom: 1rem;
}

.tier-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 0 0 .3rem;
    letter-spacing: -.01em
}

.tier-desc {
    font-size: .92rem;
    color: var(--muted);
    margin: 0 0 1.2rem
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    margin-bottom: 1.2rem
}

.tp-cur {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.02em
}

.price-card.is-feat .tp-cur {
    color: #ffffff;
    -webkit-background-clip: unset;
    background-clip: unset;
    background: none;
}

.tp-per {
    font-size: .85rem;
    color: var(--muted)
}

.tier-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: grid;
    gap: .55rem;
    flex: 1
}

.tier-feats li {
    font-size: .92rem;
    color: var(--ink-2);
    padding-left: 1.4rem;
    position: relative
}

.tier-feats li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--grad);
    opacity: .95;
    background-image: var(--grad), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8l3 3 5-6' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-blend-mode: normal;
}

.tier-feats li::after {
    content: "";
    position: absolute;
    left: 0;
    top: .45rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8l3 3 5-6' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* ---------- 9. Academy ---------- */
.academy {
    max-width: var(--maxw);
    margin: 6rem auto 5rem;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.acad-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1rem;
    border-radius: var(--radius-xl);
    padding: 2.6rem;
    background: linear-gradient(135deg, #0a0e25 0%, #161b45 50%, #1f1145 100%);
    color: #fff;
    box-shadow: var(--shadow-3);
}

.acad-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 400px at 20% 0%, rgba(124, 92, 255, .35), transparent 60%),
        radial-gradient(600px 400px at 100% 100%, rgba(0, 194, 255, .3), transparent 60%);
    pointer-events: none;
}

.acad-copy {
    position: relative;
    z-index: 1
}

.acad-sub {
    color: #bbb6ff;
    max-width: 50ch;
    margin: .4rem 0 1.5rem;
    font-size: 1.02rem
}

.acad-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: .55rem
}

.acad-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: .95rem;
    color: #dde0f5;
}

.acad-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 0 4px rgba(124, 92, 255, .18);
}

.acad-form {
    display: flex;
    gap: .5rem;
    max-width: 420px;
    flex-wrap: wrap
}

.acad-form input {
    flex: 1;
    min-width: 200px;
    padding: .85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    outline: none;
    transition: border-color .2s var(--ease), background .2s var(--ease);
}

.acad-form input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.acad-form input:focus {
    border-color: var(--brand-2);
    background: rgba(255, 255, 255, .1)
}

.acad-stage {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
    z-index: 1;
}

.acad-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(124, 92, 255, .4);
    box-shadow: inset 0 0 60px rgba(124, 92, 255, .15);
    animation: spinY 24s linear infinite;
}

.acad-ring::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-2);
    box-shadow: 0 0 18px var(--brand-2);
}

.acad-ring.r2 {
    width: 380px;
    height: 380px;
    border-color: rgba(0, 194, 255, .3);
    animation-duration: 36s;
    animation-direction: reverse
}

.acad-mono {
    position: relative;
    z-index: 1;
    background: rgba(8, 12, 30, .7);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    font-family: var(--font-mono);
    font-size: .82rem;
    color: #cfd6ff;
    width: 320px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, .5);
}

.acad-mono .line {
    padding: .15rem 0;
    display: flex;
    align-items: center;
    gap: .5rem
}

.acad-mono .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0
}

.acad-mono .dot.g {
    background: #4ade80
}

.acad-mono .dot.b {
    background: #60a5fa
}

.acad-mono .dot.p {
    background: #c084fc
}

.acad-mono .typed {
    color: #fff;
    margin-top: .5rem
}

.caret {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--brand-2);
    margin-left: 2px;
    vertical-align: -2px;
    animation: blink 1s infinite
}

/* ---------- 10. Contact ---------- */
.contact {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.contact-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 2.5rem;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2.4rem;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-1);
}

.contact-left .h-section {
    text-align: left
}

.contact-bullets {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0;
    display: grid;
    gap: .6rem
}

.contact-bullets li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .95rem;
    color: var(--ink-2)
}

.cb-i {
    color: var(--brand)
}

.founder {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line)
}

.founder-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 6px 14px -4px rgba(124, 92, 255, .5);
}

.founder-name {
    font-weight: 700;
    font-size: .98rem
}

.founder-role {
    font-size: .82rem;
    color: var(--muted)
}

.contact-form {
    display: grid;
    gap: .85rem
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem
}

.field {
    display: grid;
    gap: .4rem
}

.field span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink-2)
}

.field input,
.field select,
.field textarea {
    padding: .78rem .9rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .7);
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(124, 92, 255, .12);
}

.field textarea {
    resize: vertical;
    min-height: 110px;
    font-family: inherit
}

.lead-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .4rem
}

.lead-meta {
    font-size: .78rem;
    color: var(--muted-2)
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .12)
}

/* ---------- 11. Footer ---------- */
.foot {
    background: linear-gradient(180deg, transparent, rgba(11, 16, 32, .04));
    border-top: 1px solid var(--line);
    margin-top: 4rem;
    padding: 3.4rem clamp(1rem, 4vw, 2rem) 1.6rem;
}

.foot-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2rem 1.5rem;
}

.foot-brand .brand {
    margin-bottom: 1rem
}

.foot-tag {
    color: var(--muted);
    font-size: .92rem;
    max-width: 38ch;
    margin: 0 0 1.2rem
}

.news {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    max-width: 420px
}

.news input {
    flex: 1;
    min-width: 200px;
    padding: .7rem .9rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .7);
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.news input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(124, 92, 255, .12)
}

.foot-col h4 {
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin: .3rem 0 .9rem;
    font-weight: 700;
}

.foot-col a {
    display: block;
    padding: .3rem 0;
    font-size: .92rem;
    color: var(--muted);
    transition: color .2s var(--ease);
}

.foot-col a:hover {
    color: var(--brand)
}

.foot-base {
    max-width: var(--maxw);
    margin: 2rem auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .84rem;
    color: var(--muted-2);
    flex-wrap: wrap;
}

/* ---------- 12. Nova AI panel ---------- */
.nova-fab {
    position: fixed;
    bottom: 1.2rem;
    right: 1.2rem;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .85rem 1.1rem;
    border-radius: 999px;
    color: #fff;
    background: var(--grad);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 18px 40px -14px rgba(124, 92, 255, .7), 0 6px 18px rgba(0, 194, 255, .25), inset 0 1px 0 rgba(255, 255, 255, .3);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    isolation: isolate;
}

.nova-fab:hover {
    transform: translateY(-3px)
}

.nova-fab-ring {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 2px solid rgba(124, 92, 255, .4);
    animation: pulseRing 2.2s ease-out infinite;
    z-index: -1;
}

@keyframes pulseRing {
    0% {
        transform: scale(.95);
        opacity: .8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.nova-fab-label {
    letter-spacing: .02em
}

.nova-panel {
    position: fixed;
    right: 1.2rem;
    bottom: 5rem;
    z-index: 90;
    width: 380px;
    max-width: calc(100vw - 2rem);
    height: 560px;
    max-height: calc(100vh - 7rem);
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 80px -20px rgba(11, 16, 32, .25), 0 16px 40px -16px rgba(124, 92, 255, .3);
    backdrop-filter: blur(18px);
    transform: translateY(20px) scale(.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    overflow: hidden;
}

.nova-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto
}

.nova-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1rem;
    background: linear-gradient(135deg, rgba(124, 92, 255, .08), rgba(0, 194, 255, .08));
    border-bottom: 1px solid var(--line);
}

.nova-id {
    display: flex;
    align-items: center;
    gap: .65rem
}

.nova-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #7c5cff, #00c2ff, #ff7ac6, #7c5cff);
    position: relative;
    box-shadow: 0 4px 12px -2px rgba(124, 92, 255, .5);
}

.nova-avatar::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #e9e9ff);
}

.nova-name {
    font-weight: 700;
    font-size: .95rem
}

.nova-by {
    font-weight: 500;
    color: var(--muted);
    font-size: .78rem;
    margin-left: .2rem
}

.nova-status {
    font-size: .74rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .3rem
}

.nova-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .2)
}

.nova-x {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    color: var(--ink-2);
    font-size: .95rem;
    line-height: 1;
    transition: background .2s var(--ease), border-color .2s var(--ease);
}

.nova-x:hover {
    background: rgba(11, 16, 32, .05);
    border-color: var(--line)
}

.nova-tabs {
    display: flex;
    padding: .5rem;
    gap: .3rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .5)
}

.nova-tab {
    flex: 1;
    padding: .55rem .6rem;
    border-radius: 10px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all .2s var(--ease);
}

.nova-tab:hover {
    color: var(--ink)
}

.nova-tab.is-on {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 6px 14px -6px rgba(124, 92, 255, .6)
}

.nova-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.nova-body[hidden] {
    display: none
}

.nova-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.msg {
    display: flex;
    gap: .5rem;
    max-width: 88%;
    align-self: flex-start;
    font-size: .9rem
}

.msg.me {
    align-self: flex-end;
    flex-direction: row-reverse
}

.msg-bubble {
    padding: .65rem .85rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    line-height: 1.45;
}

.msg.me .msg-bubble {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
}

.msg-bubble strong {
    color: var(--brand);
    font-weight: 700
}

.msg.me .msg-bubble strong {
    color: #fff
}

.msg-bubble.typing {
    display: inline-flex;
    gap: 3px;
    padding: .8rem 1rem
}

.msg-bubble.typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted-2);
    animation: dots 1.2s ease-in-out infinite
}

.msg-bubble.typing span:nth-child(2) {
    animation-delay: .15s
}

.msg-bubble.typing span:nth-child(3) {
    animation-delay: .3s
}

.nova-quick {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding: 0 1rem .5rem
}

.nova-quick button {
    font-size: .78rem;
    padding: .4rem .65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .7);
    color: var(--ink-2);
    cursor: pointer;
    transition: all .2s var(--ease);
}

.nova-quick button:hover {
    border-color: rgba(124, 92, 255, .4);
    color: var(--brand);
    background: #fff
}

.nova-input {
    display: flex;
    gap: .35rem;
    padding: .65rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .6);
}

.nova-input input {
    flex: 1;
    padding: .65rem .8rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    outline: none;
    font-size: .9rem;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.nova-input input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, .12)
}

.nova-mic,
.nova-send {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--ink-2);
    transition: all .2s var(--ease);
}

.nova-mic:hover {
    color: var(--brand);
    border-color: rgba(124, 92, 255, .4)
}

.nova-mic.is-rec {
    color: #ef4444;
    border-color: rgba(239, 68, 68, .4);
    background: rgba(239, 68, 68, .05);
    animation: pulse 1.2s infinite
}

.nova-send {
    background: var(--grad);
    color: #fff;
    border-color: transparent
}

.nova-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px -4px rgba(124, 92, 255, .5)
}

.nova-h {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 1rem 1rem .8rem
}

.nova-p {
    font-size: .86rem;
    color: var(--muted);
    margin: 0 1rem 1rem
}

.est-field {
    padding: 0 1rem .8rem
}

.est-field>label {
    display: block;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: .45rem
}

.est-opts {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem
}

.est-opts button {
    font-size: .8rem;
    padding: .42rem .65rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    color: var(--ink-2);
    cursor: pointer;
    transition: all .2s var(--ease);
}

.est-opts button:hover {
    border-color: rgba(124, 92, 255, .4);
    color: var(--brand)
}

.est-opts button.is-on {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 14px -6px rgba(124, 92, 255, .6);
}

.est-out {
    margin: .4rem 1rem 1rem;
    padding: .9rem 1rem;
    background: linear-gradient(135deg, rgba(124, 92, 255, .06), rgba(0, 194, 255, .06));
    border: 1px solid rgba(124, 92, 255, .15);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.est-range,
.est-time {
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: .2rem
}

.est-range strong,
.est-time strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.01em;
}

#estCta {
    margin: 0 1rem 1rem
}

.book-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .4rem;
    padding: 0 1rem 1rem;
}

.book-slot {
    padding: .6rem .7rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    font-size: .84rem;
    color: var(--ink-2);
    cursor: pointer;
    text-align: left;
    transition: all .2s var(--ease);
}

.book-slot:hover {
    border-color: rgba(124, 92, 255, .4);
    color: var(--brand)
}

.book-slot.is-on {
    background: var(--grad);
    color: #fff;
    border-color: transparent
}

.book-slot small {
    display: block;
    opacity: .75;
    font-size: .72rem;
    margin-top: .1rem
}

/* ---------- 13. Modal & toast ---------- */
.modal-root {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(11, 16, 32, .55);
    backdrop-filter: blur(6px);
    padding: 1rem;
}

.modal-root.is-open {
    display: flex;
    animation: fadeIn .2s var(--ease)
}

.modal {
    background: #fff;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 760px;
    max-height: 88vh;
    overflow: auto;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .4);
    border: 1px solid var(--line);
    animation: modalUp .35s var(--ease);
}

@keyframes modalUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-hero {
    aspect-ratio: 16/8;
    background: linear-gradient(135deg, #eef0fa, #fbfbff);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-hero svg {
    width: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    background: rgba(255, 255, 255, .92);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--ink);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-1);
    z-index: 2;
    transition: transform .2s var(--ease);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.6rem 1.8rem 2rem;
}

.modal-tag {
    display: inline-block;
    font-size: .7rem;
    padding: .3rem .55rem;
    border-radius: 8px;
    background: rgba(124, 92, 255, .08);
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .6rem;
}

.modal h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin: 0 0 .4rem;
    letter-spacing: -.02em;
}

.modal-meta {
    color: var(--muted);
    margin: 0 0 1.2rem;
}

.modal-stack {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: 1.2rem
}

.modal-stack span {
    font-family: var(--font-mono);
    font-size: .74rem;
    padding: .25rem .5rem;
    border-radius: 6px;
    background: rgba(11, 16, 32, .05);
    color: var(--muted);
}

.modal-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    margin: 1.2rem 0
}

.modal-cols h4 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin: 0 0 .4rem;
}

.modal-cols p {
    margin: 0;
    color: var(--ink-2);
    font-size: .95rem;
}

.modal-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    background: linear-gradient(135deg, rgba(124, 92, 255, .05), rgba(0, 194, 255, .05));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    margin-top: 1.2rem;
}

.mr-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.02em;
}

.mr-stat span {
    font-size: .78rem;
    color: var(--muted);
}

.modal-quote {
    margin-top: 1.4rem;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--brand);
    background: rgba(124, 92, 255, .04);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--ink-2);
}

.modal-quote cite {
    display: block;
    margin-top: .5rem;
    font-size: .85rem;
    color: var(--muted);
    font-style: normal;
}

.toast {
    position: fixed;
    top: 5.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--ink);
    color: #fff;
    padding: .7rem 1.1rem;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 500;
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    z-index: 200;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.toast.is-on {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto
}

.toast.success {
    background: linear-gradient(135deg, #059669, #10b981)
}

/* ---------- 14. Animations + reveal + responsive ---------- */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(124, 92, 255, .35);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(124, 92, 255, 0);
    }
}

@keyframes spinY {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-30px, 30px) scale(.95);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes dots {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: .4;
    }

    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-in {
    opacity: 1;
    transform: none
}

.reveal-delay-1 {
    transition-delay: .08s
}

.reveal-delay-2 {
    transition-delay: .16s
}

.reveal-delay-3 {
    transition-delay: .24s
}

/* tilt-ready cards listen to --tilt-x / --tilt-y vars set in JS */

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {

    .nav.is-mobile .nav-links {
        display: flex !important;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(300px, 80vw);
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 5rem 1.5rem 2rem;
        gap: .25rem;
        border-left: 1px solid var(--line);
        box-shadow: -8px 0 40px rgba(11, 16, 32, .12);
        z-index: 99;
        overflow-y: auto;
        transform: translateX(0);
        animation: slideInRight .3s var(--ease);
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(0);
        }
    }
    .nav.is-mobile .nav-links a {
        padding: .75rem 1rem;
        font-size: 1rem;
        border-radius: 12px;
        border-bottom: 1px solid var(--line-2);
        display: block;
    }

    .nav.is-mobile .nav-cta {
        display: inline-flex !important;
        margin: 1rem 0 0;
        width: 100%;
        justify-content: center;
    }


    .nav.is-mobile::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        z-index: 98;
        backdrop-filter: blur(2px);
    }

    .nav.is-mobile .nav-links a {
        padding: .45rem .65rem;
        font-size: .84rem;
        border-radius: 12px;
        border-bottom: 1px solid var(--line-2);
    }

    .nav.is-mobile .nav-cta {
        display: inline-flex;
        margin: 1rem 0 0;
        width: 100%;
        justify-content: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .hero-stage {
        height: 380px;
        order: -1
    }

    .globe {
        width: 340px;
        height: 340px
    }

    .float-1 {
        left: 0%
    }

    .float-3 {
        right: 0%
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .svc-grid,
    .work-grid,
    .proc-grid,
    .price-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        padding: 1.8rem
    }

    .acad-card {
        grid-template-columns: 1fr;
        padding: 2rem
    }

    .acad-stage {
        min-height: 280px
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr 1fr
    }


}

@media (max-width: 720px) {
    .h-display {
        font-size: clamp(2rem, 8vw, 2.8rem)
    }

    .h-section {
        font-size: clamp(1.5rem, 5vw, 2rem)
    }

    .hero {
        padding-top: calc(var(--header-h, 110px) + 1.4rem)
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 18px
    }

    .stat:nth-child(5) {
        grid-column: span 2
    }

    .svc-grid,
    .work-grid,
    .proc-grid,
    .price-grid {
        grid-template-columns: 1fr
    }

    .grid-2 {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .modal-cols {
        grid-template-columns: 1fr
    }

    .modal-results {
        grid-template-columns: 1fr 1fr
    }

    .nova-panel {
        right: .7rem;
        left: .7rem;
        width: auto;
        bottom: 4.6rem;
        height: 70vh
    }

    .nova-fab-label {
        display: none
    }

    .nova-fab {
        padding: .85rem;
        border-radius: 50%;
        width: 54px;
        height: 54px;
        justify-content: center
    }

    .ann-bar {
        font-size: .75rem;
        padding: .55rem .7rem
    }

    .ann-bar>span:nth-child(2) {
        display: none
    }

    .ann-bar>span:first-child+span {
        display: inline
    }

    .contact-wrap,
    .acad-card {
        padding: 1.4rem
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms;
        animation-iteration-count: 1;
        transition-duration: .001ms
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* MODERN ENHANCEMENTS - Visual Polish & Animations */

/* Gradient text - no animation needed, static gradient is fine */
.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Improved hover animations */
.svc-card,
.price-card,
.work-card,
.tmn-card,
.blog-card {
    position: relative;
}

.svc-card::after,
.price-card::after,
.work-card::after,
.tmn-card::after,
.blog-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--grad);
    opacity: 0;
    z-index: -1;
    transition: opacity .3s var(--ease);
    filter: blur(12px);
}

.svc-card:hover::after,
.price-card:hover::after,
.tmn-card:hover::after,
.blog-card:hover::after {
    opacity: .2;
}

/* Enhanced interactive elements */
.svc-card,
.price-card,
.proc-step,
.work-card,
.tmn-card {
    --mx: 50%;
    --my: 50%;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(248, 249, 252, .8));
    background-clip: padding-box;
}

.svc-card::before,
.price-card::before,
.proc-step::before,
.work-card::before,
.tmn-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(500px at var(--mx) var(--my), rgba(124, 92, 255, .1), transparent 80%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
    z-index: 0;
}

.svc-card:hover::before,
.price-card:hover::before,
.proc-step:hover::before,
.work-card:hover::before,
.tmn-card:hover::before {
    opacity: 1;
}

/* Floating cards enhancement */
.float-card {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .6);
    will-change: transform;
}

/* Service grid improvements */
.svc-grid,
.work-grid,
.price-grid,
.tmn-grid,
.blog-grid {
    position: relative;
}

/* Improved testimonials */
.tmn-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 8px;
    font-size: 4rem;
    color: var(--brand);
    opacity: .08;
}

/* Trust building animations */
.tbs-tick {
    animation: scaleIn .6s var(--ease);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Blog card image hover */
.blog-thumb {
    position: relative;
    overflow: hidden;
}

.blog-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(124, 92, 255, .2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.blog-card:hover .blog-thumb::after {
    opacity: 1;
}

/* Reach items glow */
.reach-item::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--grad);
    opacity: 0;
    z-index: -1;
    transition: opacity .3s var(--ease);
    filter: blur(8px);
}

.reach-item:hover::before {
    opacity: .15;
}

/* Enhanced form field focus */
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(124, 92, 255, .15), 0 8px 24px rgba(124, 92, 255, .12);
}

/* Sticky nav enhanced - see base nav styles above */

/* Hero section improvements */
.hero-copy {
    animation: revealUp .8s var(--ease) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-stage {
    animation: revealUp .8s var(--ease) .2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stat counters */
.stat:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(248, 249, 252, .95));
}

/* Improved badges */
.badge {
    transition: all .3s var(--ease);
    position: relative;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(124, 92, 255, .3);
}

/* Contact form enhancements */
.contact-left,
.contact-right {
    position: relative;
}

.contact-left:before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
    opacity: .08;
    border-radius: 50%;
    pointer-events: none;
}

/* =====================================================
   v5 — additions: dark mode, scroll progress, loader,
   WhatsApp, trust strip, testimonials, blog, map,
   booking, contact-direct, lead magnets, exit popup
   ===================================================== */

/* ---- Loader ---- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--bg);
    transition: opacity .55s var(--ease), visibility .55s var(--ease);
}

.page-loader.is-out {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--grad);
    position: relative;
    box-shadow: 0 18px 40px -10px rgba(124, 92, 255, .6);
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-mark::before {
    content: "A";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
}

.loader-mark span {
    position: absolute;
    inset: -10px;
    border-radius: 24px;
    border: 2px solid rgba(124, 92, 255, .35);
    animation: pulseRing 1.6s ease-out infinite;
}

.loader-name {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .06em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(.95);
    }
}

/* ---- Scroll progress ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 999;
    background: var(--grad);
    width: 0%;
    box-shadow: 0 0 12px rgba(124, 92, 255, .6);
    transition: width .08s linear;
}

/* ---- Custom cursor dot ---- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .25s var(--ease), width .15s var(--ease), height .15s var(--ease), background .2s var(--ease);
    mix-blend-mode: difference;
}

@media (hover:hover) and (pointer:fine) {
    .cursor-dot {
        opacity: 1
    }
}

.cursor-dot.is-hot {
    width: 32px;
    height: 32px;
    background: var(--brand-2);
    opacity: .85
}

/* ---- Icon button (dark toggle) ---- */
.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--line);
    color: var(--ink-2);
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(10px);
    transition: all .2s var(--ease);
}

.icon-btn:hover {
    color: var(--brand);
    border-color: rgba(124, 92, 255, .4)
}

.icon-btn .ic-moon {
    display: none
}

/* ---- WhatsApp brand button + FAB + popup ---- */
.btn-wa {
    color: #fff;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 10px 28px -10px rgba(37, 211, 102, .55), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -14px rgba(37, 211, 102, .7)
}

.wa-fab {
    position: fixed;
    right: 1.2rem;
    bottom: 5.4rem;
    z-index: 79;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 18px 40px -10px rgba(37, 211, 102, .6);
    transition: transform .25s var(--ease);
}

.wa-fab:hover {
    transform: translateY(-3px)
}

.wa-ping {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .4);
    animation: pulseRing 2.2s ease-out infinite;
}

.wa-pop {
    position: fixed;
    right: 1.2rem;
    bottom: 12.5rem;
    z-index: 90;
    width: 320px;
    max-width: calc(100vw - 2rem);
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 70px -15px rgba(11, 16, 32, .25);
    backdrop-filter: blur(16px);
    transform: translateY(20px) scale(.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.wa-pop.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto
}

.wa-head {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .85rem 1rem;
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: #fff;
}

.wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    position: relative;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, .2);
}

.wa-avatar::after {
    content: "AS";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
}

.wa-online {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #4ade80;
    border: 2px solid #128C7E;
}

.wa-name {
    font-weight: 700;
    font-size: .95rem
}

.wa-status {
    font-size: .74rem;
    opacity: .85;
    display: flex;
    align-items: center;
    gap: .3rem
}

.wa-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a7f3d0
}

.wa-x {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: .9rem;
}

.wa-x:hover {
    background: rgba(255, 255, 255, .25)
}

.wa-body {
    padding: 1rem;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 0h40v40H0z' fill='%23e7f0e8'/><circle cx='10' cy='10' r='1' fill='%23ccd9cd'/></svg>");
    background-color: #e7f0e8;
}

.wa-bubble {
    background: #fff;
    border-radius: 12px 12px 12px 4px;
    padding: .7rem .9rem;
    max-width: 90%;
    font-size: .9rem;
    color: #0b1020;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.wa-bubble small {
    display: block;
    margin-top: .35rem;
    color: #888;
    font-size: .72rem
}

.wa-form {
    display: grid;
    gap: .5rem;
    margin-top: .8rem
}

.wa-form input {
    padding: .65rem .8rem;
    border-radius: 10px;
    border: 1px solid rgba(11, 16, 32, .1);
    background: #fff;
    outline: none;
    font-size: .9rem;
    transition: border-color .2s var(--ease);
}

.wa-form input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, .18)
}

/* Mobile sticky */
.msticky {
    display: none;
    position: fixed;
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    z-index: 78;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: .85rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 14px 36px -10px rgba(37, 211, 102, .6);
}

/* ---- Trust building strip ---- */
.tbs {
    max-width: var(--maxw);
    margin: 2.4rem auto 0;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.tbs-list {
    list-style: none;
    padding: 1rem 1.4rem;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.6rem;
    justify-content: center;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-1);
}

.tbs-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .92rem;
    color: var(--ink-2);
    font-weight: 500;
}

.tbs-tick {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: .78rem;
}

/* ---- Testimonials ---- */
.tmn {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.tmn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
}

.tmn-card {
    position: relative;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem 1.4rem;
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    gap: .9rem;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.tmn-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2)
}

.tmn-stars {
    color: #fbbf24;
    letter-spacing: .06em
}

.tmn-quote {
    font-size: .98rem;
    color: var(--ink-2);
    margin: 0;
    line-height: 1.55
}

.tmn-foot {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: auto;
    padding-top: .8rem;
    border-top: 1px solid var(--line)
}

.tmn-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.tmn-name {
    font-weight: 700;
    font-size: .92rem
}

.tmn-role {
    font-size: .78rem;
    color: var(--muted)
}

.tmn-vidbadge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .7rem;
    padding: .25rem .5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.tmn-vidbadge::before {
    content: "▶";
    font-size: .6rem
}

/* ---- Global reach ---- */
.reach {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.reach-wrap {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1.4rem;
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-1);
}

.reach-map {
    position: relative;
    min-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f3fd, #fff);
    border: 1px solid var(--line);
}

.reach-map svg {
    width: 100%;
    height: 100%
}

.reach-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 6px rgba(124, 92, 255, .18), 0 4px 14px rgba(124, 92, 255, .4);
    cursor: pointer;
}

.reach-pin::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(124, 92, 255, .5);
    animation: pulseRing 2s ease-out infinite;
}

.reach-tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    padding: .35rem .55rem;
    border-radius: 8px;
    font-size: .74rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease);
}

.reach-pin:hover .reach-tip {
    opacity: 1
}

.reach-list {
    display: grid;
    gap: .7rem;
    align-content: start
}

.reach-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--line);
    transition: all .2s var(--ease);
}

.reach-item:hover {
    border-color: rgba(124, 92, 255, .3);
    transform: translateX(4px)
}

.reach-flag {
    font-size: 1.5rem;
    line-height: 1
}

.reach-meta {
    font-size: .78rem;
    color: var(--muted)
}

.reach-country {
    font-weight: 700;
    font-size: .95rem
}

/* ---- Blog ---- */
.blog {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: center;
    margin: 0 auto 1.6rem
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2)
}

.blog-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #eef0fa, #fbfbff);
    position: relative;
    overflow: hidden;
}

.blog-thumb svg {
    width: 100%;
    height: 100%
}

.blog-cat {
    position: absolute;
    top: .7rem;
    left: .7rem;
    font-size: .7rem;
    padding: .25rem .55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    backdrop-filter: blur(8px);
}

.blog-body {
    padding: 1rem 1.1rem 1.2rem
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 .35rem;
    line-height: 1.3
}

.blog-snip {
    font-size: .86rem;
    color: var(--muted);
    margin: 0 0 .7rem
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--muted-2)
}

.blog-meta::after {
    content: "·";
    opacity: .5
}

.blog-meta+span {
    font-size: .78rem;
    color: var(--muted-2)
}

.blog-card.hidden {
    display: none
}

/* ---- Booking section ---- */
.bookin {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem)
}

.book-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2.2rem;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-1);
    align-items: center;
}

.book-left .h-section {
    text-align: left
}

.book-resp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.2rem;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .25);
    color: #16a34a;
    font-size: .85rem;
    font-weight: 600;
}

.resp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .2);
    animation: pulse 1.6s infinite
}

.book-options {
    display: grid;
    gap: .7rem
}

.book-opt {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: all .25s var(--ease);
}

.book-opt:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-1);
    border-color: rgba(124, 92, 255, .3)
}

.bo-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px -8px rgba(124, 92, 255, .5);
}

.bo-t {
    font-weight: 700;
    font-size: .98rem;
    color: var(--ink)
}

.bo-d {
    font-size: .84rem;
    color: var(--muted);
    margin-top: .1rem
}

/* ---- Contact direct list + magnets ---- */
.contact-direct {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
    display: grid;
    gap: .45rem
}

.contact-direct a {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .92rem;
    color: var(--ink-2);
    font-weight: 500;
    padding: .4rem .7rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--line);
    transition: all .2s var(--ease);
}

.contact-direct a:hover {
    border-color: rgba(124, 92, 255, .4);
    color: var(--brand);
    transform: translateX(2px)
}

.cd-i {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: var(--grad);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.magnets {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5rem;
    margin-bottom: .4rem;
}

.magnet {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    padding: .7rem .8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--line);
    cursor: pointer;
    transition: all .2s var(--ease);
}

.magnet:hover {
    border-color: rgba(124, 92, 255, .35)
}

.magnet input {
    margin-top: .15rem;
    accent-color: var(--brand)
}

.magnet span {
    display: block;
    font-size: .84rem;
    line-height: 1.35
}

.magnet strong {
    display: block;
    font-weight: 700;
    color: var(--ink)
}

.magnet em {
    font-style: normal;
    font-size: .76rem;
    color: var(--muted)
}

.magnet input:checked+span strong {
    color: var(--brand)
}

.magnet:has(input:checked) {
    background: rgba(124, 92, 255, .06);
    border-color: rgba(124, 92, 255, .4)
}

/* ---- Footer social ---- */
.foot-social {
    display: flex;
    gap: .4rem;
    margin-top: 1rem
}

.foot-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    color: var(--ink-2);
    transition: all .2s var(--ease);
}

.foot-social a:hover {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px)
}

/* ---- Exit-intent popup ---- */
.exit-root {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(11, 16, 32, .55);
    backdrop-filter: blur(8px);
    padding: 1rem;
}

.exit-root.is-open {
    display: flex;
    animation: fadeIn .25s var(--ease)
}

.exit-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 2rem 1.8rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .4);
    animation: modalUp .35s var(--ease);
    text-align: center;
}

.exit-tag {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
    padding: .3rem .6rem;
    border-radius: 8px;
    background: rgba(124, 92, 255, .08);
    border: 1px solid rgba(124, 92, 255, .15);
    margin-bottom: .8rem;
}

.exit-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1.15;
    margin: 0 0 .6rem;
    letter-spacing: -.02em;
}

.exit-card p {
    color: var(--muted);
    margin: 0 0 1.2rem
}

.exit-form {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.exit-form input {
    flex: 1;
    min-width: 200px;
    padding: .85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .7);
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.exit-form input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(124, 92, 255, .12)
}

.exit-x {
    position: absolute;
    top: .6rem;
    right: .6rem;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--ink-2);
}

.exit-x:hover {
    background: rgba(11, 16, 32, .05)
}

.exit-meta {
    display: block;
    margin-top: .7rem;
    font-size: .74rem;
    color: var(--muted-2)
}

/* ---- Mobile additions ---- */
@media (max-width: 1100px) {

    .tmn-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .reach-wrap,
    .book-wrap {
        grid-template-columns: 1fr
    }

    .magnets {
        grid-template-columns: 1fr
    }

    .wa-pop {
        bottom: 5rem
    }

    .wa-fab {
        bottom: .9rem;
        right: .9rem
    }

    .nova-fab {
        bottom: 4.5rem
    }

    .msticky {
        display: flex
    }

    body {
        padding-bottom: 4.5rem
    }
}

@media (max-width: 720px) {

    .tmn-grid,
    .blog-grid {
        grid-template-columns: 1fr
    }

    .tbs-list {
        gap: .55rem .9rem;
        padding: .85rem 1rem
    }

    .tbs-list li {
        font-size: .85rem
    }
}


/* =====================================================
   v6 — Why Choose + Founder Spotlight + Team + Visibility
   ===================================================== */

/* ---- Text visibility fixes ---- */
.sec-sub {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.65;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--muted);
}

.rating-text {
    font-size: .92rem;
    color: var(--muted);
}

.lbl {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .08em;
}

.svc-desc {
    font-size: .98rem;
    color: var(--muted);
    line-height: 1.6;
}

.proc-step p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.6;
}

.proc-step h3 {
    font-size: 1.2rem;
}

.tier-desc {
    font-size: .96rem;
    color: var(--muted);
}

.tier-feats li {
    font-size: .96rem;
}

.tp-per {
    font-size: .9rem;
    color: var(--muted);
}

.tmn-quote {
    font-size: 1rem;
    color: var(--ink-2);
    line-height: 1.65;
}

.tmn-name {
    font-size: .95rem;
}

.tmn-role {
    font-size: .82rem;
    color: var(--muted);
}

.blog-snip {
    font-size: .92rem;
    color: var(--muted);
}

.blog-title {
    font-size: 1.08rem;
}

.work-meta {
    font-size: .9rem;
    color: var(--muted);
}

.foot-tag {
    font-size: .96rem;
    color: var(--muted);
}

.foot-col a {
    font-size: .96rem;
    color: var(--muted);
}

.foot-col h4 {
    font-size: .8rem;
    color: var(--ink-2);
}

.foot-base {
    font-size: .88rem;
    color: var(--muted);
}

.bo-d {
    font-size: .88rem;
    color: var(--muted);
}

.nova-p {
    font-size: .9rem;
    color: var(--muted);
}

.msg-bubble {
    font-size: .93rem;
    line-height: 1.55;
}

.badge {
    font-size: .84rem;
    color: var(--muted);
}

.marquee-track span {
    color: rgba(11, 16, 32, .45);
}

.tbs-list li {
    font-size: .96rem;
}

.ann-bar {
    font-size: .86rem;
}

.reach-meta {
    font-size: .82rem;
    color: var(--muted);
}

.contact-bullets li {
    font-size: 1rem;
}

/* ---- Why Choose ---- */
.why {
    max-width: var(--maxw);
    margin: 5rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

.why-card {
    position: relative;
    padding: 1.6rem 1.3rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .65));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    text-align: center;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    isolation: isolate;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(124, 92, 255, .14), transparent 60%);
    opacity: 0;
    transition: opacity .3s var(--ease);
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2);
    border-color: rgba(124, 92, 255, .3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-ico {
    font-size: 2rem;
    margin-bottom: .9rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(124, 92, 255, .3));
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 .35rem;
    color: var(--ink);
}

.why-desc {
    font-size: .93rem;
    color: var(--muted);
    margin: 0;
}

/* ---- Founder Spotlight ---- */
.founder-sec {
    max-width: var(--maxw);
    margin: 6rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.founder-card {
    display: grid;
    grid-template-columns: .45fr 1fr;
    gap: 2.5rem;
    align-items: start;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2.4rem;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-2);
}

.founder-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.founder-avatar-lg {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    box-shadow: 0 24px 60px -18px rgba(124, 92, 255, .7), 0 0 0 6px #fff, 0 0 0 10px rgba(124, 92, 255, .25);
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex-shrink: 0;
}

.founder-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.founder-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 255, .25), rgba(0, 194, 255, .15) 50%, transparent 70%);
    filter: blur(30px);
    animation: drift 14s ease-in-out infinite;
}

.founder-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 .25rem;
    letter-spacing: -.02em;
}

.founder-role-tag {
    font-size: .88rem;
    color: var(--brand);
    font-weight: 600;
    margin: 0 0 1rem;
}

.founder-story {
    font-size: 1rem;
    color: var(--muted);
    margin: 0 0 .75rem;
    line-height: 1.65;
}

.founder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 1rem 0;
}

.founder-skills span {
    font-size: .78rem;
    padding: .28rem .6rem;
    border-radius: 8px;
    background: rgba(124, 92, 255, .08);
    color: var(--brand);
    font-weight: 600;
    border: 1px solid rgba(124, 92, 255, .15);
}

.founder-timeline {
    display: grid;
    gap: .55rem;
    margin: 1.2rem 0;
    border-left: 2px solid var(--line);
    padding-left: 1.2rem;
}

.ftl-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .95rem;
    color: var(--ink-2);
    position: relative;
}

.ftl-item::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    border: 2px solid rgba(124, 92, 255, .3);
}

.ftl-item.active::before {
    background: var(--grad);
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(124, 92, 255, .18);
}

.ftl-year {
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 600;
    color: var(--brand);
    background: rgba(124, 92, 255, .08);
    padding: .2rem .5rem;
    border-radius: 7px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ftl-item.active .ftl-year {
    background: var(--grad);
    color: #fff;
}

.founder-links {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

/* ---- Co-Founder Section ---- */
.cofounder-sec {
    max-width: var(--maxw);
    margin: 0 auto 6rem;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.cofounder-card {
    display: grid;
    grid-template-columns: 1fr .45fr;
    gap: 2.5rem;
    align-items: start;
    background: linear-gradient(135deg, rgba(0, 194, 255, .04), rgba(124, 92, 255, .04));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2.4rem;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-2);
    position: relative;
    overflow: hidden;
}

.cofounder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00c2ff, #7c5cff, #ff7ac6);
}

.cofounder-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    order: 2;
}

.cofounder-avatar-lg {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #00c2ff, #7c5cff);
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    box-shadow: 0 24px 60px -18px rgba(0, 194, 255, .6), 0 0 0 6px #fff, 0 0 0 10px rgba(0, 194, 255, .2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cofounder-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.cofounder-badge {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .35rem .8rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--brand-2);
    box-shadow: var(--shadow-1);
}

.cofounder-content {
    order: 1;
}

.cofounder-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 .25rem;
    letter-spacing: -.02em;
    color: var(--ink);
}

.cofounder-role-tag {
    font-size: .88rem;
    color: var(--brand-2);
    font-weight: 600;
    margin: 0 0 1rem;
}

.cofounder-story {
    font-size: 1rem;
    color: var(--muted);
    margin: 0 0 .75rem;
    line-height: 1.65;
}

.cofounder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 1rem 0;
}

.cofounder-skills span {
    font-size: .78rem;
    padding: .28rem .6rem;
    border-radius: 8px;
    background: rgba(0, 194, 255, .08);
    color: var(--brand-2);
    font-weight: 600;
    border: 1px solid rgba(0, 194, 255, .2);
}

.cofounder-links {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

@media (max-width: 900px) {
    .cofounder-card {
        grid-template-columns: 1fr;
    }

    .cofounder-visual {
        order: 0;
        min-height: unset;
    }

    .cofounder-content {
        order: 1;
    }
}

.team {
    max-width: var(--maxw);
    margin: 6rem auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}

.team-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .7));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.4rem 1.6rem;
    text-align: center;
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    isolation: isolate;
}

.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -10%, rgba(124, 92, 255, .18), transparent 55%);
    opacity: 0;
    transition: opacity .35s var(--ease);
    z-index: -1;
}

.team-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2);
    border-color: rgba(124, 92, 255, .35);
}

.team-card:hover::before,
.team-card:hover::after {
    opacity: 1;
}

.team-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.1rem;
}

.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 14px 32px -10px rgba(124, 92, 255, .5);
    transition: transform .35s var(--ease);
    overflow: hidden;
}

.team-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.team-card:hover .team-avatar {
    transform: scale(1.06);
}

.team-online {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22c55e;
    border: 2.5px solid #fff;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 .25rem;
}

.team-role {
    font-size: .84rem;
    font-weight: 600;
    color: var(--brand);
    background: rgba(124, 92, 255, .08);
    border: 1px solid rgba(124, 92, 255, .15);
    border-radius: 999px;
    display: inline-block;
    padding: .22rem .65rem;
    margin-bottom: .75rem;
}

.team-bio {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .3rem;
    margin-bottom: 1.1rem;
}

.team-skills span {
    font-size: .72rem;
    padding: .2rem .5rem;
    border-radius: 7px;
    background: rgba(11, 16, 32, .05);
    color: var(--muted-2);
    font-weight: 600;
    border: 1px solid var(--line);
}

.team-links {
    display: flex;
    justify-content: center;
    gap: .4rem;
}

.team-link {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    color: var(--ink-2);
    transition: all .2s var(--ease);
}

.team-link:hover {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.team-card.is-hiring {
    background: linear-gradient(135deg, rgba(124, 92, 255, .06), rgba(0, 194, 255, .06));
    border-style: dashed;
    border-color: rgba(124, 92, 255, .3);
}

.team-card.is-hiring:hover {
    background: linear-gradient(135deg, rgba(124, 92, 255, .12), rgba(0, 194, 255, .10));
}

.hiring-ico {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 92, 255, .12), rgba(0, 194, 255, .12));
    border: 2px dashed rgba(124, 92, 255, .4);
    display: grid;
    place-items: center;
    margin: 0 auto 1.1rem;
    font-size: 2rem;
}

.team-card.is-hiring .team-name {
    color: var(--brand);
}

.team-card.is-hiring .team-bio {
    color: var(--muted);
}

/* ---- Responsive ---- */
@media (max-width:1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-card {
        grid-template-columns: 1fr;
        padding: 1.8rem;
    }

    .founder-visual {
        min-height: 200px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:720px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .founder-avatar-lg {
        width: 120px;
        height: 120px;
        font-size: 2.4rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .8rem;
    }

    .team-card {
        padding: 1.5rem 1rem 1.2rem;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }

    .hiring-ico {
        width: 70px;
        height: 70px;
    }

    .sec-sub {
        font-size: 1rem;
    }

    .hero-lead {
        font-size: 1.05rem;
    }
}

/* ==========================================================
   VISIBILITY FIX + LOGO BACKGROUND — Final overrides
   ========================================================== */



/* --- All headings --- */
h1,
h2,
h3,
h4,
h5,
h6,
.h-display,
.h-section,
.tier-name,
.svc-title,
.work-name,
.blog-title,
.tmn-name,
.proc-step h3,
.founder-title,
.team-name,
.why-title,
.culture-card h3,
.ptl-step h3,
.sdc-title,
.bo-t,
.nova-name,
.nova-h {
    color: var(--ink);
}



/* ===== ALWAYS LIGHT — never dark ===== */
:root { color-scheme: light !important; }
html  { color-scheme: light !important; }
body  { background: var(--bg) !important; color: var(--ink) !important; }


/* founder / co-founder avatar images */
.founder-avatar-lg,
.cofounder-avatar-lg {
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,.85);
}
.founder-avatar-lg img,
.cofounder-avatar-lg img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

/* navlogo: always light, no dark bg bleed */

/* ============================================
   RESPONSIVE REFACTOR — v12
   ============================================ */

/* --- Base: prevent ALL horizontal scroll --- */
html, body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; }
img, svg, video, canvas { max-width: 100%; display: block; }

/* --- Navbar: always correct --- */
.nav { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; }
.brand { flex-shrink: 0; }
.nav-links { flex: 0 1 auto; overflow: visible; }
.nav-tools { flex-shrink: 0; }

/* --- Hero CTA stack on small screens --- */
@media (max-width: 576px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stat:last-child { grid-column: span 2; }
    .h-display { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .hero { padding-left: 1rem; padding-right: 1rem; }
    .float-card { display: none; }
    .hero-stage { height: 260px; }
    .globe { width: 240px; height: 240px; }
}

@media (max-width: 400px) {
    .h-display { font-size: 1.7rem; }
    .btn-lg { padding: .75rem 1rem; font-size: .9rem; }
    .ann-bar { font-size: .72rem; padding: .4rem .6rem; }
    .sec-head { padding: 0 .5rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; font-size: .75rem; }
}

/* --- Tablet --- */
@media (max-width: 768px) {
    .svc-grid, .work-grid, .proc-grid, .price-grid,
    .tmn-grid, .blog-grid, .why-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrap { grid-template-columns: 1fr; padding: 1.4rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .magnets { grid-template-columns: 1fr; }
    .founder-card, .cofounder-card { grid-template-columns: 1fr; padding: 1.4rem; }
    .cofounder-visual { order: 0 !important; }
    .cofounder-content { order: 1 !important; }
    .book-wrap { grid-template-columns: 1fr; }
    .reach-wrap { grid-template-columns: 1fr; }
    .modal-cols { grid-template-columns: 1fr; }
    .modal-results { grid-template-columns: 1fr 1fr; }
    .showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .sc-item.sc-big { grid-row: span 1; }
    .sc-item { height: 200px; }
}

/* --- Laptop --- */
@media (max-width: 992px) {
    .svc-grid, .work-grid, .price-grid, .tmn-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proc-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
    .founder-card { grid-template-columns: 1fr; }
    .acad-card { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
}

/* --- Wide desktop: cap widths --- */
@media (min-width: 1441px) {
    .hero, .services, .work, .process, .pricing,
    .tmn, .reach, .blog, .bookin, .contact,
    .trust, .tbs, .why, .team, .founder-sec, .cofounder-sec {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Switches: hide on medium screens --- */
@media (max-width: 1200px) {
    .switch { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links { display: none; }
}

/* --- Show full nav on large screens --- */
@media (min-width: 1201px) {
    .hamburger { display: none; }
    .nav-links { display: flex; }
    .nav-cta { display: inline-flex; }
    .switch { display: block; }
}

/* =============================================================
   ABHINOVA V12 — COMPLETE RESPONSIVE + NAVBAR MASTER FIX
   ============================================================= */

/* --- Global safety --- */
html, body { overflow-x: hidden; }
* { box-sizing: border-box; }
img, svg, video { max-width: 100%; }

/* --- Navbar master --- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; flex-direction: column; }
.nav {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem clamp(1rem, 3vw, 2rem);
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  gap: .5rem;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.is-scrolled { background: #fff; box-shadow: 0 2px 20px rgba(11,16,32,.08); }
.brand { flex-shrink: 0; display: inline-flex; align-items: center; gap: .5rem; }
.brand-logo { height: 28px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: .05rem; flex: 0 1 auto;
}
.nav-links a {
  padding: .45rem .65rem; border-radius: 10px;
  font-size: .84rem; color: var(--ink-2); font-weight: 500;
  white-space: nowrap; transition: all .2s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--brand); background: rgba(124,92,255,.07);
}
.nav-tools { display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.nav-cta { padding: .5rem .9rem; font-size: .84rem; border-radius: 12px; white-space: nowrap; }
.hamburger {
  display: none; background: transparent; border: 1px solid var(--line);
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.hamburger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; display: block; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav.is-mobile .nav-links {
  display: flex !important; flex-direction: column;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 80vw);
  background: rgba(255,255,255,.99);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 5rem 1.5rem 2rem; gap: .2rem;
  border-left: 1px solid var(--line);
  box-shadow: -8px 0 40px rgba(11,16,32,.14);
  z-index: 200; overflow-y: auto;
  animation: slideInRight .28s var(--ease);
}
.nav.is-mobile .nav-links a {
  padding: .75rem 1rem; font-size: 1rem;
  border-radius: 12px; border-bottom: 1px solid var(--line-2);
  display: block; white-space: normal;
}
.nav.is-mobile .nav-cta {
  display: flex !important; margin-top: 1rem;
  width: 100%; justify-content: center;
}
.nav.is-mobile::after {
  content: ''; position: fixed; inset: 0;
  background: rgba(0,0,0,.35); z-index: 199;
  backdrop-filter: blur(2px);
}
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* Breakpoint: ≤1200px — show hamburger, hide desktop nav */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .switch { display: none; }
}
/* Breakpoint: ≥1201px — show desktop nav, hide hamburger */
@media (min-width: 1201px) {
  .nav-links { display: flex !important; }
  .hamburger { display: none !important; }
  .nav-cta { display: inline-flex !important; }
  .switch { display: block !important; }
}

/* Hero offset from fixed header */
.hero { padding-top: calc(var(--header-h, 110px) + 3rem); }
main { padding-top: 0; }

/* =============================================================
   BREAKPOINTS
   ============================================================= */

/* --- 1200px: grid adjustments --- */
@media (max-width: 1200px) {
  .svc-grid, .work-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .tmn-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .founder-card { grid-template-columns: 1fr; padding: 1.8rem; }
  .cofounder-card { grid-template-columns: 1fr; padding: 1.8rem; }
  .cofounder-visual { order: 0 !important; min-height: unset; }
  .cofounder-content { order: 1 !important; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-stage { height: 340px; order: -1; }
  .globe { width: 300px; height: 300px; }
  .float-1 { left: 2%; }
  .float-3 { right: 2%; }
}

/* --- 992px --- */
@media (max-width: 992px) {
  .contact-wrap { grid-template-columns: 1fr; padding: 1.6rem; }
  .book-wrap { grid-template-columns: 1fr; }
  .reach-wrap { grid-template-columns: 1fr; }
  .acad-card { grid-template-columns: 1fr; padding: 1.8rem; }
  .magnets { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .sc-item.sc-big { grid-row: span 1; }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .h-display { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .h-section { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .svc-grid, .work-grid, .price-grid, .proc-grid,
  .tmn-grid, .blog-grid, .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .magnets { grid-template-columns: 1fr; }
  .modal-cols { grid-template-columns: 1fr; }
  .modal-results { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .stat:nth-child(5) { grid-column: span 2; }
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .sc-item { height: 200px; }
  .sc-item.sc-big { grid-row: span 1; }
  .float-card { display: none; }
  .hero-stage { height: 260px; }
  .globe { width: 240px; height: 240px; }
  .contact-wrap { padding: 1.2rem; }
  .acad-card { padding: 1.4rem; }
  .nova-panel { right: .5rem; left: .5rem; width: auto; }
  .ann-bar { font-size: .75rem; padding: .45rem .7rem; }
  .ann-bar > span:nth-child(2) { display: none; }
  .msticky { display: flex; }
  body { padding-bottom: 4.5rem; }
}

/* --- 576px --- */
@media (max-width: 576px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero { padding-left: 1rem; padding-right: 1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .team-card { padding: 1.2rem .9rem; }
  .team-avatar { width: 64px; height: 64px; font-size: 1.2rem; }
  .hiring-ico { width: 64px; height: 64px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .nova-fab { width: 50px; height: 50px; padding: .8rem; border-radius: 50%; justify-content: center; }
  .nova-fab-label { display: none; }
  .wa-fab { bottom: .8rem; right: .8rem; }
  .nova-fab { bottom: 4rem; }
  .tbs-list { gap: .5rem .8rem; padding: .75rem 1rem; }
  .btn-lg { padding: .78rem 1.1rem; font-size: .9rem; }
}

/* --- 400px --- */
@media (max-width: 400px) {
  .h-display { font-size: 1.65rem; }
  .h-section { font-size: 1.3rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1rem .6rem; }
  .num { font-size: 1.4rem; }
  .lbl { font-size: .68rem; }
  .ann-bar { font-size: .7rem; padding: .35rem .5rem; }
  .btn { font-size: .88rem; padding: .65rem .9rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .price-card { padding: 1.4rem 1.2rem; }
  .contact-wrap { padding: 1rem; }
}

/* --- Ultra-wide: cap max content width --- */
@media (min-width: 1441px) {
  .hero, .services, .work, .process, .pricing,
  .tmn, .reach, .blog, .bookin, .contact,
  .trust, .tbs, .why, .team,
  .founder-sec, .cofounder-sec, .showcase {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================================
   DARK THEME — ALWAYS LIGHT
   ============================================================= */
:root { color-scheme: light !important; }
html { color-scheme: light !important; }
body { background: var(--bg) !important; color: var(--ink) !important; }


/* =============================================================
   ABHINOVA — MASTER FIX BLOCK (appended, overrides all above)
   Covers: navbar, responsive grids, mobile drawer, all sections
   ============================================================= */

/* 1. Safety base */
html, body { overflow-x: hidden !important; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; }
img, svg, video, canvas { max-width: 100%; display: block; }

/* 2. Navbar — desktop */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.site-header.is-hidden { transform: translateY(-110%); }
.nav {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem clamp(1rem, 3vw, 2rem);
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  gap: .5rem; flex-wrap: nowrap;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.is-scrolled {
  background: #fff !important;
  box-shadow: 0 2px 20px rgba(11,16,32,.1);
  padding: .4rem clamp(1rem, 3vw, 2rem);
}
.brand { flex-shrink: 0; display: inline-flex; align-items: center; gap: .5rem; }
.brand-logo { height: 28px; width: auto; display: block; mix-blend-mode: multiply; }
.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: .05rem; flex: 0 1 auto;
}
.nav-links a {
  padding: .45rem .65rem; border-radius: 10px;
  font-size: .84rem; color: var(--ink-2); font-weight: 500;
  white-space: nowrap; transition: all .2s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--brand); background: rgba(124,92,255,.07);
}
.nav-tools { display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.nav-cta { padding: .5rem .9rem; font-size: .84rem; border-radius: 12px; white-space: nowrap; }
.hamburger {
  display: none; background: transparent; border: 1px solid var(--line);
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.hamburger span {
  width: 18px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .2s, opacity .2s; display: block;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* 3. Mobile drawer */
.nav.is-mobile .nav-links {
  display: flex !important; flex-direction: column;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 80vw);
  background: rgba(255,255,255,.99);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 5rem 1.5rem 2rem; gap: .2rem;
  border-left: 1px solid var(--line);
  box-shadow: -8px 0 40px rgba(11,16,32,.14);
  z-index: 200; overflow-y: auto;
  animation: slideInRight .28s var(--ease);
}
.nav.is-mobile .nav-links a {
  padding: .75rem 1rem; font-size: 1rem;
  border-radius: 12px; border-bottom: 1px solid var(--line-2);
  display: block; white-space: normal;
}
.nav.is-mobile .nav-cta {
  display: flex !important; margin-top: 1rem;
  width: 100%; justify-content: center;
}
.nav.is-mobile::after {
  content: ''; position: fixed; inset: 0;
  background: rgba(0,0,0,.35); z-index: 199;
  backdrop-filter: blur(2px);
}
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* 4. Show/hide breakpoints */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .switch { display: none; }
}
@media (min-width: 1201px) {
  .nav-links { display: flex !important; }
  .hamburger { display: none !important; }
  .nav-cta { display: inline-flex !important; }
  .switch { display: block !important; }
}

/* 5. Hero offset */
.hero { padding-top: calc(var(--header-h, 110px) + 3rem); }

/* 6. ≤1200px */
@media (max-width: 1200px) {
  .svc-grid, .work-grid, .price-grid,
  .tmn-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid, .why-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .founder-card, .cofounder-card { grid-template-columns: 1fr; padding: 1.8rem; }
  .cofounder-visual { order: 0 !important; min-height: unset; }
  .cofounder-content { order: 1 !important; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-stage { height: 340px; order: -1; }
  .globe { width: 300px; height: 300px; }
  .float-1 { left: 2%; }
  .float-3 { right: 2%; }
}

/* 7. ≤992px */
@media (max-width: 992px) {
  .contact-wrap, .book-wrap, .reach-wrap { grid-template-columns: 1fr; padding: 1.6rem; }
  .acad-card { grid-template-columns: 1fr; padding: 1.8rem; }
  .magnets { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

/* 8. ≤768px */
@media (max-width: 768px) {
  .h-display { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .h-section { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .svc-grid, .work-grid, .price-grid, .proc-grid,
  .tmn-grid, .blog-grid, .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .grid-2, .magnets, .modal-cols { grid-template-columns: 1fr; }
  .modal-results { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .stat:nth-child(5) { grid-column: span 2; }
  .float-card { display: none; }
  .hero-stage { height: 260px; }
  .globe { width: 240px; height: 240px; }
  .contact-wrap { padding: 1.2rem; }
  .acad-card { padding: 1.4rem; }
  .nova-panel { right: .5rem; left: .5rem; width: auto; }
  .ann-bar { font-size: .75rem; padding: .45rem .7rem; }
  .ann-bar > span:nth-child(2) { display: none; }
  body { padding-bottom: 4.5rem; }
  .msticky { display: flex; }
}

/* 9. ≤576px */
@media (max-width: 576px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero { padding-left: 1rem; padding-right: 1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .team-card { padding: 1.2rem .9rem; }
  .team-avatar { width: 64px; height: 64px; font-size: 1.2rem; }
  .hiring-ico { width: 64px; height: 64px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .nova-fab { width: 50px; height: 50px; padding: .8rem; border-radius: 50%; justify-content: center; }
  .nova-fab-label { display: none; }
  .wa-fab { bottom: .8rem; right: .8rem; }
  .nova-fab { bottom: 4rem; }
  .btn-lg { padding: .78rem 1.1rem; font-size: .9rem; }
  .tbs-list { gap: .5rem .8rem; padding: .75rem 1rem; }
}

/* 10. ≤400px */
@media (max-width: 400px) {
  .h-display { font-size: 1.65rem; }
  .h-section { font-size: 1.3rem; }
  .stat { padding: 1rem .6rem; }
  .num { font-size: 1.4rem; }
  .lbl { font-size: .68rem; }
  .ann-bar { font-size: .7rem; padding: .35rem .5rem; }
  .btn { font-size: .88rem; padding: .65rem .9rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .price-card { padding: 1.4rem 1.2rem; }
  .contact-wrap { padding: 1rem; }
}

/* 11. Ultra-wide cap */
@media (min-width: 1441px) {
  .hero, .services, .work, .process, .pricing,
  .tmn, .reach, .blog, .bookin, .contact,
  .trust, .tbs, .why, .team, .founder-sec, .cofounder-sec, .showcase {
    max-width: 1400px; margin-left: auto; margin-right: auto;
  }
}

/* 12. Always light */
:root { color-scheme: light !important; }
html  { color-scheme: light !important; }
body  { background: var(--bg) !important; color: var(--ink) !important; }

/* ---- Work section count pill ---- */
.work-count {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  margin: -.8rem 0 1.2rem;
  letter-spacing: .04em;
}

/* =============================================================
   ABHINOVA — PREMIUM SECTION UPGRADES
   Services · Work Cards · Team · Visual Hierarchy
   ============================================================= */

/* ---- Work card: premium upgrade ---- */
.work-card {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.85));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s var(--ease);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px -16px rgba(124,92,255,.3), 0 8px 24px rgba(11,16,32,.08);
  border-color: rgba(124,92,255,.3);
}
.work-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #eef0fa, #fbfbff);
}
.work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.work-card:hover .work-thumb img { transform: scale(1.06); }

/* gradient overlay on thumb */
.work-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,16,32,.55) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.work-card:hover .work-thumb::after { opacity: 1; }

.work-tag {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(255,255,255,.92);
  color: var(--brand); padding: .28rem .62rem;
  border-radius: 8px; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(124,92,255,.15);
  z-index: 1;
}
.work-result {
  position: absolute; bottom: .75rem; right: .75rem;
  background: var(--grad); color: #fff;
  padding: .3rem .65rem; border-radius: 8px;
  font-size: .72rem; font-weight: 700;
  box-shadow: 0 6px 14px -4px rgba(124,92,255,.5);
  z-index: 1;
}
.work-body {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex; flex-direction: column; flex: 1;
}
.work-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  margin: 0 0 .2rem; color: var(--ink);
}
.work-meta { font-size: .84rem; color: var(--muted); margin-bottom: .6rem; }
.work-stack {
  display: flex; flex-wrap: wrap; gap: .28rem; margin-bottom: .7rem;
}
.work-stack span {
  font-family: var(--font-mono); font-size: .68rem;
  padding: .18rem .42rem; border-radius: 6px;
  background: rgba(11,16,32,.05); color: var(--muted);
}
.work-desc {
  font-size: .88rem; color: var(--muted);
  line-height: 1.55; margin: 0 0 .8rem; flex: 1;
}
.work-card-footer {
  display: flex; align-items: center;
  padding-top: .7rem;
  border-top: 1px solid var(--line-2);
}
.work-view-case {
  font-size: .82rem; font-weight: 700;
  color: var(--brand);
  transition: gap .2s var(--ease), letter-spacing .2s;
}
.work-card:hover .work-view-case { letter-spacing: .02em; }

/* ---- Service cards: premium upgrade ---- */
.svc-card {
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,249,252,.8)) !important;
}
.svc-card::before {
  background: radial-gradient(500px at var(--mx,50%) var(--my,50%), rgba(124,92,255,.12), transparent 70%) !important;
}
.svc-title { font-size: 1.15rem; font-weight: 700; }
.svc-desc  { font-size: .95rem; line-height: 1.6; color: var(--muted); }
.svc-ico   {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad);
  box-shadow: 0 10px 24px -8px rgba(124,92,255,.55);
}

/* ---- Work grid: 3 cols → responsive ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1100px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ---- Work count pill ---- */
.work-count {
  text-align: center;
  font-size: .82rem; font-weight: 600;
  color: var(--muted); margin: -.6rem 0 1.4rem;
  letter-spacing: .04em;
}

/* ---- Filter chips wrap ---- */
.work-filters {
  display: flex; flex-wrap: wrap;
  gap: .45rem; justify-content: center;
  margin: 0 auto 1rem;
}

/* ---- Team card: premium upgrade ---- */
.team-card {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,249,252,.85)) !important;
  border: 1px solid var(--line) !important;
}
.team-name { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.team-role {
  font-size: .82rem; font-weight: 600; color: var(--brand);
  background: rgba(124,92,255,.07);
  border: 1px solid rgba(124,92,255,.14);
  border-radius: 999px;
  display: inline-block; padding: .2rem .65rem;
  margin-bottom: .7rem;
}
.team-bio {
  font-size: .91rem; color: var(--muted);
  line-height: 1.62; margin: 0 0 .9rem;
}
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  box-shadow: 0 14px 32px -10px rgba(124,92,255,.4);
}
.team-online {
  width: 14px; height: 14px; border-radius: 50%;
  background: #22c55e;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}

/* ---- Section heading upgrades ---- */
.services .h-section,
.work .h-section,
.team .h-section {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}
.services .sec-sub,
.work .sec-sub,
.team .sec-sub {
  font-size: 1.08rem;
  max-width: 68ch;
}

/* ---- Modal: case study upgrade ---- */
.modal-hero img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.modal-hero:hover img { transform: scale(1.04); }
.modal h3 { font-size: 1.7rem; }
.modal-cols h4 {
  font-size: .78rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted);
  margin: 0 0 .4rem;
}
.modal-cols p { font-size: .96rem; color: var(--ink-2); }
.modal-results { grid-template-columns: repeat(3,1fr); gap: .7rem; }
.mr-stat strong { font-size: 1.5rem; }
.mr-stat span { font-size: .8rem; color: var(--muted); }

/* ---- Services section: 3-col on desktop, responsive ---- */
.svc-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr !important; }
}

/* ---- Team grid: 4 col → 2 → 2 ---- */
.team-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 576px) {
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; gap: .8rem !important; }
  .team-card { padding: 1.3rem 1rem !important; }
}

/* =============================================================
   ABHINOVA — PREMIUM SECTION UPGRADE v13
   Services · Work · Team · Visual Hierarchy
   ============================================================= */

/* ---- Premium Services Grid ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc-card {
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  background: linear-gradient(160deg, rgba(255,255,255,.95) 0%, rgba(248,249,252,.88) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  cursor: pointer;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px at var(--mx,50%) var(--my,50%), rgba(124,92,255,.12), transparent 70%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,92,255,.25), rgba(0,194,255,.18), rgba(255,122,198,.15));
  opacity: 0;
  z-index: -1;
  transition: opacity .35s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px -18px rgba(124,92,255,.35), 0 8px 24px rgba(11,16,32,.07); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { opacity: 1; }
.svc-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; position: relative; z-index: 1; }
.svc-ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: var(--grad); box-shadow: 0 12px 28px -10px rgba(124,92,255,.6); transition: transform .35s var(--ease), box-shadow .35s var(--ease); flex-shrink: 0; }
.svc-card:hover .svc-ico { transform: rotate(-6deg) scale(1.08); box-shadow: 0 16px 36px -12px rgba(124,92,255,.7); }
.svc-emoji { font-size: 1.6rem; line-height: 1; opacity: .55; transition: opacity .3s; }
.svc-card:hover .svc-emoji { opacity: 1; }
.svc-title { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; margin: 0 0 .5rem; color: var(--ink); position: relative; z-index: 1; }
.svc-desc { font-size: .96rem; color: var(--muted); margin: 0 0 1rem; line-height: 1.62; flex: 1; position: relative; z-index: 1; }
.svc-features { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .35rem; position: relative; z-index: 1; }
.svc-features li { font-size: .84rem; color: var(--ink-2); padding-left: 1.2rem; position: relative; }
.svc-features li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; font-size: .78rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: auto; position: relative; z-index: 1; }
.svc-tag { font-size: .7rem; padding: .22rem .52rem; border-radius: 7px; background: rgba(124,92,255,.07); color: var(--brand); font-weight: 600; border: 1px solid rgba(124,92,255,.14); }
.svc-more { display: inline-flex; align-items: center; gap: .3rem; margin-top: .9rem; font-size: .84rem; font-weight: 700; color: var(--brand); transition: gap .25s var(--ease); position: relative; z-index: 1; }
.svc-card:hover .svc-more { gap: .55rem; }
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .svc-grid { grid-template-columns: 1fr; } }

/* ---- Premium Work Cards ---- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 1100px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  position: relative;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px at var(--mx,50%) var(--my,50%), rgba(124,92,255,.1), transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.work-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px -18px rgba(124,92,255,.32), 0 8px 24px rgba(11,16,32,.08); border-color: rgba(124,92,255,.28); }
.work-card:hover::before { opacity: 1; }
.work-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, #eef0fa, #fbfbff); }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.work-card:hover .work-thumb img { transform: scale(1.07); }
.work-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  background: var(--grad-bg, linear-gradient(135deg, #eef0fa, #fbfbff));
  position: relative;
}
.work-thumb-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c1, rgba(124,92,255,.18)), var(--c2, rgba(0,194,255,.12)));
}
/* gradient overlay */
.work-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,16,32,.52) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.work-card:hover .work-thumb::after { opacity: 1; }
/* mockup frame effect */
.work-thumb-frame {
  position: absolute; bottom: .6rem; right: .6rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  padding: .25rem .45rem;
  font-size: .68rem;
  font-weight: 700;
  color: var(--ink-2);
  backdrop-filter: blur(8px);
  z-index: 2;
  display: flex; align-items: center; gap: .3rem;
}
.work-tag {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(255,255,255,.92); color: var(--brand);
  padding: .28rem .62rem; border-radius: 8px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(124,92,255,.15); z-index: 2;
}
.work-result {
  position: absolute; bottom: .75rem; left: .75rem;
  background: var(--grad); color: #fff;
  padding: .3rem .65rem; border-radius: 8px;
  font-size: .72rem; font-weight: 700;
  box-shadow: 0 6px 14px -4px rgba(124,92,255,.5); z-index: 2;
}
.work-body { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; flex: 1; position: relative; z-index: 1; }
.work-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin: 0 0 .2rem; color: var(--ink); }
.work-meta { font-size: .84rem; color: var(--muted); margin-bottom: .55rem; }
.work-stack { display: flex; flex-wrap: wrap; gap: .28rem; margin-bottom: .65rem; }
.work-stack span { font-family: var(--font-mono); font-size: .68rem; padding: .18rem .42rem; border-radius: 6px; background: rgba(11,16,32,.05); color: var(--muted); }
.work-features { list-style: none; padding: 0; margin: 0 0 .8rem; display: grid; gap: .2rem; }
.work-features li { font-size: .82rem; color: var(--ink-2); padding-left: 1.1rem; position: relative; }
.work-features li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; font-size: .75rem; }
.work-desc { font-size: .87rem; color: var(--muted); line-height: 1.55; margin: 0 0 .8rem; flex: 1; }
.work-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--line-2); margin-top: auto; }
.work-view-case { font-size: .82rem; font-weight: 700; color: var(--brand); display: flex; align-items: center; gap: .3rem; transition: gap .2s var(--ease); }
.work-card:hover .work-view-case { gap: .55rem; }
.work-card-btns { display: flex; gap: .4rem; }
.work-btn-sm {
  font-size: .74rem; font-weight: 600; padding: .32rem .7rem;
  border-radius: 8px; border: 1px solid var(--line);
  background: rgba(255,255,255,.7); color: var(--ink-2);
  cursor: pointer; transition: all .2s var(--ease);
}
.work-btn-sm:hover { border-color: rgba(124,92,255,.35); color: var(--brand); }
.work-btn-sm.primary { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 6px 14px -6px rgba(124,92,255,.5); }

/* gradient border glow on hover */
.work-card:hover {
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, rgba(124,92,255,.35), rgba(0,194,255,.25)) border-box;
  border: 1px solid transparent;
}

/* ---- Premium Team Section ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px)  { .team-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; } }

.team-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,249,252,.88));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem 1.6rem;
  text-align: center;
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  isolation: isolate;
  display: flex; flex-direction: column; align-items: center;
}
/* gradient top accent */
.team-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.team-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(124,92,255,.16), transparent 55%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px -18px rgba(124,92,255,.3), 0 8px 24px rgba(11,16,32,.07); border-color: rgba(124,92,255,.28); }
.team-card:hover::before, .team-card:hover::after { opacity: 1; }

/* Glassmorphism effect on hover */
.team-card:hover {
  background: linear-gradient(rgba(255,255,255,.98), rgba(255,255,255,.96)) padding-box,
              linear-gradient(135deg, rgba(124,92,255,.3), rgba(0,194,255,.2)) border-box;
  border: 1px solid transparent;
}

.team-avatar-wrap { position: relative; display: inline-block; margin-bottom: 1.1rem; }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: #fff;
  box-shadow: 0 16px 36px -10px rgba(124,92,255,.5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  overflow: hidden;
}
.team-card:hover .team-avatar { transform: scale(1.07); box-shadow: 0 20px 44px -12px rgba(124,92,255,.6); }
.team-avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.team-online { position: absolute; right: 4px; bottom: 4px; width: 14px; height: 14px; border-radius: 50%; background: #22c55e; border: 2.5px solid #fff; box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
.team-name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--ink); margin: 0 0 .3rem; }
.team-role { font-size: .8rem; font-weight: 600; color: var(--brand); background: rgba(124,92,255,.07); border: 1px solid rgba(124,92,255,.14); border-radius: 999px; display: inline-block; padding: .22rem .65rem; margin-bottom: .75rem; }
.team-bio { font-size: .88rem; color: var(--muted); line-height: 1.62; margin: 0 0 .9rem; }
.team-skills { display: flex; flex-wrap: wrap; justify-content: center; gap: .28rem; margin-bottom: 1.1rem; }
.team-skills span { font-size: .7rem; padding: .18rem .48rem; border-radius: 7px; background: rgba(11,16,32,.05); color: var(--muted-2); font-weight: 600; border: 1px solid var(--line); }
.team-links { display: flex; justify-content: center; gap: .4rem; margin-top: auto; }
.team-link { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.7); border: 1px solid var(--line); color: var(--ink-2); transition: all .2s var(--ease); }
.team-link:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(124,92,255,.5); }
.team-card.is-hiring { background: linear-gradient(135deg, rgba(124,92,255,.06), rgba(0,194,255,.06)); border-style: dashed; border-color: rgba(124,92,255,.3); }
.team-card.is-hiring:hover { background: linear-gradient(135deg, rgba(124,92,255,.12), rgba(0,194,255,.1)) padding-box, linear-gradient(135deg, rgba(124,92,255,.5), rgba(0,194,255,.4)) border-box; border: 1px solid transparent; }
.hiring-ico { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, rgba(124,92,255,.1), rgba(0,194,255,.1)); border: 2px dashed rgba(124,92,255,.4); display: grid; place-items: center; margin: 0 auto 1.1rem; font-size: 2rem; transition: transform .35s var(--ease); }
.team-card.is-hiring:hover .hiring-ico { transform: scale(1.07) rotate(5deg); }
.team-card.is-hiring .team-name { color: var(--brand); }

/* ---- Section head upgrades ---- */
.services .sec-head, .work .sec-head, .team .sec-head { margin-bottom: 2.8rem; }
.services .h-section, .work .h-section, .team .h-section { font-size: clamp(1.85rem, 3.2vw, 2.7rem); }
.services .sec-sub, .work .sec-sub, .team .sec-sub { font-size: 1.1rem; max-width: 68ch; color: var(--muted); }

/* ---- Section dividers / accent lines ---- */
.services, .work, .team { position: relative; }
.services::before, .work::before, .team::before {
  content: "";
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 0; width: 60px; height: 3px;
  background: var(--grad);
  border-radius: 999px;
  opacity: .55;
}

/* ---- Work filter chips ---- */
.work-filters { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center; margin: 0 auto 1.2rem; }

/* ---- Work count ---- */
.work-count { text-align: center; font-size: .82rem; font-weight: 600; color: var(--muted); margin: -.4rem 0 1.6rem; letter-spacing: .04em; }

/* ---- Floating gradient orbs for sections ---- */
.services, .work, .team { overflow: hidden; }

/* ---- Modal case-study upgrade ---- */
.modal-hero { position: relative; aspect-ratio: 16/8; overflow: hidden; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.modal-hero:hover img { transform: scale(1.04); }
.modal-features { list-style: none; padding: 0; margin: .6rem 0 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.modal-features li { font-size: .78rem; padding: .25rem .55rem; border-radius: 7px; background: rgba(124,92,255,.07); color: var(--brand); font-weight: 600; border: 1px solid rgba(124,92,255,.15); }
.modal-results { grid-template-columns: repeat(3,1fr); gap: .7rem; }
.mr-stat strong { font-size: 1.5rem; }

/* ---- Responsive mobile team cards ---- */
@media (max-width: 576px) {
  .team-card { padding: 1.4rem 1rem 1.2rem; }
  .team-avatar { width: 72px; height: 72px; font-size: 1.3rem; }
  .hiring-ico { width: 72px; height: 72px; }
  .team-name { font-size: .98rem; }
  .team-bio { font-size: .82rem; }
}
@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
}

/* ---- Bubbles section pills ---- */
.bubble-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem 1rem;
  font-size: .85rem; font-weight: 600; color: var(--ink-2);
  white-space: nowrap; backdrop-filter: blur(10px);
  transition: all .2s var(--ease);
}
.bubble-pill:hover { border-color: rgba(124,92,255,.4); color: var(--brand); background: #fff; }
.bpico { font-size: 1rem; }

/* ---- Showcase section ---- */
.showcase { max-width: var(--maxw); margin: 5rem auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: .9rem;
}
.sc-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; background: linear-gradient(135deg, #eef0fa, #fbfbff); }
.sc-item.sc-big { grid-row: span 2; }
.sc-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.sc-item:hover img { transform: scale(1.07); }
.sc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,16,32,.6) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity .35s var(--ease); }
.sc-item:hover .sc-overlay { opacity: 1; }
.sc-overlay span { color: #fff; font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.zoom-in-view { opacity: 0; transform: scale(.97); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.zoom-in-view.in-view { opacity: 1; transform: scale(1); }
@media (max-width: 992px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .sc-item.sc-big { grid-row: span 1; }
}
@media (max-width: 640px) {
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .sc-item { height: 200px; }
}

/* =============================================================
   FIX: WhatsApp popup, Nova panel, Why grid, Work cards
   ============================================================= */

/* WhatsApp popup — always above the fab, correct stacking */
.wa-pop {
  position: fixed;
  right: 1.2rem;
  bottom: 8rem;
  z-index: 95;
  width: 320px;
  max-width: calc(100vw - 2rem);
  background: rgba(255,255,255,.97);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -15px rgba(11,16,32,.28);
  backdrop-filter: blur(16px);
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-pop.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 5.4rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#25D366,#128C7E);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 40px -10px rgba(37,211,102,.6);
  transition: transform .25s var(--ease);
}
.wa-fab:hover { transform: translateY(-3px); }

/* Nova panel — ensure proper z-index and display */
.nova-panel {
  z-index: 91;
}
.nova-panel .nova-body { overflow-y: auto; }
.nova-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
  background: linear-gradient(135deg, rgba(124,92,255,.08), rgba(0,194,255,.08));
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.nova-id { display: flex; align-items: center; gap: .65rem; }
.nova-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: conic-gradient(from 0deg, #7c5cff, #00c2ff, #ff7ac6, #7c5cff);
  position: relative;
  box-shadow: 0 4px 12px -2px rgba(124,92,255,.5);
  flex-shrink: 0;
}
.nova-avatar::after {
  content: "";
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #e9e9ff);
}
.nova-name { font-weight: 700; font-size: .95rem; color: var(--ink); }
.nova-by   { font-weight: 500; color: var(--muted); font-size: .78rem; margin-left: .2rem; }
.nova-status { font-size: .74rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.nova-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); }

/* Why choose grid — ensure text is visible */
.why-card { text-align: center; }
.why-ico  { font-size: 2.2rem; margin-bottom: .8rem; display: block; }
.why-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 .4rem; color: var(--ink); }
.why-desc  { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.62; }

/* Work card — prevent button propagation issues */
.work-btn-sm { cursor: pointer; }
.work-card-footer { gap: .5rem; flex-wrap: wrap; }

/* Mobile fixes */
@media (max-width: 768px) {
  .wa-pop   { bottom: 5.5rem; right: .7rem; }
  .wa-fab   { bottom: .9rem;  right: .9rem; }
  .nova-fab { bottom: 4.5rem; right: .9rem; }
}
@media (max-width: 576px) {
  .wa-pop   { width: calc(100vw - 1.4rem); right: .7rem; }
}
