/* =========================================================
   Rijschool Hernamdt — global styles
   Brand tokens derived from the logo:
     orange  = "Hernamdt" wordmark + accent bars
     blue    = the tilted L-plate
     black   = "rijschool" lettering
     white   = surface
   ========================================================= */

:root {
  /* Brand colors */
  --c-orange: #EE8222;
  --c-orange-deep: #D86E10;
  --c-orange-soft: #FFF0DF;
  --c-orange-tint: #FCE2C6;
  --c-blue: #1FA0E0;
  --c-blue-deep: #0B79B4;
  --c-blue-soft: #E2F4FD;
  --c-ink: #14171C;
  --c-ink-soft: #2A2F38;
  --c-mute: #5B6470;
  --c-line: #E6E8EC;
  --c-surface: #FFFFFF;
  --c-cream: #FAF7F2;

  /* Functional */
  --c-success: #2E7D32;
  --c-error: #B33A2E;
  --c-star: #F5A623;

  /* Typography */
  --font-display: 'Archivo', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing — 8px grid */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 23, 28, 0.06), 0 2px 6px rgba(20, 23, 28, 0.05);
  --shadow-md: 0 6px 18px rgba(20, 23, 28, 0.09), 0 2px 6px rgba(20, 23, 28, 0.06);
  --shadow-lg: 0 18px 50px rgba(20, 23, 28, 0.14);

  /* Layout */
  --max: 1180px;
  --max-narrow: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--c-blue-deep);
  text-decoration: none;
  font-weight: 500;
}
a:hover { color: var(--c-orange-deep); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin: 0 0 var(--sp-4);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { margin: 0 0 var(--sp-4); }

ul.clean { list-style: none; padding: 0; margin: 0; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--sp-5); }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--sp-5); }
.section { padding: var(--sp-9) 0; }
.section-sm { padding: var(--sp-7) 0; }
.section-cream { background: var(--c-cream); }
.section-ink { background: var(--c-ink); color: #fff; }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }
.section-blue { background: linear-gradient(180deg, var(--c-blue-soft), #fff); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: var(--sp-7) 0; }
}

.center { text-align: center; }
.muted { color: var(--c-mute); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-orange-deep);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--c-orange);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(238, 130, 34, 0.32);
}
.btn-primary:hover { background: var(--c-orange-deep); color: #fff; }

.btn-dark {
  background: var(--c-ink);
  color: #fff;
}
.btn-dark:hover { background: #000; color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn-ghost:hover { background: var(--c-ink); color: #fff; }

.btn-blue {
  background: var(--c-blue);
  color: #fff;
}
.btn-blue:hover { background: var(--c-blue-deep); color: #fff; }

.btn-sm { padding: 10px 16px; font-size: 0.9rem; }
.btn-lg { padding: 16px 26px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.topbar {
  background: var(--c-ink);
  color: #fff;
  font-size: 0.88rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: var(--sp-4);
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--c-orange); text-decoration: none; }
.topbar .left, .topbar .right { display: flex; gap: var(--sp-5); flex-wrap: wrap; align-items: center; }
.topbar .badge {
  background: var(--c-orange);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.78rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: var(--sp-5);
}
.site-header .brand img { height: 52px; }
.site-header .brand { display: flex; align-items: center; }

.nav { display: flex; align-items: center; gap: var(--sp-2); }
.nav a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--c-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  border-radius: var(--r-sm);
}
.nav a:hover { background: var(--c-orange-soft); color: var(--c-orange-deep); text-decoration: none; }
.nav a.current {
  color: var(--c-orange-deep);
  background: var(--c-orange-soft);
}

.nav-cta { margin-left: var(--sp-3); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--sp-2);
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-4);
    gap: var(--sp-1);
    border-bottom: 4px solid var(--c-orange);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px var(--sp-4); }
  .nav-cta { margin: var(--sp-3) 0 0; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(31, 160, 224, 0.10), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(238, 130, 34, 0.08), transparent 60%),
    var(--c-surface);
  padding: var(--sp-9) 0 var(--sp-9);
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
}
@media (max-width: 920px) {
  .hero .wrap { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero { padding: var(--sp-7) 0; }
}

.hero h1 .accent {
  display: inline-block;
  position: relative;
  color: var(--c-orange);
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: var(--c-orange);
  border-radius: 4px;
}

.hero .lead {
  font-size: 1.18rem;
  color: var(--c-ink-soft);
  margin-bottom: var(--sp-5);
  max-width: 50ch;
}

.hero-cta {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-5);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.hero-trust .stat .n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1;
}
.hero-trust .stat .l {
  font-size: 0.84rem;
  color: var(--c-mute);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--c-orange-soft);
}
.hero-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-figure::after {
  content: "L";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  background: var(--c-blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  transform: rotate(8deg);
  box-shadow: var(--shadow-md);
}
.hero-figure .stripe {
  position: absolute;
  left: -10px;
  bottom: 28px;
  background: var(--c-ink);
  color: #fff;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--c-ink);
  color: #fff;
  padding: var(--sp-3) 0;
}
.trust-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: nowrap;
}
.trust-strip .item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.92rem;
  white-space: nowrap;
}
.trust-strip .item strong { color: var(--c-orange); font-family: var(--font-display); font-weight: 800; }

@media (max-width: 760px) {
  .trust-strip .wrap { flex-wrap: wrap; justify-content: center; gap: var(--sp-3) var(--sp-5); }
  .trust-strip .item { font-size: 0.88rem; }
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card h3 { margin-bottom: var(--sp-2); }
.card p { color: var(--c-ink-soft); }

.card-icon {
  width: 52px; height: 52px;
  background: var(--c-orange-soft);
  color: var(--c-orange-deep);
  display: grid; place-items: center;
  border-radius: 12px;
  margin-bottom: var(--sp-4);
  font-size: 1.4rem;
}

.card .price {
  margin-top: auto;
  padding-top: var(--sp-4);
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--c-orange-deep);
  font-family: var(--font-display);
  font-weight: 800;
}
.card .price .from { font-size: 0.85rem; color: var(--c-mute); font-weight: 500; }
.card .price .amt { font-size: 1.4rem; }

.card .more {
  margin-top: var(--sp-4);
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-orange-deep);
}
.card .more::after { content: "→"; transition: transform .15s ease; }
.card:hover .more::after { transform: translateX(4px); }

/* Service card variants */
.card.feature {
  background: var(--c-ink);
  color: #fff;
  border-color: transparent;
}
.card.feature h3 { color: #fff; }
.card.feature p { color: rgba(255,255,255,0.78); }
.card.feature .card-icon { background: var(--c-orange); color: #fff; }
.card.feature .price { color: var(--c-orange); }
.card.feature .more { color: var(--c-orange); }

/* ---------- Reviews ---------- */
.review {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.review .stars {
  color: var(--c-star);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-3);
}
.review blockquote {
  margin: 0 0 var(--sp-4);
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--c-ink-soft);
}
.review .who {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-line);
}
.review .who .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
}
.review .who .name { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
.review .who .meta { font-size: 0.85rem; color: var(--c-mute); }

/* ---------- Frysk callout ---------- */
.frysk-callout {
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.frysk-callout::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: var(--c-orange);
  border-radius: 50%;
  opacity: 0.22;
}
.frysk-callout::after {
  content: "";
  position: absolute;
  left: -40px; bottom: -40px;
  width: 140px; height: 140px;
  background: var(--c-blue);
  border-radius: 50%;
  opacity: 0.30;
}
.frysk-callout > * { position: relative; z-index: 1; }
.frysk-callout h2 { color: #fff; }
.frysk-callout .frysk-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--c-orange);
  margin-bottom: var(--sp-3);
}
@media (max-width: 760px) {
  .frysk-callout { grid-template-columns: 1fr; padding: var(--sp-6); }
}

/* ---------- Pakketten / tarieven table ---------- */
.pakketten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}
.pakket {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pakket:hover {
  border-color: var(--c-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pakket.featured {
  background: var(--c-ink);
  color: #fff;
  border: 0;
  position: relative;
}
.pakket.featured::before {
  content: "Populair";
  position: absolute;
  top: -12px; right: 16px;
  background: var(--c-orange);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pakket h3 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-2);
}
.pakket.featured h3 { color: #fff; }
.pakket .price-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--c-orange-deep);
  line-height: 1;
  margin: var(--sp-2) 0;
}
.pakket.featured .price-big { color: var(--c-orange); }
.pakket .pak-list {
  margin: var(--sp-3) 0 var(--sp-5);
  list-style: none;
  padding: 0;
}
.pakket .pak-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.95rem;
}
.pakket .pak-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: var(--c-orange);
  font-weight: 800;
}
.pakket.featured .pak-list li::before { color: var(--c-orange); }
.pakket .btn { width: 100%; margin-top: auto; }

/* ---------- Forms ---------- */
.form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  border: 1px solid var(--c-line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: var(--sp-4); }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  font: inherit;
  background: #fff;
  color: var(--c-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(238, 130, 34, 0.18);
}
.field .help { font-size: 0.85rem; color: var(--c-mute); margin-top: 4px; }
.form-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-4); }

.form-success {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #1B5E20;
  padding: var(--sp-4);
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-4);
}

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--c-line);
  padding: var(--sp-4) 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--c-orange);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: var(--sp-3) 0 0; color: var(--c-ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink);
  color: #C9CDD3;
  padding: var(--sp-8) 0 var(--sp-5);
  margin-top: var(--sp-9);
}
.site-footer h4 { color: #fff; margin-bottom: var(--sp-4); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
.site-footer a { color: #C9CDD3; }
.site-footer a:hover { color: var(--c-orange); text-decoration: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: var(--sp-7);
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 56px; background: #fff; padding: 8px 12px; border-radius: var(--r-sm); }
.footer-brand p { margin-top: var(--sp-4); font-size: 0.95rem; max-width: 30ch; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 4px 0; font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid #2A2F38;
  margin-top: var(--sp-7);
  padding-top: var(--sp-4);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #8A929D;
}

.socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-3); }
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: #2A2F38;
  border-radius: 50%;
  color: #fff;
  transition: background .15s ease;
}
.socials a:hover { background: var(--c-orange); color: #fff; }

/* ---------- Page banner ---------- */
.page-banner {
  background:
    radial-gradient(700px 400px at 90% 30%, rgba(31, 160, 224, 0.10), transparent 60%),
    var(--c-cream);
  padding: var(--sp-8) 0 var(--sp-7);
  border-bottom: 1px solid var(--c-line);
}
.page-banner h1 { margin-bottom: var(--sp-3); }
.page-banner .lead { font-size: 1.1rem; color: var(--c-ink-soft); max-width: 60ch; }
.page-banner .crumbs {
  font-size: 0.88rem;
  color: var(--c-mute);
  margin-bottom: var(--sp-3);
}
.page-banner .crumbs a { color: var(--c-mute); }

/* ---------- Misc utilities ---------- */
.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c-orange-soft);
  color: var(--c-orange-deep);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag.blue { background: var(--c-blue-soft); color: var(--c-blue-deep); }
.tag.ink { background: var(--c-ink); color: #fff; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
@media (max-width: 920px) { .split { grid-template-columns: 1fr; } }

.figure-soft {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-orange-soft);
  box-shadow: var(--shadow-md);
}
.figure-soft img { aspect-ratio: 5/4; object-fit: cover; width: 100%; }

.callout {
  background: var(--c-orange-soft);
  border-left: 6px solid var(--c-orange);
  padding: var(--sp-5);
  border-radius: var(--r-sm);
}

.callout.blue {
  background: var(--c-blue-soft);
  border-left-color: var(--c-blue);
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--c-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.icon-row {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-3) 0;
}
.icon-row .ico {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--c-orange-soft);
  color: var(--c-orange-deep);
  border-radius: 8px;
  flex-shrink: 0;
}

.section-cta {
  background: var(--c-orange);
  color: #fff;
  padding: var(--sp-8) 0;
  text-align: center;
}
.section-cta h2 { color: #fff; }
.section-cta p { color: rgba(255, 255, 255, 0.92); max-width: 60ch; margin: 0 auto var(--sp-5); }
.section-cta .btn-dark { background: var(--c-ink); }
.section-cta .btn-dark:hover { background: #000; }
.section-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.section-cta .btn-ghost:hover { background: #fff; color: var(--c-orange); }
