/* ============================================================
   KASHMIR DIGITAL — scroll-cinematic design system
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --font-heading: 'Clash Display', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --bg-primary: #050a18;
  --bg-secondary: #0a1530;
  --bg-elevated: #0e1d40;

  --text-primary: #ffffff;
  --text-secondary: #c4cde6;
  --text-muted: #6b7794;

  --accent: #0066FF;
  --accent-rgb: 0, 102, 255;
  --accent-light: #4d9aff;
  --accent-glow: rgba(0, 102, 255, 0.35);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --glass-bg: rgba(10, 16, 38, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
body.is-loading { overflow: hidden; }
::selection { background: rgba(var(--accent-rgb), 0.35); color: #fff; }

/* ===== noise ===== */
svg.noise-svg { position: absolute; width: 0; height: 0; }
.noise-layer { position: fixed; inset: 0; filter: url(#noise); opacity: 0.028; pointer-events: none; z-index: 9990; }


/* ===== loader ===== */
#loader { position: fixed; inset: 0; z-index: 99990; background: var(--bg-primary); display: flex; align-items: center; justify-content: center; transition: opacity .7s var(--ease), visibility .7s; }
#loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-brand { font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.5rem, 4.6vw, 2.4rem); letter-spacing: .02em; }
.loader-brand em { font-style: normal; color: var(--accent-light); }
.loader-bar { margin: 22px auto 0; width: 200px; height: 1.5px; background: var(--border-subtle); overflow: hidden; border-radius: 2px; }
.loader-bar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-light)); transition: width .3s ease; }
.loader-pct { margin-top: 14px; font-size: .68rem; font-weight: 700; letter-spacing: 5px; color: var(--text-muted); font-variant-numeric: tabular-nums; }

/* ===== nav ===== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: transform .5s var(--ease), background .4s, border-color .4s, padding .4s; border-bottom: 1px solid transparent; }
#navbar.hidden { transform: translateY(-110%); }
#navbar.scrolled { padding: 12px 0; background: rgba(4,8,20,.72); backdrop-filter: blur(28px) saturate(1.6); -webkit-backdrop-filter: blur(28px) saturate(1.6); border-bottom-color: var(--border-subtle); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: dotPulse 3s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 8px var(--accent-glow); } 50% { box-shadow: 0 0 18px var(--accent-glow), 0 0 34px rgba(var(--accent-rgb),.4); } }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .85rem; font-weight: 500; padding: 8px 14px; border-radius: 0; transition: color .25s, background .25s; white-space: nowrap; }
.nav-links > a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang-switcher { display: flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 600; }
.lang-switcher a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .25s; }
.lang-switcher a:hover, .lang-switcher a.active { color: #fff; }
.lang-switcher span { color: rgba(255,255,255,.15); }
.nav-cta { background: var(--accent); color: #fff; padding: 10px 24px; border-radius: 0; font-weight: 700; font-size: .84rem; letter-spacing: .02em; border: none; cursor: pointer; font-family: var(--font-body); white-space: nowrap; box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset, 0 4px 24px rgba(var(--accent-rgb), .35); transition: transform .3s var(--ease), box-shadow .3s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,.2) inset, 0 8px 34px rgba(var(--accent-rgb), .5); }
.nav-burger { display: none; background: rgba(255,255,255,.05); border: 1px solid var(--border-subtle); border-radius: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 13px 14px; }
.nav-burger span { display: block; width: 20px; height: 1.5px; background: #fff; border-radius: 2px; transition: all .35s var(--ease); }
.nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 980px) { .nav-links, .nav-right .nav-cta, .nav-right .lang-switcher { display: none; } .nav-burger { display: flex; } }

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; background: #03060f; z-index: 999; display: flex; flex-direction: column; justify-content: center; padding: 48px 40px; opacity: 0; pointer-events: none; transform: translateY(-4%); transition: opacity .45s, transform .5s var(--ease); }
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu a.mm-link { font-family: var(--font-heading); font-size: clamp(2rem, 9vw, 3.2rem); font-weight: 500; color: rgba(255,255,255,.75); text-decoration: none; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); display: flex; align-items: baseline; gap: 16px; opacity: 0; transform: translateY(26px); transition: opacity .5s, transform .55s var(--ease), color .25s; }
.mobile-menu a.mm-link i { font-style: normal; font-family: var(--font-body); font-size: .7rem; color: var(--accent-light); font-weight: 700; }
.mobile-menu.open a.mm-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open a.mm-link:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open a.mm-link:nth-child(2) { transition-delay: .13s; }
.mobile-menu.open a.mm-link:nth-child(3) { transition-delay: .18s; }
.mobile-menu.open a.mm-link:nth-child(4) { transition-delay: .23s; }
.mobile-menu.open a.mm-link:nth-child(5) { transition-delay: .28s; }
.mobile-menu a.mm-link:hover { color: #fff; }
.mm-footer { position: absolute; bottom: 36px; left: 40px; right: 40px; display: flex; align-items: center; justify-content: space-between; }
.mm-lang { display: flex; gap: 12px; font-weight: 600; font-size: .9rem; }
.mm-lang a { color: rgba(255,255,255,.4); text-decoration: none; }
.mm-lang a.active { color: #fff; }

/* ===== cinematic scrub sections ===== */
.cinematic { position: relative; }
.cinematic .sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.cinematic canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.cinematic .vignette { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 45% at 50% 50%, rgba(2,5,12,.42) 0%, transparent 75%), radial-gradient(ellipse 95% 85% at 50% 45%, transparent 52%, rgba(2,5,12,.62) 100%), linear-gradient(180deg, rgba(2,5,12,.5) 0%, transparent 22%, transparent 78%, rgba(2,5,12,.55) 100%); }
.section-end-fade { position: absolute; inset: 0; background: #04070f; pointer-events: none; opacity: 0; z-index: 4; display: flex; align-items: center; justify-content: center; }
.transition-text { color: #fff; font-family: 'Clash Display', sans-serif; font-size: clamp(2rem, 5.5vw, 5rem); font-weight: 600; letter-spacing: 0.22em; text-align: center; text-transform: uppercase; text-shadow: 0 0 60px rgba(255,255,255,0.18); }
#hero { height: 640vh; background: #04070f; }
#manifest { height: 480vh; background: #04070f; }

.overlay { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 0 24px; pointer-events: none; }
.reveal-line { grid-area: 1 / 1; opacity: 0; will-change: opacity, transform; max-width: 1100px; }
.reveal-line .eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: .72rem; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: #eaf2ff; margin-bottom: 22px; text-shadow: 0 1px 3px rgba(0,5,20,.95), 0 2px 14px rgba(0,5,20,.9), 0 0 30px rgba(0,5,20,.7); }
.reveal-line h1, .reveal-line .h1 { font-family: var(--font-heading); font-weight: 600; font-size: clamp(2.8rem, 9vw, 8.2rem); line-height: .98; letter-spacing: -.025em; text-transform: uppercase; text-shadow: 0 3px 14px rgba(0,0,0,.95), 0 8px 50px rgba(0,0,0,.8), 0 0 90px rgba(0,0,0,.6); }
.reveal-line .thin { font-weight: 300; font-style: italic; color: #bcdcff; text-shadow: 0 3px 14px rgba(0,5,20,.98), 0 8px 50px rgba(0,5,20,.9), 0 0 90px rgba(0,5,20,.75); }
.reveal-line p { margin-top: 22px; font-size: clamp(.95rem, 1.7vw, 1.15rem); color: rgba(255,255,255,.88); max-width: 560px; margin-left: auto; margin-right: auto; text-shadow: 0 1px 14px rgba(0,0,0,.7); }
.reveal-line .actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; pointer-events: auto; }
.reveal-line.faded-out .actions { pointer-events: none; }

.btn { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 17px 36px; border-radius: 0; font-family: var(--font-body); font-weight: 700; font-size: .92rem; text-decoration: none; cursor: pointer; border: none; transition: transform .35s var(--ease), box-shadow .35s, background .35s, border-color .35s; }
.btn-fill { background: var(--accent); color: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.14) inset, 0 8px 32px rgba(var(--accent-rgb), .4); }
.btn-fill:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(255,255,255,.22) inset, 0 14px 44px rgba(var(--accent-rgb), .55); }
.btn-ghost { background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.35); }
.btn svg { transition: transform .35s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 4; font-size: .62rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.55); transition: opacity .5s; animation: hintFloat 2.4s ease-in-out infinite; }
@keyframes hintFloat { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ===== marquee ===== */
.marquee { position: relative; z-index: 5; padding: 26px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: rgba(255,255,255,.012); overflow: hidden; display: flex; }
.marquee-track { display: flex; flex-shrink: 0; align-items: center; animation: mq 30s linear infinite; will-change: transform; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.marquee-item { display: flex; align-items: center; gap: 28px; padding: 0 28px; font-family: var(--font-heading); font-weight: 500; font-size: clamp(1rem, 2.2vw, 1.5rem); letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.82); white-space: nowrap; }
.marquee-item em { font-style: normal; color: var(--accent-light); font-size: .8em; }

/* ===== sections ===== */
section { position: relative; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.sec-head { margin-bottom: clamp(48px, 7vw, 84px); }
.sec-tag { display: inline-flex; align-items: center; gap: 12px; font-size: .7rem; font-weight: 700; letter-spacing: 4.5px; text-transform: uppercase; color: var(--accent-light); margin-bottom: 22px; }
.sec-tag::before { content: ''; width: 36px; height: 1px; background: var(--accent-light); }
.sec-title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(2.2rem, 5.4vw, 4.2rem); line-height: 1.04; letter-spacing: -.02em; color: #fff; }
.accent-i { font-weight: 300; font-style: italic; color: var(--accent-light); }
.sec-desc { margin-top: 20px; max-width: 560px; color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }
.orb { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; opacity: .5; }

.reveal { opacity: 0; transform: translateY(46px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ===== despre + stats ===== */
#despre { padding: clamp(100px, 13vw, 180px) 0; background: var(--bg-primary); overflow: hidden; }
#despre .orb { width: 520px; height: 520px; background: rgba(var(--accent-rgb), .1); bottom: -160px; left: -200px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.about-copy p { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.8; margin-bottom: 20px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: 0; overflow: hidden; margin-top: clamp(48px, 6vw, 80px); }
.stat-cell { background: var(--bg-primary); padding: clamp(26px, 3.4vw, 44px) clamp(18px, 2.4vw, 34px); transition: background .4s; }
.stat-cell:hover { background: var(--bg-secondary); }
.stat-num { font-family: var(--font-heading); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1; color: #fff; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat-num em, .stat-suffix { font-style: normal; color: var(--accent-light); }
.stat-label { margin-top: 10px; font-size: .74rem; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 0; } .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* ===== services ===== */
#services { padding: clamp(100px, 13vw, 180px) 0 clamp(80px, 9vw, 130px); background: var(--bg-primary); overflow: hidden; }
#services .orb { width: 600px; height: 600px; background: rgba(var(--accent-rgb), .13); top: -200px; right: -240px; }
.svc-list { border-top: 1px solid var(--border-subtle); }
.svc-row { position: relative; display: grid; grid-template-columns: 90px 1.1fr 1.5fr auto; align-items: center; gap: clamp(16px, 3vw, 48px); padding: clamp(26px, 3.4vw, 42px) 8px; border-bottom: 1px solid var(--border-subtle); text-decoration: none; overflow: hidden; }
.svc-row::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(var(--accent-rgb), .12), rgba(var(--accent-rgb), .02)); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); z-index: 0; }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row > * { position: relative; z-index: 1; }
.svc-num { font-family: var(--font-heading); font-weight: 300; font-size: clamp(.95rem, 1.6vw, 1.2rem); color: var(--text-muted); transition: color .4s; font-variant-numeric: tabular-nums; }
.svc-row:hover .svc-num { color: var(--accent-light); }
.svc-name { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.3rem, 3.2vw, 2.3rem); line-height: 1.1; letter-spacing: -.015em; color: #fff; transition: transform .45s var(--ease); }
.svc-row:hover .svc-name { transform: translateX(12px); }
.svc-desc { color: var(--text-secondary); font-size: .92rem; line-height: 1.65; max-width: 480px; }
.svc-arrow { width: 54px; height: 54px; border-radius: 0; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; transition: background .4s, border-color .4s, transform .45s var(--ease); flex-shrink: 0; }
.svc-arrow svg { width: 18px; height: 18px; stroke: #fff; }
.svc-row:hover .svc-arrow { background: var(--accent); border-color: var(--accent); transform: rotate(-45deg) scale(1.06); }
@media (max-width: 860px) { .svc-row { grid-template-columns: 44px 1fr auto; } .svc-desc { display: none; } .svc-arrow { width: 44px; height: 44px; } }

/* ===== portfolio — 3D sticky stack ===== */
#portfolio { padding: clamp(100px, 13vw, 180px) 0 clamp(60px, 8vw, 110px); background: var(--bg-primary); }
.pf-stack { display: flex; flex-direction: column; gap: clamp(36px, 6vh, 64px); }
.pf-card { position: sticky; top: 100px; display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; background: linear-gradient(160deg, var(--bg-secondary), var(--bg-primary)); border: 1px solid var(--border-subtle); border-radius: 0; padding: clamp(24px, 3.4vw, 48px); will-change: transform; box-shadow: 0 -20px 60px rgba(0,0,0,.35); }
.pf-card:nth-child(even) { grid-template-columns: 1fr 1.45fr; }
.pf-card:nth-child(even) .pf-media { order: 2; }
.pf-media { position: relative; border-radius: 0; overflow: hidden; border: 1px solid var(--border-strong); background: #060b1c; box-shadow: 0 24px 70px rgba(0,0,0,.45); }
.pf-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(255,255,255,.04); border-bottom: 1px solid var(--border-subtle); }
.pf-dots { display: flex; gap: 6px; }
.pf-dots span { width: 9px; height: 9px; border-radius: 50%; }
.pf-dots span:nth-child(1) { background: rgba(255,95,87,.75); }
.pf-dots span:nth-child(2) { background: rgba(255,189,46,.75); }
.pf-dots span:nth-child(3) { background: rgba(39,201,63,.75); }
.pf-url { flex: 1; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.06); border-radius: 0; padding: 5px 14px; font-size: .72rem; color: var(--text-muted); letter-spacing: .04em; }
.pf-view { position: relative; height: clamp(260px, 30vw, 380px); overflow: hidden; }
.pf-view iframe { width: 200%; height: 200%; border: none; transform: scale(.5); transform-origin: top left; pointer-events: none; background: #0a1530; }
.pf-tag { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: 2.6px; text-transform: uppercase; color: var(--accent-light); border: 1px solid rgba(var(--accent-rgb), .35); background: rgba(var(--accent-rgb), .08); border-radius: 0; padding: 7px 16px; margin-bottom: 18px; }
.pf-info h3 { font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.015em; color: #fff; margin-bottom: 14px; }
.pf-info p { color: var(--text-secondary); font-size: .95rem; line-height: 1.7; margin-bottom: 22px; }
.pf-tech { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.pf-tech span { font-size: .72rem; font-weight: 600; color: var(--text-secondary); background: rgba(255,255,255,.05); border: 1px solid var(--border-subtle); border-radius: 0; padding: 6px 14px; }
.pf-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: .9rem; text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.25); transition: border-color .3s, gap .3s var(--ease); }
.pf-link:hover { border-color: var(--accent-light); gap: 16px; }
.pf-link svg { width: 14px; height: 14px; stroke: var(--accent-light); }
.chat-preview { height: 100%; display: flex; flex-direction: column; background: linear-gradient(180deg, #f7f8fb, #fff); }
.chat-head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid #e7e9f0; background: #fff; }
.chat-ava { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-head b { font-size: 12px; color: #1f2937; display: block; }
.chat-head i { font-style: normal; font-size: 9px; color: #22c55e; }
.chat-body { flex: 1; padding: 16px 18px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.bubble { max-width: 78%; padding: 9px 13px; border-radius: 0; font-size: 10.5px; line-height: 1.45; }
.bubble.a { background: #eef0f5; color: #374151; border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.u { background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
@media (max-width: 900px) {
  .pf-card, .pf-card:nth-child(even) { grid-template-columns: 1fr; position: relative; top: auto !important; transform: none !important; opacity: 1 !important; filter: none !important; }
  .pf-card:nth-child(even) .pf-media { order: 0; }
  .pf-view { height: 240px; }
}

/* ===== press ===== */
#press { padding: clamp(90px, 11vw, 160px) 0; background: var(--bg-primary); text-align: center; overflow: hidden; }
.press-img { margin: 0 auto clamp(32px, 5vw, 56px); max-width: 980px; }
.press-img img { width: 100%; height: auto; filter: drop-shadow(0 24px 50px rgba(0,0,0,.55)) drop-shadow(0 6px 18px rgba(var(--accent-rgb), .16)); animation: paperFloat 6s ease-in-out infinite; }
@keyframes paperFloat { 0%,100% { transform: translateY(0) rotate(-.8deg); } 50% { transform: translateY(-16px) rotate(.8deg); } }

/* ===== FAQ ===== */
#faq { padding: clamp(90px, 11vw, 160px) 0; background: var(--bg-primary); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: none; border: none; cursor: pointer; text-align: left; padding: clamp(22px, 3vw, 32px) 4px; color: #fff; font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.05rem, 2.2vw, 1.45rem); letter-spacing: -.01em; transition: color .3s; }
.faq-q:hover { color: var(--accent-light); }
.faq-icon { position: relative; width: 36px; height: 36px; flex-shrink: 0; border-radius: 0; border: 1px solid var(--border-strong); transition: background .35s, border-color .35s, transform .45s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.5px; background: #fff; transform: translate(-50%, -50%); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.faq-a p { color: var(--text-secondary); font-size: .95rem; line-height: 1.75; padding: 0 4px clamp(22px, 3vw, 30px); max-width: 720px; }

/* ===== CTA ===== */
#cta { position: relative; padding: clamp(120px, 16vw, 220px) 0; background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); overflow: hidden; text-align: center; }
#cta .orb.o1 { width: 640px; height: 640px; background: rgba(var(--accent-rgb), .16); top: -220px; left: -180px; }
#cta .orb.o2 { width: 520px; height: 520px; background: rgba(77,154,255,.1); bottom: -200px; right: -150px; }
.cta-kicker { font-size: .72rem; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--accent-light); margin-bottom: 26px; }
.cta-title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(2.4rem, 8vw, 6.4rem); line-height: 1.02; letter-spacing: -.025em; color: #fff; margin-bottom: 26px; }
.cta-sub { color: var(--text-secondary); font-size: 1.05rem; max-width: 520px; margin: 0 auto 48px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 28px; font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 8px; }
.cta-note i { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px rgba(74,222,128,.6); display: inline-block; }

/* ===== footer ===== */
footer { background: var(--bg-primary); border-top: 1px solid var(--border-subtle); padding: clamp(60px, 8vw, 100px) 0 40px; overflow: hidden; }
.foot-word { font-family: var(--font-heading); font-weight: 600; font-size: clamp(3rem, 11.5vw, 10.5rem); line-height: .95; letter-spacing: -.025em; text-transform: uppercase; text-align: center; color: rgba(255,255,255,.06); user-select: none; white-space: nowrap; margin-bottom: clamp(40px, 6vw, 72px); transition: color 1.2s; }
.foot-word:hover { color: rgba(var(--accent-rgb), .18); }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border-subtle); }
.foot-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: var(--text-muted); text-decoration: none; font-size: .82rem; font-weight: 500; transition: color .25s; }
.foot-links a:hover { color: #fff; }
.foot-copy { color: var(--text-muted); font-size: .76rem; }

/* ===== contact modal ===== */
#contact-form-wrap { display: none; position: fixed; inset: 0; z-index: 100000; align-items: center; justify-content: center; background: rgba(2,4,12,.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); overflow-y: auto; padding: 40px 16px; }
.cf-card { position: relative; max-width: 580px; width: 100%; padding: 46px 40px; border-radius: 0; background: linear-gradient(150deg, rgba(14,22,52,.97), rgba(8,13,32,.99)); border: 1px solid rgba(255,255,255,.13); box-shadow: inset 0 1px 1px rgba(255,255,255,.1), 0 30px 90px rgba(0,0,0,.6); margin: auto; }
@media (max-width: 540px) { .cf-card { padding: 38px 24px; } }
.cf-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 0; background: rgba(255,255,255,.06); border: 1px solid var(--border-subtle); color: rgba(255,255,255,.7); font-size: 1rem; cursor: pointer; transition: background .25s; }
.cf-close:hover { background: rgba(255,255,255,.14); color: #fff; }
.cf-live { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: .78rem; color: var(--text-muted); }
.cf-live i { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,.55); }
.cf-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.55rem; margin-bottom: 6px; }
.cf-card > p { color: var(--text-muted); font-size: .86rem; margin-bottom: 30px; line-height: 1.6; }
#contact-form { display: flex; flex-direction: column; gap: 14px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .cf-grid { grid-template-columns: 1fr; } }
.cf-field label { display: block; color: var(--text-muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.cf-field input, .cf-field select, .cf-field textarea { width: 100%; padding: 13px 16px; border-radius: 0; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: #fff; font-size: .9rem; font-family: var(--font-body); outline: none; transition: border-color .3s; }
.cf-field textarea { resize: vertical; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: rgba(var(--accent-rgb), .55); }
.cf-field select { appearance: none; cursor: pointer; }
.cf-field option { background: #0c1430; }
.cf-submit { margin-top: 8px; width: 100%; justify-content: center; }
.cf-trust { display: flex; justify-content: center; gap: 22px; margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--border-subtle); flex-wrap: wrap; }
.cf-trust span { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: .72rem; }
#contact-status { text-align: center; font-size: .85rem; color: var(--text-muted); display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
