/* =========================================================
   Northpeak — Design System v2
   Modern, fresh, blue & white. Plus Jakarta Sans.
   ========================================================= */

:root {
  /* Color */
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-accent: #EFF6FF;
  --bg-blue-grad-start: #F0F7FF;
  --bg-blue-grad-end: #FFFFFF;

  --ink: #0F172A;
  --ink-soft: #334155;
  --ink-muted: #64748B;
  --ink-faint: #94A3B8;

  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-bright: #3B82F6;
  --accent-soft: #DBEAFE;
  --accent-glow: rgba(37, 99, 235, 0.15);

  --green: #10B981;
  --green-soft: #D1FAE5;

  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  /* Typography */
  --font-body: 'Plus Jakarta Sans', 'SF Pro Display', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Sizing */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 56px rgba(15, 23, 42, 0.10);
  --shadow-blue: 0 8px 24px rgba(37, 99, 235, 0.20);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------- Reset / base ------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ------- Layout ------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

/* ------- Typography ------- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.25; letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; line-height: 1.35; }

p { margin: 0 0 1em; color: var(--ink-soft); }
.lede { font-size: 1.18rem; color: var(--ink-muted); line-height: 1.55; max-width: 56ch; font-weight: 400; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.text-accent { color: var(--accent); }

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #FFF;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.28);
}
.btn-secondary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--ink-faint);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

/* ------- Nav ------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-mark {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a { transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--accent); }
@media (max-width: 820px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ------- Hero ------- */
.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 60% at 80% 0%, rgba(37, 99, 235, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 50% at 0% 30%, rgba(59, 130, 246, 0.06), transparent 70%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 .accent { color: var(--accent); }
.hero .lede { margin: 24px 0 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note {
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-note::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--green-soft);
}

/* Hero visual: stylized rank/traffic chart card */
.hero-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), transparent 40%);
  z-index: -1;
  filter: blur(20px);
}
.hero-visual-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.hero-visual-head .badge-up {
  background: var(--green-soft);
  color: #047857;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
}
.chart-svg { width: 100%; height: auto; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.hero-stat {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.hero-stat-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-stat-lbl {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ------- Achievement strip (replaces trust strip) ------- */
.achievements {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-soft);
}
.ach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) {
  .ach-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.ach {
  text-align: center;
}
.ach-val {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ach-lbl {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ------- Section heading block ------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}
.section-head-text p { max-width: 50ch; color: var(--ink-muted); font-size: 1.02rem; }
.section-head h2 em { color: var(--accent); font-style: normal; }

.section-head-center {
  text-align: center;
  margin-bottom: 56px;
}
.section-head-center h2 em { color: var(--accent); font-style: normal; }
.section-head-center p { max-width: 56ch; margin: 16px auto 0; color: var(--ink-muted); }

/* ------- How it works ------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}
.step-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 12px; }
.step p { margin: 0; color: var(--ink-muted); font-size: 0.96rem; }
.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.step-icon svg { width: 24px; height: 24px; }

/* ------- Pricing / tiers ------- */
.pricing-section { background: var(--bg-soft); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}
.plan.featured {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #FFF;
  border-color: var(--accent);
  box-shadow: var(--shadow-blue);
}
.plan.featured:hover { box-shadow: 0 24px 56px rgba(37, 99, 235, 0.28); }
.plan.featured h3 { color: #FFF; }
.plan.featured .plan-tagline { color: rgba(255, 255, 255, 0.85); }
.plan.featured .plan-price-label { color: #FFF; }
.plan.featured .plan-price-sub { color: rgba(255, 255, 255, 0.75); }
.plan.featured .plan-deliverables li { color: rgba(255, 255, 255, 0.9); }
.plan.featured .plan-deliverables li::before {
  background: rgba(255, 255, 255, 0.3);
  color: #FFF;
}
.plan.featured .btn-primary {
  background: #FFF;
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.plan.featured .btn-primary:hover { background: var(--bg-soft); }

.plan-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFF;
  background: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
}
.plan.featured .plan-badge { background: #FFF; color: var(--accent); }

.plan-name {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.plan-tagline {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 24px;
  min-height: 3.2em;
  line-height: 1.5;
}

.plan-price-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan-price-sub {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 6px;
  margin-bottom: 24px;
  font-weight: 500;
}

.plan-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.plan-deliverables li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.plan-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 16px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 12 10 16 18 8'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.plan.featured .plan-deliverables li::before {
  background-color: rgba(255, 255, 255, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 12 10 16 18 8'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ------- Included services ------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }
.service {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; }
.service h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.service p { font-size: 0.92rem; color: var(--ink-muted); margin: 0; line-height: 1.55; }

/* ------- Proof / case snapshots ------- */
.proof { background: var(--bg); }
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 820px) { .proof-stats { grid-template-columns: repeat(2, 1fr); } }
.proof-stat {
  padding: 28px 24px;
  background: var(--bg-accent);
  border-radius: var(--radius-lg);
  text-align: center;
}
.proof-stat-val {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-stat-lbl {
  font-size: 0.84rem;
  color: var(--ink-muted);
  margin-top: 10px;
  font-weight: 500;
}

.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .cases { grid-template-columns: 1fr; } }
.case {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.case:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.case-industry {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.case-result {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.case-headline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.4;
}
.case-body {
  color: var(--ink-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

/* ------- FAQ ------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 24px;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--accent-soft); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  line-height: 1.4;
  padding: 18px 0;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '';
  width: 24px; height: 24px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='6' x2='12' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='12' x2='18' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 20px;
  color: var(--ink-muted);
  max-width: 70ch;
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ------- Big CTA ------- */
.big-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #FFF;
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
  pointer-events: none;
}
.big-cta > * { position: relative; z-index: 1; }
.big-cta h2 { color: #FFF; margin-bottom: 16px; }
.big-cta p { color: rgba(255, 255, 255, 0.88); max-width: 56ch; margin: 0 auto 32px; font-size: 1.1rem; }
.big-cta .btn-primary { background: #FFF; color: var(--accent); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
.big-cta .btn-primary:hover { background: var(--bg-soft); }
.big-cta .btn-secondary {
  background: transparent;
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.3);
}
.big-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.big-cta-ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 600px) { .big-cta { padding: 56px 28px; } }

/* ------- Footer ------- */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-about p { color: var(--ink-muted); font-size: 0.92rem; max-width: 38ch; margin: 16px 0 0; }
.footer h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer ul li a { color: var(--ink-soft); transition: color 0.2s; }
.footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ------- Legal pages ------- */
.page-head {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-head .updated {
  margin-top: 20px;
  font-size: 0.84rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.legal-content { padding: 64px 0; }
.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 12px; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7; }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ------- Forms ------- */
.form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .form-wrap { padding: 28px; } }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.field textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.field-help { font-size: 0.82rem; color: var(--ink-muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* ------- Booking / success cards ------- */
.booking-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .booking-card { padding: 32px 24px; } }

.success-hero {
  text-align: center;
  padding: 96px 0 64px;
}
.success-check {
  width: 80px; height: 80px;
  background: var(--green-soft);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.success-next {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 40px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.success-next h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.success-next ol { padding-left: 20px; color: var(--ink-soft); }
.success-next ol li { margin-bottom: 10px; line-height: 1.6; }

/* ------- Utility ------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
