/* =============================================================
   PRANAV TECHY — Corporate Website
   style.css  ·  Core design system + section styles
   -------------------------------------------------------------
   Design language
   - Display face : Sora            (engineered, geometric)
   - Body face    : Plus Jakarta Sans
   - Utility face : Space Mono      (eyebrows / data tags)
   - Brand        : confident blue + electric sky on deep navy
   ============================================================= */

/* -----------------------------------------------------------------
   1. DESIGN TOKENS
----------------------------------------------------------------- */
:root {
  /* Brand colour scale */
  --navy-900: #060c1f;
  --navy-800: #0a1633;
  --navy-700: #101f44;
  --navy-600: #16285a;

  --blue-600: #1b5cff;   /* primary brand blue   */
  --blue-500: #2f6bff;
  --blue-400: #5b8bff;

  --sky-500: #38bdf8;    /* electric sky accent  */
  --sky-400: #7dd3fc;
  --sky-300: #bae6fd;

  --white: #ffffff;
  --paper: #f6f8fc;      /* very light grey-blue page bg */
  --paper-2: #eef2fb;
  --line: #e2e8f4;

  --ink-900: #0b1220;    /* primary text */
  --ink-700: #28324a;
  --ink-500: #5b6781;    /* muted text  */
  --ink-300: #97a2bd;

  /* Semantic (light theme defaults) */
  --bg: var(--paper);
  --bg-elevated: var(--white);
  --bg-section-alt: var(--white);
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --border: var(--line);
  --card: rgba(255, 255, 255, 0.72);
  --card-solid: #ffffff;
  --shadow-soft: 0 18px 50px -24px rgba(16, 31, 68, 0.28);
  --shadow-card: 0 10px 40px -18px rgba(16, 31, 68, 0.22);
  --header-bg: rgba(246, 248, 252, 0.72);
  --header-border: rgba(226, 232, 244, 0.9);

  /* Gradients — the premium tell */
  --grad-brand: linear-gradient(120deg, var(--blue-600), var(--sky-500));
  --grad-brand-soft: linear-gradient(120deg, #1b5cff22, #38bdf822);
  --grad-ink: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  --grad-text: linear-gradient(100deg, #1b5cff 0%, #38bdf8 60%, #7dd3fc 100%);
  --stroke-grad: linear-gradient(135deg, rgba(43,107,255,.55), rgba(56,189,248,.15) 45%, rgba(255,255,255,.06));

  /* Type scale (fluid) */
  --fz-eyebrow: 0.78rem;
  --fz-display: clamp(2.6rem, 6.4vw, 5.4rem);
  --fz-h1: clamp(2.2rem, 4.6vw, 3.6rem);
  --fz-h2: clamp(1.8rem, 3.4vw, 2.85rem);
  --fz-h3: clamp(1.25rem, 1.8vw, 1.55rem);
  --fz-lead: clamp(1.05rem, 1.4vw, 1.25rem);
  --fz-body: 1rem;

  /* Rhythm */
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 14px;
  --container: 1240px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 78px;
}

/* Dark theme overrides */
[data-theme="dark"] {
  --bg: var(--navy-900);
  --bg-elevated: var(--navy-800);
  --bg-section-alt: var(--navy-800);
  --text: #eaf0ff;
  --text-muted: #9fb0d4;
  --border: rgba(255, 255, 255, 0.09);
  --card: rgba(255, 255, 255, 0.045);
  --card-solid: #0e1a39;
  --shadow-soft: 0 22px 60px -28px rgba(0, 0, 0, 0.7);
  --shadow-card: 0 18px 50px -24px rgba(0, 0, 0, 0.6);
  --header-bg: rgba(8, 16, 38, 0.7);
  --header-border: rgba(255, 255, 255, 0.08);
  --paper: var(--navy-900);
}

/* -----------------------------------------------------------------
   2. RESET & BASE
----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--fz-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Typography roles */
h1, h2, h3, h4, .display, .h2, .h3 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
.display { font-size: var(--fz-display); font-weight: 800; }
.eyebrow {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: var(--fz-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -----------------------------------------------------------------
   3. LAYOUT PRIMITIVES
----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: 1380px; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fz-h2); margin-top: 0.9rem; }
.section-head p { color: var(--text-muted); font-size: var(--fz-lead); margin-top: 1rem; }

.lead { font-size: var(--fz-lead); color: var(--text-muted); }
.muted { color: var(--text-muted); }

/* Section tone helpers */
.section--ink {
  background: var(--grad-ink);
  color: #eaf0ff;
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .muted, .section--ink .section-head p { color: #9fb0d4; }
.section--alt { background: var(--bg-section-alt); }

/* -----------------------------------------------------------------
   4. BUTTONS
----------------------------------------------------------------- */
.btn {
  --b: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  position: relative;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(27, 92, 255, 0.7);
}
.btn--primary::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--sky-500), var(--blue-600));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s var(--ease);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -14px rgba(27, 92, 255, 0.8); }
.btn--primary:hover::after { opacity: 1; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-3px); }
.section--ink .btn--ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.section--ink .btn--ghost:hover { border-color: var(--sky-400); color: var(--sky-300); }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.02rem; }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -16px rgba(0,0,0,.4); }

/* -----------------------------------------------------------------
   5. CARD SHELL (glassmorphism + gradient stroke)
----------------------------------------------------------------- */
.glass {
  background: var(--card);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.stroke-grad {
  position: relative;
  border-radius: var(--radius);
}
.stroke-grad::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--stroke-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* -----------------------------------------------------------------
   6. SCROLL PROGRESS + UTILITY FLOAT BUTTONS
----------------------------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-brand);
  z-index: 1200;
  box-shadow: 0 0 12px rgba(56,189,248,.6);
}
.float-stack {
  position: fixed; right: clamp(14px, 2vw, 26px); bottom: clamp(16px, 3vw, 30px);
  display: flex; flex-direction: column; gap: 12px; z-index: 1100;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--card-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  color: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.35s, background 0.3s, color 0.3s;
}
.fab svg { width: 22px; height: 22px; }
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab--wa { background: #25d366; color: #fff; border-color: transparent; }
.fab--call { background: var(--grad-brand); color: #fff; border-color: transparent; }
.fab--top { opacity: 0; pointer-events: none; }
.fab--top.is-visible { opacity: 1; pointer-events: auto; }

/* -----------------------------------------------------------------
   7. HEADER + NAV + MEGA MENU
----------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--header-border);
  box-shadow: 0 10px 30px -22px rgba(16,31,68,.5);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: "Sora"; font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand__mark { width: 38px; height: 38px; }
.brand__name span { color: var(--blue-500); }
/* On hero (transparent header over dark) make brand text light until stuck */
.site-header:not(.is-stuck) .brand,
.site-header:not(.is-stuck) .nav__link { color: #eaf0ff; }
.site-header:not(.is-stuck) .nav__link:hover { color: #fff; }

.nav__menu { display: flex; align-items: center; gap: 0.4rem; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.6rem 0.95rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
  transition: color 0.25s, background 0.25s;
}
.nav__link:hover { color: var(--blue-600); }
.nav__link .chev { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.nav__item:hover .chev { transform: rotate(180deg); }

.nav__actions { display: flex; align-items: center; gap: 0.6rem; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: currentColor;
  border: 1px solid var(--header-border);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.theme-toggle:hover { transform: rotate(18deg); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(720px, 86vw);
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 50;
}
.nav__item--mega:hover .mega,
.nav__item--mega:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega--sm { width: min(440px, 86vw); }
.mega__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.mega__grid--3 { grid-template-columns: repeat(3, 1fr); }
.mega__link {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.7rem 0.8rem; border-radius: var(--radius-sm);
  transition: background 0.25s, transform 0.25s;
}
.mega__link:hover { background: var(--paper-2); transform: translateX(3px); }
[data-theme="dark"] .mega__link:hover { background: rgba(255,255,255,.05); }
.mega__ico {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: var(--grad-brand-soft); color: var(--blue-500);
}
.mega__ico svg { width: 18px; height: 18px; }
.mega__link b { font-family: "Sora"; font-size: 0.92rem; display: block; color: var(--text); }
.mega__link small { color: var(--text-muted); font-size: 0.8rem; line-height: 1.4; }
.mega__foot {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.mega__foot small { color: var(--text-muted); }

/* Mobile nav */
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 4px auto; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.mobile-nav {
  position: fixed; inset: 0; z-index: 1500;
  background: var(--bg);
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  display: flex; flex-direction: column; padding: 1.4rem var(--gutter);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.mobile-nav__close { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--border); }
.mobile-nav__close svg { width: 22px; height: 22px; }
.m-acc { border-bottom: 1px solid var(--border); }
.m-acc__head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0.2rem; font-family: "Sora"; font-weight: 600; font-size: 1.1rem;
}
.m-acc__head svg { width: 18px; height: 18px; transition: transform 0.3s; }
.m-acc.is-open .m-acc__head svg { transform: rotate(180deg); }
.m-acc__body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.m-acc.is-open .m-acc__body { max-height: 460px; }
.m-acc__body a { display: block; padding: 0.55rem 0.2rem; color: var(--text-muted); font-weight: 500; }
.m-acc__body a:hover { color: var(--blue-600); }
.mobile-nav .btn { margin-top: 1.4rem; justify-content: center; }

/* -----------------------------------------------------------------
   8. HERO
----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--grad-ink);
  color: #eaf0ff;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__glow {
  position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(70px); opacity: 0.55; pointer-events: none;
}
.hero__glow--1 { width: 420px; height: 420px; background: #1b5cff; top: -120px; left: -80px; }
.hero__glow--2 { width: 360px; height: 360px; background: #38bdf8; bottom: -120px; right: -60px; opacity: 0.4; }
.hero__grid-overlay {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 2; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0.95rem; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  font-family: "Space Mono", monospace; font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sky-300);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky-400); box-shadow: 0 0 0 0 rgba(56,189,248,.7); animation: pulse 2.2s infinite; }
.hero h1 {
  font-size: var(--fz-display);
  margin: 1.4rem 0 1.2rem;
  color: #fff;
}
.hero h1 .text-grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__type { color: var(--sky-300); border-right: 2px solid var(--sky-400); padding-right: 3px; }
.hero__sub { font-size: var(--fz-lead); color: #b9c6e6; max-width: 32rem; }
.hero__sub b { color: #fff; font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__trust { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__trust-stat { display: flex; flex-direction: column; }
.hero__trust-stat b { font-family: "Sora"; font-size: 1.5rem; color: #fff; }
.hero__trust-stat small { color: #8fa0c6; font-size: 0.8rem; letter-spacing: 0.02em; }
.hero__trust-divider { width: 1px; height: 38px; background: rgba(255,255,255,.14); }

/* Hero visual — orbit of floating glass chips */
.hero__visual { position: relative; aspect-ratio: 1; max-width: 520px; margin-inline: auto; width: 100%; }
.orbit-core {
  position: absolute; inset: 0; margin: auto; width: 168px; height: 168px;
  display: grid; place-items: center; border-radius: 32px;
  background: linear-gradient(150deg, rgba(27,92,255,.35), rgba(56,189,248,.12));
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px -30px rgba(27,92,255,.8);
}
.orbit-core svg { width: 74px; height: 74px; color: #fff; }
.orbit-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.12);
}
.orbit-ring--1 { inset: 8%; animation: spin 38s linear infinite; }
.orbit-ring--2 { inset: 24%; border-style: solid; border-color: rgba(255,255,255,.06); animation: spin 28s linear infinite reverse; }
.chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 0.95rem; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  font-family: "Sora"; font-weight: 600; font-size: 0.85rem; color: #fff;
  box-shadow: 0 14px 36px -18px rgba(0,0,0,.7);
  animation: float 6s ease-in-out infinite;
}
.chip svg { width: 18px; height: 18px; color: var(--sky-300); }
.chip--1 { top: 4%; left: 6%; }
.chip--2 { top: 12%; right: 0%; animation-delay: -1.5s; }
.chip--3 { top: 46%; right: -6%; animation-delay: -3s; }
.chip--4 { bottom: 8%; right: 8%; animation-delay: -2s; }
.chip--5 { bottom: 2%; left: 10%; animation-delay: -4s; }
.chip--6 { top: 44%; left: -8%; animation-delay: -2.6s; }

/* -----------------------------------------------------------------
   9. LOGO MARQUEE (Trusted by)
----------------------------------------------------------------- */
.marquee {
  --gap: 3.5rem;
  position: relative; overflow: hidden; padding-block: 2.2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__label { text-align: center; color: var(--text-muted); font-family: "Space Mono"; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.6rem; }
.marquee__track { display: flex; gap: var(--gap); width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: "Sora"; font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em;
  color: var(--text); opacity: 0.55;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.marquee__item:hover { opacity: 1; }
.marquee__item svg { width: 26px; height: 26px; color: var(--blue-500); }

/* -----------------------------------------------------------------
   10. ABOUT + STATS
----------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__copy p { color: var(--text-muted); font-size: 1.05rem; margin-top: 1.1rem; }
.about__pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.95rem; border-radius: 100px;
  background: var(--card); border: 1px solid var(--border);
  font-weight: 600; font-size: 0.86rem;
}
.pill svg { width: 16px; height: 16px; color: var(--blue-500); }

.mv-stack { display: grid; gap: 1rem; }
.mv-card { padding: 1.6rem; border-radius: var(--radius); background: var(--card-solid); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.mv-card h3 { font-size: var(--fz-h3); display: flex; align-items: center; gap: 0.7rem; }
.mv-card h3 .mv-ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-brand-soft); color: var(--blue-500); }
.mv-card h3 .mv-ico svg { width: 20px; height: 20px; }
.mv-card p { color: var(--text-muted); margin-top: 0.8rem; }

.stats {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-top: clamp(3rem,6vw,4.5rem);
}
.stat { background: var(--bg); padding: 2rem 1.4rem; text-align: center; }
.stat__num { font-family: "Sora"; font-weight: 800; font-size: clamp(2.1rem, 3.6vw, 3rem); line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--text-muted); margin-top: 0.5rem; font-size: 0.88rem; font-weight: 500; }

/* -----------------------------------------------------------------
   11. WHY CHOOSE US
----------------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature {
  padding: 2rem 1.8rem; border-radius: var(--radius);
  background: var(--card-solid); border: 1px solid var(--border);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.feature::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(56,189,248,.12), transparent 60%);
  transition: opacity 0.4s; pointer-events: none;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(56,189,248,.4); }
.feature:hover::after { opacity: 1; }
.feature__ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; margin-bottom: 1.2rem;
  box-shadow: 0 14px 30px -14px rgba(27,92,255,.7);
}
.feature__ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.22rem; }
.feature p { color: var(--text-muted); margin-top: 0.7rem; font-size: 0.96rem; }
.feature__idx { position: absolute; top: 1.3rem; right: 1.5rem; font-family: "Space Mono"; font-size: 0.8rem; color: var(--ink-300); }

/* -----------------------------------------------------------------
   12. SERVICES GRID
----------------------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.svc {
  display: flex; flex-direction: column; gap: 0.9rem;
  padding: 1.9rem 1.7rem; border-radius: var(--radius);
  background: var(--card-solid); border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(27,92,255,.35); }
.svc__ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-brand-soft); color: var(--blue-500);
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.svc:hover .svc__ico { background: var(--grad-brand); color: #fff; transform: scale(1.06) rotate(-4deg); }
.svc__ico svg { width: 24px; height: 24px; }
.svc h3 { font-size: 1.18rem; }
.svc p { color: var(--text-muted); font-size: 0.93rem; flex-grow: 1; }
.svc__more { display: inline-flex; align-items: center; gap: 0.4rem; font-family: "Sora"; font-weight: 600; font-size: 0.88rem; color: var(--blue-600); }
.svc__more svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.svc:hover .svc__more svg { transform: translateX(4px); }

/* -----------------------------------------------------------------
   13. DETAILED SERVICE FEATURE BLOCKS
----------------------------------------------------------------- */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.detail + .detail { margin-top: clamp(3.5rem, 7vw, 6rem); }
.detail--rev .detail__media { order: 2; }
.detail__media {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 4 / 3.4; border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.detail__media img { width: 100%; height: 100%; object-fit: cover; }
.detail__tag { font-family: "Space Mono"; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-500); }
.detail h3 { font-size: var(--fz-h2); margin: 0.8rem 0 1rem; }
.detail p { color: var(--text-muted); font-size: 1.05rem; }
.detail__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.4rem; margin: 1.5rem 0; }
.detail__list li { display: flex; align-items: center; gap: 0.6rem; font-weight: 500; font-size: 0.95rem; }
.detail__list li svg { width: 18px; height: 18px; color: var(--blue-500); flex: none; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.4rem; }
.tech-tags span {
  font-family: "Space Mono"; font-size: 0.76rem; padding: 0.35rem 0.7rem;
  border-radius: 8px; background: var(--card); border: 1px solid var(--border); color: var(--text-muted);
}

/* -----------------------------------------------------------------
   14. PROCESS TIMELINE
----------------------------------------------------------------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem 1.6rem; }
.timeline::before {
  content: ""; position: absolute; top: 27px; left: 4%; right: 4%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-400), var(--sky-400), transparent);
  opacity: 0.5;
}
.tl-step { position: relative; padding-top: 0; }
.tl-step__node {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--card-solid); border: 1px solid var(--border);
  font-family: "Space Mono"; font-weight: 700; color: var(--blue-600);
  position: relative; z-index: 2; box-shadow: var(--shadow-card);
}
.tl-step__node svg { width: 22px; height: 22px; color: var(--blue-500); }
.tl-step h4 { font-family: "Sora"; font-size: 1.05rem; margin: 1rem 0 0.4rem; }
.tl-step p { color: var(--text-muted); font-size: 0.9rem; }
.tl-step__idx { font-family: "Space Mono"; font-size: 0.72rem; color: var(--ink-300); letter-spacing: 0.1em; }

/* -----------------------------------------------------------------
   15. INDUSTRIES
----------------------------------------------------------------- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.ind {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.1rem 1.2rem; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--border);
  font-family: "Sora"; font-weight: 600; font-size: 0.98rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.ind:hover { transform: translateY(-4px); border-color: var(--sky-400); }
.section--ink .ind { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: #fff; }
.ind__ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-brand-soft); color: var(--blue-400); flex: none; }
.section--ink .ind__ico { background: rgba(56,189,248,.14); color: var(--sky-300); }
.ind__ico svg { width: 20px; height: 20px; }

/* -----------------------------------------------------------------
   16. TECH STACK
----------------------------------------------------------------- */
.stack-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.9rem; }
.stack-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 1.3rem 0.8rem; border-radius: var(--radius-sm);
  background: var(--card-solid); border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  text-align: center;
}
.stack-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--blue-400); }
.stack-item__ico { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue-500); }
.stack-item__ico svg { width: 32px; height: 32px; }
.stack-item span { font-family: "Space Mono"; font-size: 0.78rem; color: var(--text-muted); }

/* -----------------------------------------------------------------
   17. TESTIMONIALS
----------------------------------------------------------------- */
.testi { position: relative; }
.testi__viewport { overflow: hidden; }
.testi__track { display: flex; transition: transform 0.6s var(--ease); }
.testi__card { flex: 0 0 100%; padding: 0 0.6rem; }
.testi__inner {
  background: var(--card-solid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-card); max-width: 880px; margin-inline: auto;
}
.testi__quote-mark { font-family: "Sora"; font-size: 4rem; line-height: 0.6; color: var(--blue-400); opacity: 0.3; }
.testi__text { font-family: "Sora"; font-weight: 500; font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.45; letter-spacing: -0.01em; margin: 0.8rem 0 1.8rem; }
.testi__person { display: flex; align-items: center; gap: 1rem; }
.testi__avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-family: "Sora"; font-weight: 700; font-size: 1.2rem; flex: none; }
.testi__person b { font-family: "Sora"; display: block; }
.testi__person small { color: var(--text-muted); }
.testi__stars { display: flex; gap: 2px; margin-left: auto; color: #f5b301; }
.testi__stars svg { width: 18px; height: 18px; }
.testi__nav { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 2rem; }
.testi__btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; background: var(--card-solid); transition: transform 0.3s var(--ease), background 0.3s, color 0.3s; }
.testi__btn:hover { background: var(--grad-brand); color: #fff; transform: scale(1.05); border-color: transparent; }
.testi__btn svg { width: 20px; height: 20px; }
.testi__dots { display: flex; gap: 0.5rem; align-items: center; }
.testi__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); transition: width 0.3s, background 0.3s; }
.testi__dot.is-active { width: 26px; border-radius: 6px; background: var(--grad-brand); }

/* -----------------------------------------------------------------
   18. PORTFOLIO
----------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.2rem; }
.filter {
  padding: 0.6rem 1.2rem; border-radius: 100px; font-family: "Sora"; font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--border); background: var(--card); color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.filter.is-active, .filter:hover { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: 0 10px 24px -12px rgba(27,92,255,.7); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.work {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4 / 3.1; border: 1px solid var(--border); box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), opacity 0.4s, box-shadow 0.5s;
}
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.work:hover img { transform: scale(1.07); }
.work:hover { box-shadow: var(--shadow-soft); }
.work__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem; background: linear-gradient(to top, rgba(6,12,31,.92), rgba(6,12,31,.25) 55%, transparent);
  opacity: 0; transform: translateY(12px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.work:hover .work__overlay { opacity: 1; transform: translateY(0); }
.work__cat { font-family: "Space Mono"; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky-300); }
.work__title { font-family: "Sora"; font-weight: 700; color: #fff; font-size: 1.15rem; margin-top: 0.25rem; }
.work.is-hidden { display: none; }

/* -----------------------------------------------------------------
   19. FAQ
----------------------------------------------------------------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0.4rem; text-align: left;
  font-family: "Sora"; font-weight: 600; font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  transition: color 0.3s;
}
.faq__q:hover { color: var(--blue-600); }
.faq__icon { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; position: relative; transition: background 0.3s, border-color 0.3s; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq__icon::before { width: 13px; height: 2px; }
.faq__icon::after { width: 2px; height: 13px; transition: transform 0.3s var(--ease); }
.faq__item.is-open .faq__icon { background: var(--grad-brand); color: #fff; border-color: transparent; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a-inner { padding: 0 0.4rem 1.5rem; color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* -----------------------------------------------------------------
   20. CONTACT
----------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); }
.contact__info h2 { font-size: var(--fz-h2); }
.contact__channels { display: grid; gap: 0.9rem; margin: 2rem 0; }
.channel { display: flex; gap: 1rem; align-items: center; padding: 1rem 1.2rem; border-radius: var(--radius-sm); background: var(--card); border: 1px solid var(--border); transition: transform 0.3s var(--ease), border-color 0.3s; }
.channel:hover { transform: translateX(5px); border-color: var(--blue-400); }
.channel__ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; flex: none; }
.channel__ico svg { width: 22px; height: 22px; }
.channel small { color: var(--text-muted); display: block; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: "Space Mono"; }
.channel b { font-family: "Sora"; font-weight: 600; }
.contact__hours { display: flex; align-items: center; gap: 0.7rem; color: var(--text-muted); font-size: 0.92rem; }
.contact__hours svg { width: 18px; height: 18px; color: var(--blue-500); }
.contact__socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.soc { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--border); background: var(--card); transition: transform 0.3s var(--ease), background 0.3s, color 0.3s; }
.soc:hover { background: var(--grad-brand); color: #fff; transform: translateY(-4px); border-color: transparent; }
.soc svg { width: 20px; height: 20px; }

/* Form */
.form-card { background: var(--card-solid); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: "Sora"; font-weight: 600; font-size: 0.85rem; }
.field label .req { color: var(--blue-500); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.95rem; color: var(--text);
  padding: 0.85rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(27,92,255,.12);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #e5484d; box-shadow: 0 0 0 4px rgba(229,72,77,.1); }
.field__error { color: #e5484d; font-size: 0.78rem; min-height: 0; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; grid-column: 1/-1; font-size: 0.88rem; color: var(--text-muted); }
.consent input { width: 20px; height: 20px; accent-color: var(--blue-600); margin-top: 2px; flex: none; }
.consent a { color: var(--blue-600); font-weight: 600; }
.form-submit { grid-column: 1/-1; }
.form-submit .btn { width: 100%; justify-content: center; }
.btn .spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
.btn.is-loading .spinner { display: block; }
.btn.is-loading .btn__label, .btn.is-loading svg.arrow { display: none; }
.form-note { grid-column: 1/-1; }
.form-alert { grid-column: 1/-1; padding: 0.9rem 1.1rem; border-radius: 12px; font-size: 0.9rem; font-weight: 500; display: none; }
.form-alert.is-show { display: block; }
.form-alert--ok { background: rgba(34,197,94,.12); color: #16a34a; border: 1px solid rgba(34,197,94,.3); }
.form-alert--err { background: rgba(229,72,77,.1); color: #e5484d; border: 1px solid rgba(229,72,77,.3); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* -----------------------------------------------------------------
   21. CTA BAND
----------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.6rem, 6vw, 5rem); text-align: center; background: var(--grad-ink); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px circle at 20% 0%, rgba(27,92,255,.4), transparent 50%), radial-gradient(500px circle at 90% 100%, rgba(56,189,248,.3), transparent 45%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { font-size: var(--fz-h2); color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: #b9c6e6; margin: 1rem auto 2rem; max-width: 50ch; font-size: var(--fz-lead); }
.cta-band__btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* -----------------------------------------------------------------
   22. FOOTER
----------------------------------------------------------------- */
.footer { background: var(--navy-900); color: #c4d0ea; padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 2.4rem; }
.footer__brand .brand { color: #fff; margin-bottom: 1.1rem; }
.footer__brand p { color: #8fa0c6; font-size: 0.95rem; max-width: 30ch; }
.footer__brand .brand__name span { color: var(--sky-400); }
.footer h4 { font-family: "Sora"; color: #fff; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__links a { display: block; padding: 0.32rem 0; color: #9fb0d4; font-size: 0.93rem; transition: color 0.25s, transform 0.25s; }
.footer__links a:hover { color: var(--sky-300); transform: translateX(4px); }
.footer__news p { color: #8fa0c6; font-size: 0.92rem; margin-bottom: 1rem; }
.news-form { display: flex; gap: 0.5rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: 0.3rem 0.3rem 0.3rem 1.1rem; }
.news-form input { flex: 1; background: none; border: none; color: #fff; font: inherit; font-size: 0.9rem; }
.news-form input::placeholder { color: #7e8db0; }
.news-form input:focus { outline: none; }
.news-form button { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; flex: none; transition: transform 0.3s var(--ease); }
.news-form button:hover { transform: scale(1.08); }
.news-form button svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: clamp(2.4rem, 5vw, 3.5rem); padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom small { color: #8fa0c6; font-size: 0.86rem; }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { color: #9fb0d4; font-size: 0.86rem; }
.footer__legal a:hover { color: var(--sky-300); }

/* -----------------------------------------------------------------
   23. COOKIE BANNER / POPUPS
----------------------------------------------------------------- */
.cookie {
  position: fixed; left: clamp(14px,3vw,26px); bottom: clamp(16px,3vw,26px); z-index: 1150;
  max-width: 380px; background: var(--card-solid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-soft);
  transform: translateY(160%); transition: transform 0.5s var(--ease);
}
.cookie.is-show { transform: translateY(0); }
.cookie p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.cookie p b { color: var(--text); font-family: "Sora"; }
.cookie__btns { display: flex; gap: 0.6rem; }
.cookie .btn { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 1600; background: rgba(6,12,31,.6);
  backdrop-filter: blur(6px); display: grid; place-items: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.modal-overlay.is-show { opacity: 1; visibility: visible; }
.modal {
  background: var(--card-solid); border: 1px solid var(--border); border-radius: var(--radius-lg);
  max-width: 460px; width: 100%; padding: clamp(1.8rem, 4vw, 2.6rem); position: relative;
  box-shadow: var(--shadow-soft); transform: translateY(20px) scale(.97); transition: transform 0.45s var(--ease);
  text-align: center;
}
.modal-overlay.is-show .modal { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border); }
.modal__close svg { width: 20px; height: 20px; }
.modal__badge { width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 1.2rem; display: grid; place-items: center; background: var(--grad-brand); color: #fff; }
.modal__badge svg { width: 32px; height: 32px; }
.modal h3 { font-size: 1.5rem; }
.modal p { color: var(--text-muted); margin: 0.7rem 0 1.5rem; }
.modal .news-form { background: var(--bg); border-color: var(--border); }
.modal .news-form input { color: var(--text); }
.modal .news-form input::placeholder { color: var(--text-muted); }

/* Sticky CTA (mobile) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1080;
  display: none; gap: 0.6rem; padding: 0.7rem var(--gutter);
  background: var(--header-bg); backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
}
.sticky-cta .btn { flex: 1; justify-content: center; padding: 0.85rem; font-size: 0.9rem; }

/* Reveal helper (used by IntersectionObserver) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }
