/* ===================================================================
   TexTop Choice — Futuristic Modern Design System
   Hybrid: dark glass + neon glow  ×  light tech-minimal
   =================================================================== */

:root {
  /* Brand */
  --navy: #0D2137;
  --navy-deep: #06101F;
  --navy-mid: #0A1A2E;
  --gold: #C8922A;
  --gold-bright: #E0A430;

  /* Electric accent */
  --cyan: #38E1FF;
  --cyan-deep: #1FA8E0;
  --cyan-glow: rgba(56, 225, 255, 0.45);

  /* Light surfaces */
  --light: #F4F8FC;
  --light-alt: #EAF1F9;
  --white: #FFFFFF;

  /* Text */
  --on-dark: #EAF2FB;
  --on-dark-muted: rgba(234, 242, 251, 0.6);
  --on-light: #0D2137;
  --on-light-muted: #56697E;

  /* Glass */
  --glass-dark: rgba(255, 255, 255, 0.045);
  --glass-dark-border: rgba(255, 255, 255, 0.1);
  --glass-light: rgba(255, 255, 255, 0.7);

  /* Type scale */
  --text-hero: clamp(2.75rem, 1.2rem + 6vw, 6rem);
  --text-section: clamp(2rem, 1rem + 3vw, 3.4rem);
  --text-lead: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);

  /* Spacing */
  --space-section: clamp(5rem, 3rem + 6vw, 9rem);
  --pad-x: clamp(1.5rem, 0.5rem + 4vw, 5rem);

  /* Motion */
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 700ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --radius: 18px;
  --radius-lg: 26px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy-deep);
  color: var(--on-dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

/* ── Ambient animated grid (fixed backdrop) ── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(var(--navy-deep), var(--navy-mid)),
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(56,225,255,0.05) 59px 60px),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(56,225,255,0.05) 59px 60px);
  background-blend-mode: normal, screen, screen;
}
.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px circle at 80% 10%, rgba(56,225,255,0.12), transparent 60%),
    radial-gradient(600px circle at 10% 90%, rgba(200,146,42,0.08), transparent 60%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-30px, 20px, 0); }
}

/* ── Shared layout ── */
.section { padding: var(--space-section) var(--pad-x); position: relative; }
.section.light { background: var(--light); color: var(--on-light); }
.section.dark  { background: transparent; }
.wrap { max-width: 1240px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 18px;
}
.light .eyebrow { color: var(--cyan-deep); }
.dark .eyebrow { color: var(--cyan); }
.eyebrow::before {
  content: ''; width: 26px; height: 1px;
  background: currentColor; opacity: 0.7;
}

.section-title { font-size: var(--text-section); font-weight: 700; margin-bottom: 18px; }
.section-lead { font-size: var(--text-lead); max-width: 620px; color: var(--on-dark-muted); }
.light .section-lead { color: var(--on-light-muted); }

.glow-text { color: var(--cyan); text-shadow: 0 0 24px var(--cyan-glow); }
.gold-text { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.98rem;
  padding: 16px 30px; border-radius: 100px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform var(--dur) var(--ease-out-expo), box-shadow var(--dur), background var(--dur);
}
.btn-primary {
  background: linear-gradient(120deg, var(--cyan), var(--cyan-deep));
  color: var(--navy-deep);
  box-shadow: 0 8px 30px rgba(56,225,255,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(56,225,255,0.5); }
.btn-ghost {
  background: var(--glass-dark);
  color: var(--on-dark);
  border: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }
.light .btn-ghost { color: var(--navy); border-color: rgba(13,33,55,0.18); background: rgba(13,33,55,0.03); }
.light .btn-ghost:hover { border-color: var(--cyan-deep); color: var(--cyan-deep); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad-x);
  background: rgba(6, 16, 31, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(56,225,255,0.12);
  transition: padding var(--dur), background var(--dur);
}
nav.scrolled { padding: 10px var(--pad-x); background: rgba(6, 16, 31, 0.9); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 88px; width: auto; border-radius: 12px; }
.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 1.95rem; line-height: 1;
  letter-spacing: 0.03em;
  color: var(--on-dark);
}
.brand-name b { color: var(--gold); font-weight: 600; font-style: italic; letter-spacing: 0.01em; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--on-dark-muted); text-decoration: none;
  transition: color var(--dur-fast); position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--cyan); transition: width var(--dur);
}
.nav-links a:hover { color: var(--on-dark); }
.nav-links a:hover:not(.nav-cta)::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: var(--navy-deep) !important;
  padding: 10px 22px; border-radius: 100px; font-weight: 600;
  transition: background var(--dur), transform var(--dur);
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-2px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  padding: 160px var(--pad-x) 90px;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: -1;
}
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-media video { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-media video.is-playing { opacity: 0.6; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--navy-deep) 8%, rgba(6,16,31,0.65) 50%, rgba(6,16,31,0.3) 100%),
    linear-gradient(0deg, var(--navy-deep) 2%, transparent 40%);
}
.hero-inner { max-width: 760px; position: relative; }
.hero h1 {
  font-size: var(--text-hero); font-weight: 700;
  margin: 22px 0 26px; color: var(--white);
}
.hero h1 em { font-style: normal; color: var(--cyan); text-shadow: 0 0 30px var(--cyan-glow); }
.hero-lead {
  font-size: var(--text-lead); color: rgba(234,242,251,0.78);
  max-width: 560px; margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 46px;
  max-width: 620px;
}
.chip {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  padding: 8px 16px; border-radius: 100px;
  background: var(--glass-dark); border: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(8px); color: rgba(234,242,251,0.85);
  transition: border-color var(--dur), color var(--dur), transform var(--dur);
}
.chip:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* ── SERVICES (light bento) ── */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 56px;
}
.svc {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 264px;
  border: 1px solid rgba(13,33,55,0.1);
  border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform var(--dur) var(--ease-out-expo), box-shadow var(--dur), border-color var(--dur);
}
/* Photographic background */
.svc-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
/* Legibility gradient over the photo */
.svc::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(6,16,31,0.95) 0%, rgba(6,16,31,0.7) 32%, rgba(6,16,31,0.18) 66%, rgba(6,16,31,0.28) 100%);
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 26px 64px rgba(6,16,31,0.45); border-color: var(--cyan); }
.svc:hover .svc-bg { transform: scale(1.07); }
.svc-ico {
  position: absolute; top: 18px; left: 18px; z-index: 1;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.25rem;
  background: rgba(6,16,31,0.55); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.svc-body { padding: 22px 24px; position: relative; z-index: 1; }
.svc h3 { font-size: 1.12rem; font-weight: 600; color: #fff; margin-bottom: 7px; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.svc p { font-size: 0.86rem; color: rgba(234,242,251,0.85); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.svc.wide { grid-column: span 2; }
.svc-feature {
  grid-column: span 2; grid-row: span 2; min-height: 100%;
  border: 1px solid rgba(56,225,255,0.3);
}
.svc-feature::after {
  background: linear-gradient(to top, rgba(6,16,31,0.96) 0%, rgba(6,16,31,0.6) 45%, rgba(6,16,31,0.2) 100%),
              linear-gradient(120deg, rgba(13,33,55,0.5), transparent 60%);
}
.svc-feature .svc-body { padding: 34px 32px; }
.svc-feature h3 { color: var(--white); font-size: 1.7rem; margin-bottom: 12px; }
.svc-feature p { color: rgba(234,242,251,0.85); font-size: 0.98rem; }

/* ── CAPABILITIES (dark glow) ── */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.cap {
  background: var(--glass-dark);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  backdrop-filter: blur(10px);
  transition: transform var(--dur) var(--ease-out-expo), border-color var(--dur), box-shadow var(--dur);
}
.cap:hover { transform: translateY(-8px); border-color: rgba(56,225,255,0.5); box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(56,225,255,0.2); }
.cap-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--cyan); margin-bottom: 22px;
}
.cap h3 { font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.cap p { font-size: 0.95rem; color: var(--on-dark-muted); }

/* ── STATS strip ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 58px; }
.stat {
  text-align: center; padding: 28px 18px;
  border-left: 1px solid rgba(56,225,255,0.18);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem); color: var(--white);
}
.stat-num b { color: var(--cyan); }
.stat-label { font-size: 0.82rem; color: var(--on-dark-muted); margin-top: 4px; letter-spacing: 0.02em; }

/* ── OUR WORK / INSTAGRAM (dark) ── */
.work-head { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-end; }
.ig-handle {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.96rem;
  color: var(--on-dark); text-decoration: none;
  padding: 13px 24px; border-radius: 100px;
  background: linear-gradient(120deg, rgba(56,225,255,0.14), rgba(200,146,42,0.14));
  border: 1px solid var(--glass-dark-border); backdrop-filter: blur(8px);
  transition: transform var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.ig-handle:hover { transform: translateY(-3px); border-color: var(--cyan); box-shadow: 0 12px 36px rgba(56,225,255,0.25); }
.ig-handle svg { width: 20px; height: 20px; }

.ig-feed { margin-top: 52px; }
.lightwidget-widget { width: 100%; border: 0; overflow: hidden; border-radius: var(--radius-lg); }

/* Fallback gallery (shown until the live widget ID is set) */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ig-tile {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: var(--radius); text-decoration: none;
  border: 1px solid var(--glass-dark-border);
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: grid; place-items: center;
  transition: transform var(--dur) var(--ease-out-expo), border-color var(--dur), box-shadow var(--dur);
}
.ig-tile::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(380px circle at 30% 20%, rgba(56,225,255,0.16), transparent 60%),
              radial-gradient(360px circle at 80% 90%, rgba(200,146,42,0.12), transparent 60%);
  opacity: 0.8; transition: opacity var(--dur);
}
.ig-tile:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: 0 26px 64px rgba(0,0,0,0.45); }
.ig-tile:hover::before { opacity: 1; }
.ig-tile-inner { position: relative; z-index: 1; text-align: center; padding: 18px; }
.ig-tile-inner .em { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.ig-tile-inner .lbl { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--on-dark); }
.ig-tile-inner .sub { display: block; font-size: 0.76rem; color: var(--cyan); margin-top: 6px; letter-spacing: 0.04em; }
.ig-note { margin-top: 22px; font-size: 0.85rem; color: var(--on-dark-muted); text-align: center; }
.ig-note a { color: var(--cyan); text-decoration: none; }
@media (max-width: 760px) { .ig-grid { grid-template-columns: 1fr 1fr; } }

/* ── WHO WE SERVE (light) ── */
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 52px; }
.serve {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid rgba(13,33,55,0.07);
  border-radius: var(--radius); padding: 26px 28px;
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
}
.serve:hover { transform: translateX(6px); border-color: var(--cyan-deep); box-shadow: 0 14px 40px rgba(13,33,55,0.08); }
.serve-ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.3rem;
  background: var(--light-alt);
}
.serve h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
.serve p { font-size: 0.86rem; color: var(--on-light-muted); }

/* ── PROCESS (dark) ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0.4;
}
.step { text-align: center; }
.step-num {
  width: 62px; height: 62px; margin: 0 auto 20px;
  border-radius: 50%; display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem;
  color: var(--cyan); background: var(--navy-mid);
  border: 1px solid rgba(56,225,255,0.4);
  box-shadow: 0 0 0 6px var(--navy-deep), 0 0 26px rgba(56,225,255,0.25);
  position: relative; z-index: 1; transition: transform var(--dur), box-shadow var(--dur);
}
.step:hover .step-num { transform: translateY(-4px); box-shadow: 0 0 0 6px var(--navy-deep), 0 0 40px rgba(56,225,255,0.55); }
.step h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; }
.step p { font-size: 0.86rem; color: var(--on-dark-muted); }

/* ── FAQ (light) ── */
.faq-list { margin-top: 50px; max-width: 860px; }
.faq-item { border-bottom: 1px solid rgba(13,33,55,0.1); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 26px 56px 26px 0;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--navy);
  transition: color var(--dur-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--cyan-deep); }
.faq-item summary::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.7rem; font-weight: 300; color: var(--cyan-deep); transition: transform var(--dur);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--cyan-deep); outline-offset: 4px; border-radius: 4px; }
.faq-answer { padding: 0 56px 28px 0; font-size: 0.97rem; line-height: 1.75; color: var(--on-light-muted); }

/* ── CONTACT (dark) ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 20px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-row { display: flex; align-items: center; gap: 16px; color: rgba(234,242,251,0.82); font-size: 0.96rem; }
.contact-row .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--glass-dark); border: 1px solid var(--glass-dark-border); font-size: 1.1rem; flex-shrink: 0; }
.contact-row a { color: var(--cyan); text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }

.form {
  background: var(--glass-dark); border: 1px solid var(--glass-dark-border);
  border-radius: var(--radius-lg); padding: 40px 36px; backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-muted); font-family: 'Space Grotesk', sans-serif; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-dark-border);
  border-radius: 11px; padding: 13px 15px; color: var(--on-dark);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; outline: none; width: 100%;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(56,225,255,0.15); }
.field select option { background: var(--navy); }
.field textarea { resize: vertical; min-height: 110px; }
.form .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep); border-top: 1px solid rgba(56,225,255,0.12);
  padding: 56px var(--pad-x) 40px;
}
.footer-wrap { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 104px; width: auto; border-radius: 14px; }
.footer-brand .ft-name { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.7rem; line-height: 1; letter-spacing: 0.03em; color: var(--white); }
.footer-brand .ft-name b { color: var(--gold); font-weight: 600; font-style: italic; }
.footer-brand .ft-tag { font-size: 0.78rem; color: var(--on-dark-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links { display: flex; gap: 26px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.86rem; color: var(--on-dark-muted); text-decoration: none; transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { width: 100%; text-align: center; font-size: 0.8rem; color: rgba(234,242,251,0.4); margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity var(--dur-slow) var(--ease-out-expo), transform var(--dur-slow) var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .svc-feature { grid-column: span 2; grid-row: span 1; }
  .cap-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6,16,31,0.97); padding: 24px var(--pad-x);
    border-bottom: 1px solid rgba(56,225,255,0.15);
  }
  .nav-toggle { display: grid; place-items: center; width: 40px; height: 40px; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ''; display: block; width: 22px; height: 2px; background: var(--on-dark); position: relative; transition: var(--dur);
  }
  .nav-toggle span::before { position: absolute; top: -7px; }
  .nav-toggle span::after { position: absolute; top: 7px; }
  .serve-grid, .bento, .form-row { grid-template-columns: 1fr; }
  .svc.wide, .svc-feature { grid-column: span 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
