/* ==========================================================================
   Spot — Global Stylesheet (v2: real visual system, not just CSS variables)
   ========================================================================== */

:root {
  --ink: #0B1F3A;
  --ink-soft: #16294A;
  --teal: #0E8F82;
  --teal-dark: #0B7268;
  --teal-light: #E4F4F2;
  --amber: #F2A340;
  --amber-dark: #DB8A28;
  --amber-light: #FDF0DE;
  --paper: #FBFAF7;
  --cloud: #F1F3F1;
  --slate: #5B6472;
  --slate-light: #8A93A0;
  --line: #E4E7E2;
  --success: #1E8E5A;
  --alert: #C4432B;
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow: 0 8px 28px rgba(11, 31, 58, 0.09);
  --shadow-lg: 0 20px 48px rgba(11, 31, 58, 0.16);
  --shadow-teal: 0 14px 32px rgba(14, 143, 130, 0.22);
  --max: 1160px;
  --font-head: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.35rem); }
h3 { font-size: 1.28rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--slate); }
/* Body links use --teal-dark rather than --teal: at normal text sizes,
   --teal (#0E8F82) on white is ~3.98:1 contrast, under the WCAG AA 4.5:1
   minimum for regular text. --teal-dark clears 5.8:1. --teal itself stays
   reserved for buttons, badges and large/bold UI elements where it still
   reads clearly. */
a { color: var(--teal-dark); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--ink); }
img, svg { max-width: 100%; display: block; }
ul { padding-left: 1.2em; color: var(--slate); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; }
.section { padding: 88px 0; position: relative; }
.section--tight { padding: 48px 0; }
.section--cloud { background: linear-gradient(180deg, #F6F8F6, var(--cloud)); }
.section--ink { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%); color: #fff; position: relative; overflow: hidden; }
.section--ink p { color: #B9C3D4; }
.section--ink h2, .section--ink h3 { color: #fff; }

/* ---------------- decorative backgrounds ---------------- */
.bg-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(480px circle at 12% 8%, rgba(14,143,130,0.10), transparent 60%),
    radial-gradient(420px circle at 90% 0%, rgba(242,163,64,0.14), transparent 55%),
    radial-gradient(600px circle at 50% 100%, rgba(14,143,130,0.05), transparent 60%);
}
.bg-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(11,31,58,0.08) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 40%, transparent 90%);
}
.section--ink .bg-mesh {
  background:
    radial-gradient(500px circle at 15% 10%, rgba(14,143,130,0.28), transparent 60%),
    radial-gradient(460px circle at 88% 90%, rgba(242,163,64,0.18), transparent 55%);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; opacity: 0.55;
}

.wave-divider { display: block; width: 100%; height: 64px; margin-bottom: -1px; }
.wave-divider path { fill: var(--paper); }
.wave-divider.to-cloud path { fill: var(--cloud); }
.wave-divider.to-ink path { fill: var(--ink); }
.wave-divider.flip { transform: rotate(180deg); }

@keyframes floatSlow { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(3deg); } }
@keyframes revealUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; }
.reveal.in-view { animation: revealUp .6s cubic-bezier(.2,.7,.3,1) forwards; }

/* Section kicker — a plain label with a colored rule, not a pill/badge.
   (Pill-shaped "eyebrow" badges are one of the fastest tells of a generic
   AI-template site — this reads more like an editorial section marker.) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  padding-left: 13px;
  border-left: 3px solid var(--amber);
  line-height: 1.2;
}
.section--ink .eyebrow { color: #fff; border-left-color: var(--amber); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(.2,.8,.3,1), box-shadow 0.18s ease, background 0.18s ease, border-color .18s ease;
  text-decoration: none !important;
  position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; box-shadow: var(--shadow-teal); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(14,143,130,0.32); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 10px 24px rgba(11,31,58,0.22); }
.btn-dark:hover { box-shadow: 0 16px 34px rgba(11,31,58,0.3); }
.btn-outline { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }
.btn-amber { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); color: var(--ink); box-shadow: 0 14px 30px rgba(242,163,64,0.3); }
.btn-amber:hover { box-shadow: 0 18px 36px rgba(242,163,64,0.4); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,247,0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  max-width: 1360px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--ink); flex-shrink: 0; }
.brand:hover { color: var(--ink); }
.brand svg { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: 20px; flex-shrink: 1; min-width: 0; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: 0.89rem; position: relative;
  padding: 4px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--teal-dark); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.region-select {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--ink); flex-shrink: 0; }
@media (max-width: 1180px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 22px 24px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-140%); transition: transform 0.25s cubic-bezier(.2,.8,.3,1); z-index: 99; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: block; }
  .header-actions .btn span.hide-mobile { display: none; }
}
@media (max-width: 460px) {
  .region-select { display: none; }
}

/* Region banner */
.region-banner {
  background: linear-gradient(90deg, var(--ink), var(--ink-soft)); color: #fff; text-align: center; font-size: 0.85rem; padding: 9px 16px;
}
.region-banner a { color: var(--amber); font-weight: 700; }

/* ---------------- Icon system ---------------- */
.spot-icon { display: block; }
.spot-icon.flip-icon { transform: scaleX(-1); }
.icon-badge {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-badge.teal { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; box-shadow: 0 10px 22px rgba(14,143,130,0.28); }
.icon-badge.amber { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); color: var(--ink); box-shadow: 0 10px 22px rgba(242,163,64,0.28); }
.icon-badge.ink { background: var(--ink); color: #fff; box-shadow: 0 10px 22px rgba(11,31,58,0.25); }
.icon-badge.outline { background: var(--teal-light); color: var(--teal-dark); border: 1.5px solid rgba(14,143,130,0.2); }
.icon-badge.sm { width: 40px; height: 40px; border-radius: 12px; }
.icon-badge.sm svg { width: 19px; height: 19px; }
.icon-badge.lg { width: 68px; height: 68px; border-radius: 20px; }
.icon-badge.lg svg { width: 30px; height: 30px; }
.icon-badge.round { border-radius: 50%; }

/* ---------------- Hero ---------------- */
.hero { padding: 76px 0 48px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-stats { display: flex; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.hero-stat span { font-size: 0.8rem; color: var(--slate); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* Hero visual — a mock of the actual certificate/registry card someone
   earns, not an abstract icon-in-orbit scene. Grounds the hero in the real
   product instead of generic decoration. */
.cert-stack { position: relative; max-width: 340px; margin: 0 auto; }
.cert-card--back {
  position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-lg);
  transform: rotate(5deg);
  box-shadow: var(--shadow-lg);
  z-index: 0;
}
.cert-card--front {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 26px 24px;
  transform: rotate(-2deg);
  animation: floatSlow 7s ease-in-out infinite;
}
.cert-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.cert-card__mark {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-light); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
}
.cert-card__mark svg { width: 18px; height: 18px; }
.cert-card__label { font-family: var(--font-head); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--slate); text-transform: uppercase; }
.cert-card__number { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 18px; }
.cert-card__checks { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 9px; }
.cert-card__checks li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--ink); font-weight: 600; }
.cert-card__checks li svg { color: var(--teal-dark); flex-shrink: 0; width: 15px; height: 15px; }
.cert-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px dashed var(--line); }
.cert-card__foot span:first-child { font-size: 0.76rem; color: var(--slate); }
.cert-card__status {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--success); background: rgba(30,142,90,0.12); padding: 4px 10px; border-radius: 999px;
}

/* ---------------- Cards ---------------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s ease, border-color .2s ease;
}
.card--elevated { box-shadow: var(--shadow-lg); border: none; }
.card--hover:hover, a.card:hover, .card.is-hoverable:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.step-num {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(14,143,130,0.25);
}

/* Numbered step connector line (how-it-works style) */
.step-list { position: relative; }
.step-row { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding-bottom: 36px; position: relative; }
.step-row:last-child { padding-bottom: 0; }
.step-row .step-line { position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: linear-gradient(var(--line), transparent); }
.step-row:last-child .step-line { display: none; }
.step-row .step-num { margin-bottom: 0; }

/* ---------------- Pricing ---------------- */
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card .price { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--ink); margin: 10px 0; }
.price-card .price small { font-size: 0.95rem; font-weight: 600; color: var(--slate); }
.price-card ul { list-style: none; padding: 0; margin: 20px 0; flex: 1; }
.price-card ul li { padding: 9px 0; border-top: 1px solid var(--line); font-size: 0.92rem; color: var(--ink); display: flex; gap: 10px; align-items: flex-start; }
.price-card ul li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; width: 17px; height: 17px; }
.price-card.featured { border: 2px solid var(--teal); position: relative; box-shadow: var(--shadow-teal); }
.price-tag {
  position: absolute; top: -14px; left: 26px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark)); color: var(--ink); font-family: var(--font-head); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 8px 16px rgba(242,163,64,0.35);
}
.billing-toggle { display: inline-flex; background: var(--cloud); border-radius: 999px; padding: 5px; margin-bottom: 32px; }
.billing-toggle button {
  border: none; background: transparent; padding: 10px 22px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; cursor: pointer; color: var(--slate); transition: all .18s ease;
}
.billing-toggle button.active { background: var(--ink); color: #fff; box-shadow: 0 6px 14px rgba(11,31,58,0.25); }

/* Badge / seal chip */
.badge-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--teal-light); border-radius: 999px; padding: 7px 16px 7px 7px;
  font-size: 0.82rem; font-weight: 700; color: var(--ink);
}
.badge-chip .icon-badge { width: 30px; height: 30px; border-radius: 50%; }
.badge-chip .icon-badge svg { width: 15px; height: 15px; }

/* ---------------- Forms ---------------- */
.form-field { margin-bottom: 22px; }
.form-field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 9px; color: var(--ink); }
.form-field .hint { font-size: 0.8rem; color: var(--slate); margin-top: 7px; }
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: 0.95rem; background: #fff; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(14,143,130,0.12); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 560px) { .choice-grid { grid-template-columns: 1fr; } }
.choice-card {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 18px;
  cursor: pointer; transition: border-color 0.15s, background 0.15s, transform .15s;
  background: #fff; display: block;
}
.choice-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.choice-card.selected { border-color: var(--teal); background: var(--teal-light); box-shadow: 0 0 0 3px rgba(14,143,130,0.1); }
/* Visually hidden but still focusable/valid — display:none on a required
   radio breaks native HTML5 validation (the form silently fails to submit
   with no visible error), so this uses an off-screen technique instead. */
.choice-card input {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.choice-card input:focus-visible ~ .title,
.choice-card:has(input:focus-visible) {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.choice-card .title { font-weight: 700; font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 4px; color: var(--ink); }
.choice-card .desc { font-size: 0.82rem; color: var(--slate); }

/* Progress */
.progress-track { height: 9px; background: var(--cloud); border-radius: 999px; overflow: hidden; margin-bottom: 9px; box-shadow: inset 0 1px 2px rgba(0,0,0,0.05); }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--amber), var(--amber-dark)); border-radius: 999px; transition: width 0.35s cubic-bezier(.2,.8,.3,1); }
.progress-label { font-size: 0.8rem; color: var(--slate); font-weight: 700; margin-bottom: 26px; display: block; letter-spacing: .02em; }

/* Quiz result */
.result-score {
  font-family: var(--font-head); font-weight: 800; font-size: 3.6rem; color: var(--teal); text-align: center; margin: 14px 0 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.result-score-label { text-align: center; color: var(--slate); font-weight: 600; margin-bottom: 26px; }

/* Table */
table { width: 100%; border-collapse: collapse; margin: 26px 0; border-radius: var(--radius-sm); overflow: hidden; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
th { font-family: var(--font-head); background: var(--cloud); font-weight: 700; }
tr:hover td { background: rgba(14,143,130,0.03); }

/* ---------------- Footer ---------------- */
.site-footer { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%); color: #B9C3D4; padding: 64px 0 30px; position: relative; overflow: hidden; }
.site-footer h4 { color: #fff; font-size: 0.83rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #B9C3D4; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; position: relative; z-index: 1; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; font-size: 0.88rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; position: relative; z-index: 1; }
.footer-brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand svg { width: 30px; height: 30px; }

/* ---------------- Utility ---------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--slate); }
.small { font-size: 0.85rem; }
.divider { height: 1px; background: var(--line); margin: 44px 0; border: none; }
.legal-body h2 { margin-top: 2em; font-size: 1.3rem; }
.legal-body h3 { margin-top: 1.4em; font-size: 1.05rem; }
.legal-body ol, .legal-body ul { color: var(--slate); }
.legal-body p, .legal-body li { color: var(--slate); font-size: 0.96rem; }
.callout {
  background: var(--cloud); border-left: 4px solid var(--amber); border-radius: var(--radius-sm);
  padding: 18px 22px; font-size: 0.9rem; margin: 22px 0;
  display: flex; gap: 12px; align-items: flex-start;
}
.callout svg { flex-shrink: 0; margin-top: 2px; color: var(--amber-dark); }
.callout.alert { border-left-color: var(--alert); background: #FBEAE6; }
.callout.alert svg { color: var(--alert); }
.callout.success { border-left-color: var(--success); background: #E9F5EE; }
.callout.success svg { color: var(--success); }
.tag { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; background: var(--teal-dark); color: #fff; padding: 5px 12px; border-radius: 999px; }
.tag.amber { background: var(--amber); color: var(--ink); }
.tag.outline { background: var(--teal-light); color: var(--teal-dark); }
[data-region-content] { display: none; }

.logo-mark-lg { width: 72px; height: 72px; }

/* Stat/feature strip */
.stat-strip { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; text-align: center; }
.stat-strip .stat strong { display: block; font-family: var(--font-head); font-size: 2rem; }
.stat-strip .stat span { font-size: 0.82rem; color: var(--slate); }
.section--ink .stat-strip .stat span { color: #B9C3D4; }

/* Testimonial-style card */
.quote-card { position: relative; padding-top: 42px; }
.quote-card::before {
  content: '“'; position: absolute; top: -6px; left: 24px; font-family: Georgia, serif; font-size: 4.5rem; color: var(--teal); opacity: 0.25; line-height: 1;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: var(--ink); color: #fff;
  padding: 18px 24px; box-shadow: var(--shadow-lg);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px;
}
.cookie-banner p { margin: 0; max-width: 640px; font-size: 0.92rem; line-height: 1.5; color: rgba(255,255,255,0.92); }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn-cookie-accept {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; border: none;
  padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; cursor: pointer;
}
.cookie-banner .btn-cookie-decline {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4);
  padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; cursor: pointer;
}
.cookie-banner .btn-cookie-decline:hover { border-color: #fff; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner .cookie-actions { justify-content: center; }
}
