/* ================================================================
   GLOSSIVO MEDIA — style.css
   Fonts: local system stack for fast first paint
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --bg:          #020617;
  --bg-2:        #080f1f;
  --card:        rgba(255,255,255,0.028);
  --card-hover:  rgba(255,255,255,0.05);
  --text:        #f1f5f9;
  --muted:       #94a3b8;
  --dim:         #475569;
  --cyan:        #22d3ee;
  --cyan-glow:   rgba(34,211,238,0.14);
  --cyan-border: rgba(34,211,238,0.28);
  --purple:      #a855f7;
  --purple-glow: rgba(168,85,247,0.12);
  --border:      rgba(255,255,255,0.07);
  --radius:      12px;
  --radius-lg:   20px;
  --nav-h:       72px;
  --gap:         clamp(64px,8vw,112px);
  --max-w:       1160px;
  --pad:         clamp(20px,5vw,48px);
  --font-d:      Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-b:      Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
picture { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select, button { font-family: inherit; }
figure { margin: 0; }

/* Noise grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Subtle ambient brand glow at the page top — ties body to logo */
body::before {
  content: '';
  position: fixed;
  inset: -10% -10% auto -10%;
  height: 60vh;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 22% 10%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(ellipse 55% 65% at 80% 0%, rgba(168,85,247,.10), transparent 60%);
}

/* ── Layout helpers ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: var(--gap); }

.section-header {
  text-align: center;
  margin-bottom: clamp(48px,7vw,80px);
}
.section-header .section-title { margin-bottom: 18px; }

/* ── Typography ─────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.75rem,3.5vw,2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-inline: auto;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.optional { font-weight: 400; color: var(--dim); font-size: .85em; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9375rem;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #6366f1 55%, var(--purple) 100%);
  color: #ffffff;
  box-shadow: 0 0 22px rgba(34,211,238,.22), 0 0 32px rgba(168,85,247,.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(34,211,238,.34), 0 0 48px rgba(168,85,247,.30);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--cyan-border);
  color: var(--cyan);
  background: var(--cyan-glow);
}

.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(2,6,23,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(34,211,238,.06), 0 14px 40px -20px rgba(2,6,23,.85);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.35), rgba(168,85,247,.35), transparent);
  opacity: .5;
  pointer-events: none;
}
.nav.scrolled {
  background: rgba(2,6,23,.92);
  box-shadow: 0 1px 0 rgba(34,211,238,.10), 0 18px 50px -22px rgba(2,6,23,.9);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
  padding-inline: var(--pad);
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
}
.nav-logo picture { display: flex; align-items: center; }
.nav-logo img { height: 60px; width: auto; }

.nav-inner nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-inner > .btn-primary { margin-left: auto; }
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

.nav-mobile {
  padding: 24px var(--pad) 32px;
  background: rgba(2,6,23,.96);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.nav-mobile a { font-size: 1.1rem; color: var(--muted); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  animation: orb-drift 14s ease-in-out infinite;
}
.orb-1 {
  width: 700px; height: 700px;
  top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(34,211,238,.13) 0%, transparent 65%);
  animation-delay: 0s;
}
.orb-2 {
  width: 560px; height: 560px;
  bottom: -120px; left: -120px;
  background: radial-gradient(circle, rgba(168,85,247,.11) 0%, transparent 65%);
  animation-delay: -5s;
}
.orb-3 {
  width: 420px; height: 420px;
  top: 45%; left: 38%;
  background: radial-gradient(circle, rgba(236,72,153,.07) 0%, transparent 65%);
  animation-delay: -9s;
}
@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-18px) scale(1.04); }
  66%      { transform: translate(-18px,14px) scale(0.97); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,.7), transparent);
}

/* Hero content */
.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 96px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--cyan-border);
  background: var(--cyan-glow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 36px;
}

.hero-logo {
  width: clamp(320px,56vw,480px);
  height: auto;
  margin-inline: auto;
  margin-bottom: 28px;
}
.hero-logo img {
  width: 100%;
  height: auto;
}

.hero-headline {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2rem,4vw,3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 760px;
  margin-inline: auto;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(.95rem,1.8vw,1.1rem);
  color: var(--muted);
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero entrance animations */
.anim {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up .7s ease forwards;
}
.anim-1 { animation-delay: .1s; }
.anim-2 { animation-delay: .22s; }
.anim-3 { animation-delay: .36s; }
.anim-4 { animation-delay: .48s; }
.anim-5 { animation-delay: .60s; }
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Trust Leak ──────────────────────────────────────────────────── */
.trust-leak {
  background: linear-gradient(180deg, transparent, rgba(168,85,247,.04) 50%, transparent);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: stretch;
}
.trust-statement {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.trust-statement-header .eyebrow { margin-bottom: 16px; }
.trust-statement-header .section-title { margin: 0; }
.trust-statement > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  margin: 0;
}
.trust-stat {
  padding: 22px 24px;
  border-left: 2px solid var(--cyan);
  background: linear-gradient(90deg, rgba(34,211,238,.06), transparent 80%);
  font-family: var(--font-d);
  font-size: clamp(1.05rem,1.6vw,1.2rem);
  line-height: 1.5;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -.01em;
}
.trust-journey {
  display: flex;
  flex-direction: column;
}
.trust-journey-intro {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}
.decision-path {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  position: relative;
}
.decision-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .2s, background .2s, transform .2s;
  position: relative;
}
.decision-card + .decision-card {
  margin-top: 14px;
}
.decision-card::before {
  content: "";
  position: absolute;
  left: 36px;
  top: -14px;
  width: 1px;
  height: 14px;
  background: linear-gradient(180deg, transparent, var(--border));
}
.decision-card:first-child::before { display: none; }
.decision-card:hover {
  border-color: var(--cyan-border);
  background: var(--card-hover);
  transform: translateX(2px);
}
.decision-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(34,211,238,.08);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
}
.decision-icon svg {
  width: 20px;
  height: 20px;
}
.decision-body h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
  letter-spacing: -.01em;
}
.decision-body p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.trust-journey-outro {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  padding-left: 4px;
}
.trust-conclusion {
  margin-top: clamp(36px,5vw,56px);
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--cyan-border);
  background: rgba(34,211,238,.06);
  font-family: var(--font-d);
  font-size: clamp(1rem,1.5vw,1.15rem);
  color: var(--text);
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  letter-spacing: -.01em;
}

/* ── What We Improve ─────────────────────────────────────────────── */
.improve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.improve-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}
.improve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0;
  transition: opacity .3s;
}
.improve-card:hover {
  border-color: var(--cyan-border);
  background: var(--card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.25), 0 0 30px rgba(34,211,238,.05);
}
.improve-card:hover::before { opacity: 1; }
.improve-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.improve-num {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.improve-icon {
  width: 28px; height: 28px;
  color: var(--cyan);
  flex-shrink: 0;
}
.improve-icon svg { width: 100%; height: 100%; }
.improve-card h3 {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.improve-card p {
  font-size: .865rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Checklist pair */
.checklist-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  overflow: hidden;
}
.checklist-pair::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(34,211,238,.18), transparent 40%, transparent 60%, rgba(168,85,247,.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.checklist h4 {
  font-family: var(--font-d);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
.checklist--fix h4::after,
.checklist--build h4::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 8px;
  border-radius: 2px;
}
.checklist--fix h4::after  { background: #ef4444; }
.checklist--build h4::after { background: #22c55e; }
.checklist ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.checklist ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
}
.checklist ul li::before {
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.4;
}
.checklist--fix ul li::before {
  content: '\00d7';
  color: #ef4444;
  font-size: 1.15rem;
  line-height: 1.15;
}
.checklist--build ul li::before {
  content: '\2713';
  color: #22c55e;
}

/* ── About ───────────────────────────────────────────────────────── */
.about-text .eyebrow { display: inline-block; }
.about-text .section-title { margin-bottom: 26px; }
.prose {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 1.025rem;
  line-height: 1.75;
}

.about-text--centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.about-text--centered .prose {
  text-align: center;
}

.about-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.signature-name {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.signature-role {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 4px;
}

/* ── Process ─────────────────────────────────────────────────────── */
.process {
  background: linear-gradient(180deg, transparent, rgba(34,211,238,.03) 50%, transparent);
}
.improve .section-sub {
  max-width: 780px;
}
.process-carousel {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-block: 8px 36px;
  padding-inline: max(24px, calc(50% - min(42.5vw, 400px)));
  scrollbar-width: none;
}
.process-carousel::-webkit-scrollbar { display: none; }
.process-track {
  display: flex;
  gap: clamp(28px, 3vw, 40px);
  width: max-content;
  align-items: stretch;
}
.process-slide {
  position: relative;
  flex-shrink: 0;
  width: min(85vw, 800px);
  scroll-snap-align: center;
  opacity: 0.4;
  transform: scale(0.94);
  transition: opacity .45s ease, transform .45s ease;
}
.process-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.slide-card {
  position: relative;
  height: 100%;
  border-radius: 28px;
  border: 0;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background-color: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 24px 60px -24px rgba(0,0,0,.7);
}
.process-slide[data-theme="cyan"]    .slide-card { background: linear-gradient(135deg, rgba(34,211,238,.22) 0%, rgba(59,130,246,.10) 50%, #0f172a 100%); }
.process-slide[data-theme="purple"]  .slide-card { background: linear-gradient(135deg, rgba(168,85,247,.22) 0%, rgba(236,72,153,.10) 50%, #0f172a 100%); }
.process-slide[data-theme="emerald"] .slide-card { background: linear-gradient(135deg, rgba(16,185,129,.22) 0%, rgba(20,184,166,.10) 50%, #0f172a 100%); }
.process-slide[data-theme="orange"]  .slide-card { background: linear-gradient(135deg, rgba(20,184,166,.22) 0%, rgba(56,189,248,.10) 50%, #0f172a 100%); }
.process-slide[data-theme="pink"]    .slide-card { background: linear-gradient(135deg, rgba(236,72,153,.22) 0%, rgba(168,85,247,.10) 50%, #0f172a 100%); }
.process-slide[data-theme="indigo"]  .slide-card { background: linear-gradient(135deg, rgba(99,102,241,.22) 0%, rgba(34,211,238,.10) 50%, #0f172a 100%); }
.slide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}
.slide-content {
  position: relative;
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  align-items: flex-start;
}
.slide-icon {
  flex-shrink: 0;
  position: relative;
  width: clamp(72px, 8vw, 96px);
  height: clamp(72px, 8vw, 96px);
  border-radius: 50%;
  border: 2px solid rgba(34,211,238,.4);
  background: linear-gradient(135deg, rgba(34,211,238,.22), rgba(168,85,247,.22));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  isolation: isolate;
}
.slide-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(34,211,238,.32);
  filter: blur(22px);
  z-index: -1;
}
.slide-icon svg {
  width: clamp(32px, 4vw, 44px);
  height: clamp(32px, 4vw, 44px);
}
.slide-body {
  flex: 1;
  min-width: 0;
}
.slide-num {
  display: inline-block;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.slide-body h3 {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.slide-body p {
  font-size: clamp(.95rem, 1.1vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15,23,42,.95);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
  padding: 0;
}
.slide-arrow:hover {
  background: rgba(30,41,59,1);
  border-color: var(--cyan-border);
  color: var(--cyan);
}
.slide-arrow svg { width: 18px; height: 18px; }
.slide-arrow--prev { left: -22px; }
.slide-arrow--next { right: -22px; }
.process-slide:first-child .slide-arrow--prev,
.process-slide:last-child  .slide-arrow--next { display: none; }
.process-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
}
.process-cta-note {
  font-size: .88rem;
  color: var(--muted);
  max-width: 460px;
}

/* ── Work / Portfolio ────────────────────────────────────────────── */
.work {
  background: linear-gradient(180deg, transparent, rgba(168,85,247,.03) 50%, transparent);
}
.projects {
  display: flex;
  flex-direction: column;
  gap: clamp(64px,9vw,110px);
}
.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
}
.project--flip { direction: rtl; }
.project--flip > * { direction: ltr; }

.project-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px var(--border);
  pointer-events: none;
}
.project-img picture,
.project-img img {
  display: block;
  width: 100%;
}
.project-img img {
  width: 100%;
  height: auto;
  transition: transform .55s ease;
}
.project:hover .project-img img { transform: scale(1.025); }

.project-info .eyebrow { display: block; margin-bottom: 10px; }
.project-info h3 {
  font-family: var(--font-d);
  font-size: clamp(1.4rem,2.5vw,1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.project-info p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

/* ── Contact ─────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}
.form-optional {
  font-weight: 400;
  color: var(--dim);
  margin-left: 4px;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--dim); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--cyan-border);
  box-shadow: 0 0 0 3px rgba(34,211,238,.08);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-field select option {
  background: #0f172a;
  color: var(--text);
}
.form-status {
  font-size: .875rem;
  min-height: 1.4em;
  color: var(--cyan);
  text-align: center;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Contact aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .3s, background .3s, transform .3s;
}
a.info-card:hover {
  border-color: var(--cyan-border);
  background: var(--card-hover);
  transform: translateX(4px);
}
.info-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--cyan);
}
.info-icon svg { width: 100%; height: 100%; }
.info-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dim);
  margin-bottom: 2px;
}
.info-value {
  font-weight: 500;
  font-size: .9rem;
}
.info-card--static { pointer-events: none; }

.response-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--cyan-border);
  background: rgba(34,211,238,.06);
  font-size: .875rem;
  color: var(--muted);
}
.response-badge svg { flex-shrink: 0; color: var(--cyan); }
.response-badge strong { color: var(--cyan); }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding-top: clamp(48px,6vw,80px);
  padding-bottom: 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: .875rem;
  color: var(--dim);
  line-height: 1.7;
  max-width: 340px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-family: var(--font-d);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: .875rem;
  color: var(--dim);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: var(--dim); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: .78rem;
  color: var(--dim);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--muted); }

/* ── Scroll reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .project,
  .project--flip   { grid-template-columns: 1fr; direction: ltr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid      { grid-template-columns: 1fr; }
  .trust-statement { height: auto; justify-content: flex-start; gap: 28px; }
  .improve-grid    { grid-template-columns: 1fr 1fr; }
  .checklist-pair  { grid-template-columns: 1fr; padding: 28px 28px; gap: 28px; }
}

@media (max-width: 640px) {
  .nav-links,
  .nav-inner > .btn-primary { display: none; }
  .nav-burger              { display: flex; }
  .hero-ctas               { flex-direction: column; align-items: center; }
  .form-row                { grid-template-columns: 1fr; }
  .footer-nav              { grid-template-columns: 1fr; }
  .footer-bottom           { flex-direction: column; text-align: center; }
  .footer-legal            { justify-content: center; }
  .improve-grid            { grid-template-columns: 1fr; }
  .checklist-pair          { padding: 24px 20px; gap: 22px; }
  .slide-content           { flex-direction: column; gap: 18px; }
  .slide-arrow             { display: none; }
}

/* ================================================================
   INNER PAGES — V2 (2026-05-05) — site SEO build-out
   ================================================================ */

/* ── Inner page reading width ───────────────────────────────────── */
:root { --reading-w: 720px; }

/* ── Inner-Hero (V2 — richer than V1) ──────────────────────────── */
.inner-hero {
  position: relative;
  padding-block: clamp(80px, 12vw, 120px) clamp(48px, 7vw, 80px);
  min-height: clamp(420px, 50vh, 560px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(8,15,31,0) 0%, rgba(8,15,31,0.4) 100%);
  border-bottom: 1px solid rgba(34, 211, 238, 0.28);
  overflow: hidden;
}
.inner-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-hero-glow {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(34,211,238,0.18), transparent 60%);
  filter: blur(40px);
}
.inner-hero-body {
  position: relative;
  max-width: var(--reading-w);
  margin-inline: auto;
  text-align: center;
  padding-top: 24px;
}
.inner-hero h1 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 auto 22px;
  max-width: 22ch;
  text-align: center;
}
.inner-hero .inner-hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 32px;
  text-align: center;
}
.inner-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Inner-row ──────────────────────────────────────────────────── */
.inner-row { padding-block: clamp(64px, 9vw, 112px); }
.inner-row .container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.inner-row.reverse .container {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}
.inner-row.reverse .inner-row-content { order: 2; }
.inner-row.reverse .inner-row-image { order: 1; }
.inner-row-content h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin-bottom: 18px;
}
.inner-row-content h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  margin-block: 24px 8px;
}
.inner-row-content p { color: var(--muted); font-size: 1.02rem; margin-bottom: 14px; }
.inner-row-content p:last-child { margin-bottom: 0; }
.inner-row-image picture,
.inner-row-image img {
  display: block;
  width: 100%;
}
.inner-row-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .inner-row .container,
  .inner-row.reverse .container { grid-template-columns: 1fr; }
  .inner-row.reverse .inner-row-content,
  .inner-row.reverse .inner-row-image { order: unset; }
}

/* ── Image placeholder (designed, not a 404) ────────────────────── */
.image-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--cyan-border);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(34,211,238,0.04) 12px, rgba(34,211,238,0.04) 24px),
    var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}
.image-placeholder::before {
  content: attr(data-label);
}

/* ── Callout card (T3) ──────────────────────────────────────────── */
.callout-section { padding-block: clamp(48px, 7vw, 80px); }
.callout-section .container { max-width: var(--reading-w); }
.callout-card {
  border-left: 3px solid var(--cyan);
  background: rgba(34,211,238,0.04);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout-card p {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}

/* ── Stat trio (T4) — bigger than V1 stat-strip ────────────────── */
.stat-trio { padding-block: clamp(64px, 9vw, 112px); }
.stat-trio .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
}
.stat-item { text-align: left; }
.stat-item .stat-num {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.stat-item .stat-context {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .stat-trio .container { grid-template-columns: 1fr; }
}

/* ── Bullet stack (T5) ──────────────────────────────────────────── */
.bullet-stack-section { padding-block: clamp(64px, 9vw, 112px); }
.bullet-stack-section .container { max-width: var(--reading-w); }
.bullet-stack { list-style: none; padding: 0; margin: 32px 0 0; }
.bullet-stack > li {
  position: relative;
  padding: 18px 0 18px 32px;
  border-bottom: 1px solid var(--border);
}
.bullet-stack > li:last-child { border-bottom: 0; }
.bullet-stack > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}
.bullet-stack > li h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--text);
}
.bullet-stack > li p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── FAQ accordion (kept from V1) ───────────────────────────────── */
.faq-list { padding-block: clamp(48px, 7vw, 80px); }
.faq-list .container { max-width: 800px; }
.faq-list h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 32px;
  text-align: center;
}
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.faq-question .faq-icon { width: 18px; height: 18px; flex-shrink: 0; position: relative; }
.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: ''; position: absolute; background: var(--cyan); transition: transform .2s ease;
}
.faq-question .faq-icon::before { inset: 8px 0; height: 2px; }
.faq-question .faq-icon::after { inset: 0 8px; width: 2px; }
.faq-item[data-open="true"] .faq-icon::after { transform: scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item[data-open="true"] .faq-answer { max-height: 600px; padding-bottom: 22px; }

/* ── Related work — 2-up at desktop (V2 fix to V1 cramping) ────── */
.projects.projects--inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.projects.projects--inner.three-up {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
}
.projects.projects--inner .project { display: block; }
.projects.projects--inner .project-link { display: block; color: inherit; text-decoration: none; }
.projects.projects--inner .project-img picture,
.projects.projects--inner .project-img img {
  display: block;
  width: 100%;
}
.projects.projects--inner .project-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.projects.projects--inner .project-info { padding: 18px 0 0; }
.projects.projects--inner h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 8px 0;
}
.projects.projects--inner p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 900px) {
  .projects.projects--inner.three-up { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .projects.projects--inner,
  .projects.projects--inner.three-up { grid-template-columns: 1fr; }
}

/* ── Testimonial card (real quote, when received) ──────────────── */
.testimonial-card {
  display: block;
  margin: 0 auto;
  max-width: var(--reading-w);
  padding: 32px 36px;
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34,211,238,0.04), rgba(168,85,247,0.04));
  font-family: var(--font-d);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}
.testimonial-card cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Testimonial pending placeholder ────────────────────────────── */
.testimonial-pending {
  display: block;
  margin: 0 auto;
  max-width: var(--reading-w);
  padding: 28px 32px;
  border: 1px dashed var(--cyan-border);
  border-radius: var(--radius);
  background: rgba(34,211,238,0.03);
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}
.testimonial-pending::before {
  content: "★ ";
  color: var(--cyan);
}

/* ── CTA strip (kept) ───────────────────────────────────────────── */
.cta-strip {
  padding-block: clamp(72px, 10vw, 120px);
  position: relative;
  border-top: 1px solid rgba(34, 211, 238, 0.28);
  border-bottom: 1px solid rgba(34, 211, 238, 0.28);
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 22% 30%, rgba(34,211,238,.12), transparent 60%),
    radial-gradient(ellipse 55% 65% at 78% 70%, rgba(168,85,247,.12), transparent 60%);
  pointer-events: none;
}
.cta-strip .container { position: relative; max-width: var(--reading-w); text-align: center; }
.cta-strip h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 14px;
}
.cta-strip p { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }

/* ── Nav submenu (Section 9.1) ──────────────────────────────────── */
.nav-links .has-submenu { position: relative; }
.nav-links .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #080f1f;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  margin-top: 14px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 120;
  list-style: none;
  box-shadow: 0 18px 50px rgba(0,0,0,.46);
}
.nav-links .has-submenu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-links .has-submenu:hover .submenu,
.nav-links .has-submenu:focus-within .submenu { display: flex; }
.nav-links .submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-links .submenu a:hover { background: var(--card-hover); color: var(--text); }
@media (max-width: 920px) { .nav-links { display: none; } }

/* ── Visually hidden (sr-only) ──────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── btn-lg ─────────────────────────────────────────────────────── */
.btn-lg {
  padding: 14px 24px;
  font-size: 1rem;
  align-self: flex-start;
}

/* ── Book-a-call page ───────────────────────────────────────────── */
.book-call-section { padding-block: clamp(16px, 2vw, 24px) clamp(48px, 7vw, 96px); }
.book-call-container {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.book-call-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
}
.book-call-aside {
  background: linear-gradient(160deg, rgba(34,211,238,0.05), rgba(168,85,247,0.04));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 36px);
  position: sticky;
  top: 110px;
}
.book-call-aside h3 {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--text);
}
.book-call-steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0 0 22px;
}
.book-call-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 38px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.book-call-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(34,211,238,0.12);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-call-steps li strong { color: var(--text); }
.book-call-aside-note {
  color: var(--dim);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 860px) {
  .book-call-container { grid-template-columns: 1fr; }
  .book-call-aside { position: static; }
}

