/* ─────────────────────────────────────────────
   Mova Tech – Apple-inspired design system
   ───────────────────────────────────────────── */

/* ── Design tokens ── */
:root {
  --brand:              #0071e3;
  --brand-strong:       #0077ed;
  --brand-soft:         rgba(0, 113, 227, 0.08);
  --accent:             #06b6d4;
  --success:            #29a745;

  --bg:                 #fbfbfd;
  --bg-secondary:       #f5f5f7;
  --bg-tertiary:        #ffffff;
  --bg-elevated:        rgba(255, 255, 255, 0.72);
  --bg-elevated-strong: #ffffff;
  --bg-inverse:         #1d1d1f;

  --text:               #1d1d1f;
  --text-strong:        #000000;
  --text-on-inverse:    #f5f5f7;
  --muted:              #6e6e73;
  --muted-strong:       #515154;

  --border:             rgba(0, 0, 0, 0.08);
  --border-soft:        rgba(0, 0, 0, 0.06);

  --shadow:             0 1px 2px rgba(0,0,0,0.04), 0 4px 14px rgba(0,0,0,0.05);
  --shadow-lg:          0 6px 24px rgba(0,0,0,0.06), 0 24px 60px rgba(0,0,0,0.08);

  --nav-bg:             rgba(251, 251, 253, 0.72);
  --nav-text:           #1d1d1f;
  --nav-text-muted:     #515154;

  --input-bg:           #ffffff;

  --radius-sm:          12px;
  --radius:             18px;
  --radius-lg:          22px;
  --radius-xl:          28px;
  --radius-pill:        980px;

  color-scheme: light;
}

:root[data-theme="dark"] {
  --brand:              #2997ff;
  --brand-strong:       #47a4ff;
  --brand-soft:         rgba(41, 151, 255, 0.12);
  --accent:             #22d3ee;
  --success:            #34c759;

  --bg:                 #000000;
  --bg-secondary:       #1d1d1f;
  --bg-tertiary:        #161617;
  --bg-elevated:        rgba(29, 29, 31, 0.72);
  --bg-elevated-strong: #1d1d1f;
  --bg-inverse:         #f5f5f7;

  --text:               #f5f5f7;
  --text-strong:        #ffffff;
  --text-on-inverse:    #1d1d1f;
  --muted:              #a1a1a6;
  --muted-strong:       #c7c7cc;

  --border:             rgba(255, 255, 255, 0.10);
  --border-soft:        rgba(255, 255, 255, 0.06);

  --shadow:             0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg:          0 12px 36px rgba(0,0,0,0.55), 0 30px 80px rgba(0,0,0,0.6);

  --nav-bg:             rgba(0, 0, 0, 0.72);
  --nav-text:           #f5f5f7;
  --nav-text-muted:     #a1a1a6;

  --input-bg:           #1d1d1f;

  color-scheme: dark;
}

/* ── Base ── */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-feature-settings: "cv11", "ss01", "ss03";
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0;
}

.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6 {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
}

/* Apple-style oversized headlines */
.display-1 { font-size: clamp(3rem, 7vw, 5.5rem) !important; }
.display-2 { font-size: clamp(2.75rem, 6vw, 4.75rem) !important; }
.display-3 { font-size: clamp(2.5rem, 5.5vw, 4.25rem) !important; letter-spacing: -0.04em; }
.display-4 { font-size: clamp(2rem, 4vw, 3.25rem) !important; }
.display-5 { font-size: clamp(1.75rem, 3vw, 2.5rem) !important; }
.display-6 { font-size: clamp(1.375rem, 2.25vw, 1.875rem) !important; }

h1, .h1 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h2, .h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h3, .h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4, .h4 { font-size: 1.1875rem; font-weight: 600; }
h5, .h5 { font-size: 1.0625rem; font-weight: 600; }

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  line-height: 1.45;
  font-weight: 400;
  color: var(--muted-strong);
  letter-spacing: -0.012em;
}

p { line-height: 1.55; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 3px; }

img { max-width: 100%; height: auto; }

::selection { background: rgba(0, 113, 227, 0.22); color: var(--text); }

/* ── Skip link ── */
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 1000;
  padding: 0.65rem 1rem; border-radius: var(--radius-sm);
  background: var(--brand); color: #fff;
  font-size: 0.875rem; font-weight: 500;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Section spacing ── */
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin-bottom: 0.25rem;
}

/* ── Section heading ── */
.section-heading { max-width: 48rem; }

/* ── Text utilities ── */
.text-gradient {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-muted-custom { color: var(--muted); }
.fw-bold { font-weight: 600 !important; }
.fw-semibold { font-weight: 600 !important; }

/* ── Surfaces ── */
.surface {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: var(--shadow);
}

.surface-strong {
  background: var(--bg-elevated-strong);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

/* ── Navbar (Apple-style global nav) ── */
header.sticky-top { z-index: 1030; }

.navbar-blur {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-soft);
  min-height: 48px;
  padding: 0;
}

.navbar-blur .container {
  padding-top: 0.35rem !important;
  padding-bottom: 0.35rem !important;
}

.site-logo { width: 120px; height: auto; }

.navbar-brand { padding: 0.25rem 0; }

.navbar-nav .nav-link {
  color: var(--nav-text-muted);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  padding: 0.4rem 0.75rem !important;
  border-radius: 6px;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.88;
}
.navbar-nav .nav-link:hover  { color: var(--nav-text); opacity: 1; }
.navbar-nav .nav-link.active { color: var(--nav-text); opacity: 1; font-weight: 500; }

.nav-action-group { display: flex; align-items: center; gap: 0.5rem; }

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0 0.7rem; height: 2rem;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  background: transparent; color: var(--nav-text-muted);
  font-size: 0.78rem; font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.theme-toggle:hover { color: var(--nav-text); border-color: var(--nav-text-muted); }

.nav-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; padding: 0;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: transparent; color: var(--nav-text); font-size: 1.15rem;
}

/* ── Buttons (Apple-style pill) ── */
.btn-brand {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  font-weight: 400;
  font-size: 1.0625rem;
  letter-spacing: -0.012em;
  line-height: 1.18;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  min-height: 44px;
}
.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: var(--brand-strong);
  text-decoration: none;
}
.btn-brand:active { transform: scale(0.98); }

.btn-outline-brand {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  font-weight: 400;
  font-size: 1.0625rem;
  letter-spacing: -0.012em;
  line-height: 1.18;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  min-height: 44px;
}
.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
  text-decoration: none;
}

/* Subtle text-link CTA, Apple style */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--brand);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: -0.012em;
  text-decoration: none;
}
.link-cta:hover { text-decoration: underline; text-underline-offset: 4px; }
.link-cta::after { content: " ›"; font-size: 1.1em; line-height: 1; }

/* CONTACT US tiny pill in navbar */
.navbar-blur .btn-brand {
  padding: 0.35rem 0.95rem;
  font-size: 0.78rem;
  min-height: 0;
  font-weight: 500;
  letter-spacing: 0;
}

/* ── Stat chips (hero) ── */
.stat-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.9rem; border-radius: var(--radius-pill);
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  color: var(--muted-strong); font-size: 0.875rem; font-weight: 400;
  letter-spacing: -0.01em;
}

/* ── Icon badge ── */
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand); font-size: 1.125rem; flex-shrink: 0;
}

/* ── Hero section (Apple-style centered headline) ── */
.hero-section {
  position: relative;
  min-height: calc(100svh - 80px);
  display: flex;
  align-items: center;
  padding: 3rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 113, 227, 0.06), transparent 70%),
    var(--bg);
  overflow: hidden;
}
.hero-section > .container { width: 100%; }
:root[data-theme="dark"] .hero-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(41, 151, 255, 0.10), transparent 70%),
    var(--bg);
}

.hero-stage { max-width: 60rem; margin: 0 auto; }

.hero-stage .eyebrow {
  color: var(--brand);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.hero-stage h1 {
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-lead {
  font-size: clamp(1.1875rem, 1.85vw, 1.5rem);
  line-height: 1.35;
  color: var(--muted-strong);
  font-weight: 400;
  letter-spacing: -0.014em;
  max-width: 44rem;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (max-width: 575.98px) {
  .hero-section { padding: 2.5rem 0; }
  .hero-actions { gap: 1.25rem; }
}

/* ── Hero panel (legacy small card) ── */
.hero-panel {
  position: relative;
  padding: 2.25rem;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

/* ── Hero spotlight ── */
.hero-spotlight {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
}

/* ── Card system (Apple-tile-inspired) ── */
.feature-card,
.metric-card,
.solution-card,
.tech-card,
.team-card,
.contact-card,
.policy-card,
.article-card,
.comment-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.partner-card,
.customer-logo-card {
  height: 100%;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease;
}

.feature-card:hover,
.metric-card:hover,
.solution-card:hover,
.tech-card:hover,
.team-card:hover,
.partner-card:hover,
.customer-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Feature card PNG icons ── */
.feature-card > img {
  display: block;
  width: 3.5rem; height: 3.5rem;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

/* ── Story cards (portfolio) ── */
.story-card {
  height: 100%; padding: 0; overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  background: var(--bg-secondary);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

/* ── Partner / customer logo cards ── */
.partner-card,
.customer-logo-card {
  display: flex; align-items: center; justify-content: center;
  min-height: 7rem;
}
.partner-card img,
.customer-logo-card img {
  max-height: 3.5rem; width: auto; object-fit: contain;
  opacity: 0.9; filter: none;
  transition: opacity 0.25s, transform 0.25s;
}
.partner-card:hover img,
.customer-logo-card:hover img { opacity: 1; transform: scale(1.04); }

:root[data-theme="dark"] .partner-card img,
:root[data-theme="dark"] .customer-logo-card img {
  filter: brightness(1.1);
}

/* ── Testimonial ── */
.testimonial-grid { align-items: center; }
.testimonial-image {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.quote-mark {
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--brand);
  opacity: 0.85;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

/* ── Metric cards ── */
.metric-card {
  padding: 1.5rem;
  background: transparent;
  border: none;
}
.metric-card strong {
  display: block;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.metric-card span {
  display: block;
  font-size: 0.9375rem;
  color: var(--muted);
  letter-spacing: -0.01em;
}

/* ── Check / info / policy lists ── */
.check-list, .info-list, .policy-list {
  list-style: none; padding: 0; margin: 0;
}
.check-list li, .info-list li, .policy-list li {
  display: flex; gap: 0.75rem;
  margin-bottom: 0.875rem; color: var(--muted-strong); font-size: 0.9375rem;
  line-height: 1.45;
}
.check-list li i, .info-list li i, .policy-list li i {
  color: var(--success); margin-top: 0.25rem; flex-shrink: 0;
}

/* ── Timeline / 6-D Process ── */
.timeline-grid { position: relative; }
.timeline-grid::before {
  content: ""; position: absolute;
  left: 1.15rem; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--brand), var(--accent), transparent 92%);
  opacity: 0.5;
}

.timeline-step {
  position: relative;
  padding: 1.5rem 1.75rem 1.5rem 3.5rem;
  border-radius: var(--radius-lg);
  transition: background 0.2s;
}
.timeline-step:hover { background: var(--bg-secondary); }

.timeline-step::before {
  content: ""; position: absolute;
  left: 0.575rem; top: 1.875rem;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--bg);
  border: 2.5px solid var(--brand);
  transition: background 0.2s, box-shadow 0.2s;
}
.timeline-step:hover::before {
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}

.process-number {
  display: block; color: var(--brand);
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

/* ── Solution / tech product icons ── */
.solution-image, .tech-image {
  width: 4rem; height: 4rem;
  object-fit: contain; border-radius: var(--radius);
  background: var(--bg-tertiary);
  padding: 0.5rem;
  border: 1px solid var(--border-soft);
}
:root[data-theme="dark"] .solution-image,
:root[data-theme="dark"] .tech-image {
  background: rgba(255, 255, 255, 0.04);
}

/* ── Team member photos ── */
.team-image {
  width: 6rem; height: 6rem;
  object-fit: cover; border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--bg-tertiary);
  padding: 0;
}

/* ── Solution pills ── */
.solution-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.solution-link, .solution-label {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.85rem; border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.solution-link:hover {
  border-color: var(--brand); background: var(--brand); color: #fff;
  text-decoration: none;
}
.solution-label { opacity: 0.5; cursor: default; }

/* ── CTA banner (Apple-style oversized dark tile) ── */
.cta-banner {
  position: relative; overflow: hidden;
  padding: 5rem 2.5rem;
  background: var(--bg-inverse);
  color: var(--text-on-inverse);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
}
.cta-banner h2,
.cta-banner h3 { color: var(--text-on-inverse); }
.cta-banner .text-muted-custom { color: rgba(245, 245, 247, 0.7); }
.cta-banner .lead { color: rgba(245, 245, 247, 0.78); }
.cta-banner .surface,
.cta-banner .surface-strong {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-on-inverse);
  backdrop-filter: none;
}
.cta-banner .surface h3,
.cta-banner .surface-strong h3 { color: var(--text-on-inverse); }

:root[data-theme="dark"] .cta-banner {
  background: #1d1d1f;
}

/* ── Contact ── */
.contact-link { color: var(--text); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.contact-link:hover { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* ── Form controls ── */
.form-label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.form-control,
.form-control:focus {
  min-height: 48px;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  border-radius: var(--radius-sm);
  box-shadow: none;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.18);
  outline: none;
}
textarea.form-control { min-height: 10rem; resize: vertical; }
.form-control::placeholder { color: var(--muted); opacity: 0.7; }

/* ── Footer (Apple-style fine print) ── */
.footer-shell {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-secondary);
  font-size: 0.8125rem;
  color: var(--muted);
}
.footer-shell h2 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8125rem;
  line-height: 1.7;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.footer-shell .site-logo { width: 110px; }

/* ── Policy sidebar nav ── */
.policy-nav { position: sticky; top: 6rem; }
.policy-nav a {
  display: block; padding: 0.4rem 0;
  color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s;
}
.policy-nav a:hover { color: var(--brand); }

/* ── Blog post meta ── */
.post-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.post-meta span {
  display: inline-flex; padding: 0.25rem 0.75rem; border-radius: var(--radius-pill);
  background: var(--bg-secondary); color: var(--muted);
  font-size: 0.8125rem; font-weight: 500;
}

/* ── Tag chip ── */
.tag-chip {
  display: inline-flex; align-items: center; padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--brand-soft); color: var(--brand);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: -0.01em;
}

/* ── Scroll reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .navbar-blur { padding: 0.25rem 0; }
  .navbar-nav { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .navbar-nav .nav-link { font-size: 1rem; padding: 0.5rem 0.5rem !important; }
  .nav-action-group { margin-top: 0.5rem; }
  .policy-nav    { position: static; }
  .section       { padding: 4rem 0; }
  .cta-banner    { padding: 3rem 1.5rem; border-radius: var(--radius-lg); }
  .hero-panel    { padding: 1.75rem; }
}

@media (min-width: 992px) {
  .timeline-grid::before { left: 50%; transform: translateX(-50%); }
  .timeline-step          { padding-left: 2.5rem; }
  .timeline-step::before  { left: auto; right: -2.25rem; }
  .timeline-step.timeline-right::before { left: -2.25rem; right: auto; }
  .timeline-step.timeline-right         { padding-left: 1.75rem; padding-right: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
