/* Matchdesk — calm premium light · getmatchdesk.nl */
:root {
  --ink: #0B1F2A;
  --ink-soft: #1A3344;
  --slate: #3D5568;
  --muted: #5C7386;
  --line: #D8E2EC;
  --line-soft: #E8EEF4;
  --paper: #F7F9FB;
  --paper-deep: #EEF3F7;
  --white: #FFFFFF;
  --teal: #0D9488;
  --teal-bright: #14B8A6;
  --teal-deep: #0F766E;
  --teal-soft: rgba(13, 148, 136, 0.1);
  --navy: #071520;
  --danger: #B91C1C;
  --bad: #9A3412;
  --good: #0F766E;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --shadow: 0 16px 40px rgba(11, 31, 42, 0.08);
  --shadow-sm: 0 4px 16px rgba(11, 31, 42, 0.05);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --max: 1120px;
  --narrow: 680px;
  --header-h: 68px;
  --focus: 0 0 0 3px rgba(13, 148, 136, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal); }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 4px; }

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

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--ink); color: var(--white); padding: 0.65rem 1rem;
  border-radius: 8px; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.container.narrow { width: min(100% - 2rem, var(--narrow)); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--ink); text-decoration: none; font-weight: 700;
  font-size: 1.125rem; letter-spacing: -0.02em;
}
.logo-mark { color: var(--teal); flex-shrink: 0; }
.logo img { height: 28px; width: auto; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 0.5rem; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
}
.nav-toggle-bar {
  display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 1px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-menu {
  display: flex; align-items: center; gap: 0.15rem 1.25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
  color: var(--slate); text-decoration: none; font-size: 0.9375rem; font-weight: 500;
}
.nav-menu a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex !important; align-items: center;
  background: var(--teal); color: var(--white) !important;
  padding: 0.55rem 1rem; border-radius: 999px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--teal-deep); color: var(--white) !important; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.25rem; box-shadow: var(--shadow-sm);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { border-bottom: 1px solid var(--line-soft); }
  .nav-menu a { display: block; padding: 0.85rem 0.25rem; }
  .nav-cta { margin-top: 0.5rem; justify-content: center; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-family: inherit; font-size: 0.9875rem; font-weight: 600;
  line-height: 1.2; text-decoration: none; border: 1px solid transparent;
  border-radius: 999px; padding: 0.8rem 1.35rem; cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:disabled { opacity: 0.65; cursor: wait; }
.btn-primary {
  background: var(--teal); color: var(--white); border-color: var(--teal);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 4px 14px rgba(13, 148, 136, 0.25);
}
.btn-primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: var(--white); }
.btn-secondary {
  background: var(--white); color: var(--ink); border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--slate); color: var(--ink); }
.btn-ghost {
  background: transparent; color: var(--ink-soft); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--slate); color: var(--ink); background: var(--white); }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-on-dark {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.btn-ghost-on-dark {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.28);
}
.btn-ghost-on-dark:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); color: var(--white); }

/* Typography helpers */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem; flex-wrap: wrap;
  margin: 0 0 0.85rem; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal-deep);
}
.badge {
  display: inline-flex; align-items: center;
  background: var(--teal-soft); color: var(--teal-deep);
  padding: 0.2rem 0.55rem; border-radius: 999px; letter-spacing: 0.06em;
}
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head h2, .hero h1, .claim-hero h1 {
  letter-spacing: -0.03em; line-height: 1.15; font-weight: 700;
}
.lede { margin: 0.75rem 0 0; color: var(--slate); font-size: 1.125rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--paper); }
.section-cta { margin-top: 2rem; text-align: center; }

/* Hero — calm light with soft navy panel */
.hero {
  position: relative; padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(13, 148, 136, 0.08), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
}
.hero h1 {
  margin: 0; font-size: clamp(2rem, 4.2vw, 3.15rem); color: var(--ink);
}
.hero h1 em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--teal-deep);
}
.hero-sub {
  margin: 1.15rem 0 0; color: var(--slate); font-size: 1.125rem; max-width: 36rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem;
}
.hero-secondary-cta {
  margin: 1.25rem 0 0; font-size: 0.9375rem; color: var(--muted);
}
.hero-secondary-cta a { font-weight: 600; }

.match-card {
  background: var(--navy); color: var(--white);
  border-radius: calc(var(--radius) + 4px); padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}
.match-card-top {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.25);
}
.match-metric-label {
  display: block; font-size: 0.75rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.25rem;
}
.match-metric-value {
  font-size: 2.75rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: var(--white);
}
.match-metric-value span { font-size: 1.25rem; font-weight: 600; color: var(--teal-bright); }
.match-facts {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: grid; gap: 0.85rem;
}
.match-facts li {
  display: grid; grid-template-columns: auto 1fr; gap: 0.75rem 1rem; align-items: baseline;
  padding-top: 0.85rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.match-facts strong {
  font-size: 0.9375rem; color: var(--teal-bright); min-width: 4.5rem;
}
.match-facts span { font-size: 0.875rem; color: rgba(255,255,255,0.72); }
.match-flow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
  margin-top: 1.35rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem; color: rgba(255,255,255,0.55);
}
.match-arrow { color: rgba(255,255,255,0.3); }
.match-exclusive { color: var(--teal-bright); font-weight: 600; }

/* Trust strip */
.trust-strip {
  border-block: 1px solid var(--line-soft);
  background: var(--white); padding: 1.15rem 0;
}
.trust-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.85rem 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .trust-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .trust-list { grid-template-columns: repeat(4, 1fr); }
}
.trust-list li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.9375rem; font-weight: 600; color: var(--ink-soft);
}
.trust-list svg { color: var(--teal); flex-shrink: 0; }

/* Pain */
.pain-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}
.pain-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.pain-num {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--teal); margin-bottom: 0.65rem;
}
.pain-card h3 { margin: 0 0 0.5rem; font-size: 1.125rem; }
.pain-card p { margin: 0; color: var(--slate); font-size: 0.9875rem; }
.problem-bridge {
  margin: 2rem 0 0; padding: 1.15rem 1.35rem;
  background: var(--teal-soft); border-radius: var(--radius-sm);
  color: var(--ink-soft); font-size: 1.05rem;
}

/* Contrast table */
.table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--white);
  box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch;
}
.contrast-table {
  width: 100%; border-collapse: collapse; min-width: 560px;
  font-size: 0.9375rem;
}
.contrast-table th, .contrast-table td {
  padding: 0.95rem 1.1rem; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}
.contrast-table thead th {
  background: var(--paper); font-size: 0.875rem; font-weight: 700;
  color: var(--ink); border-bottom-color: var(--line);
}
.th-sub {
  display: block; font-weight: 500; color: var(--muted);
  font-size: 0.75rem; margin-top: 0.2rem;
}
.contrast-table tbody th {
  font-weight: 600; color: var(--ink-soft); width: 28%;
}
.contrast-table .highlight {
  background: rgba(13, 148, 136, 0.06);
}
.contrast-table thead .highlight { background: rgba(13, 148, 136, 0.12); }
.cell-bad { color: var(--bad); }
.cell-good { color: var(--good); font-weight: 600; }
.contrast-table tbody tr:last-child th,
.contrast-table tbody tr:last-child td { border-bottom: 0; }

/* Steps */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--teal); margin-bottom: 0.75rem;
}
.step h3 { margin: 0 0 0.45rem; font-size: 1.0625rem; }
.step p { margin: 0; color: var(--slate); font-size: 0.9375rem; }

/* Exclusivity */
.excl-grid {
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 860px) {
  .excl-grid { grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
}
.check-list {
  list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.75rem;
}
.check-list li {
  position: relative; padding-left: 1.75rem; color: var(--ink-soft); font-size: 0.9875rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.35rem;
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%230F766E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 0.7rem; background-repeat: no-repeat; background-position: center;
}
.excl-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.excl-card h3 { margin: 1rem 0 0.5rem; font-size: 1.125rem; }
.excl-card p { margin: 0; color: var(--slate); }

/* Pricing */
.pricing-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.price-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.price-card.featured {
  border-color: rgba(13, 148, 136, 0.35);
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.06), var(--white) 40%);
}
.price-label {
  margin: 0; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal-deep);
}
.price-value {
  margin: 0.5rem 0 0; font-size: 3rem; font-weight: 700;
  letter-spacing: -0.04em; color: var(--ink); line-height: 1;
}
.price-unit { margin: 0.35rem 0 1.25rem; color: var(--muted); font-size: 0.9375rem; }
.price-card ul { margin: 0 0 1.5rem; padding: 0 0 0 1.15rem; color: var(--ink-soft); }
.price-card li { margin-bottom: 0.45rem; }
.muted-list { color: var(--slate) !important; }
.fineprint { margin: 0; font-size: 0.875rem; color: var(--muted); }

/* Coverage */
.coverage-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
}
.coverage-grid li {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-sm);
}
.coverage-grid svg { color: var(--teal); margin-bottom: 0.75rem; }
.coverage-grid h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.coverage-grid p { margin: 0; color: var(--slate); font-size: 0.875rem; }
.coverage-de { border-style: dashed; }

/* CTA band */
.cta-band {
  background: var(--navy); color: var(--white); padding: 3.25rem 0;
}
.cta-band-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.cta-band .eyebrow { color: var(--teal-bright); }
.cta-band h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; }
.cta-band p { margin: 0.5rem 0 0; color: rgba(255,255,255,0.72); max-width: 36rem; }

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.15rem; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--teal); font-weight: 500; font-size: 1.25rem; line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0; padding: 0 1.15rem 1.15rem; color: var(--slate); font-size: 0.9875rem;
}

/* Forms */
.form-section { scroll-margin-top: calc(var(--header-h) + 12px); }
.form-layout {
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 900px) {
  .form-layout { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; }
}
.form-bullets {
  list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 0.5rem;
}
.form-bullets li {
  padding-left: 1.4rem; position: relative; color: var(--ink-soft); font-size: 0.9875rem;
}
.form-bullets li::before {
  content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700;
}
.card-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.field { margin-bottom: 1rem; }
.field-row {
  display: grid; gap: 1rem;
}
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.field label, .checkbox-field label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 0.4rem;
}
.checkbox-field label {
  display: flex; gap: 0.65rem; align-items: flex-start; font-weight: 500; cursor: pointer;
}
.checkbox-field input { margin-top: 0.2rem; accent-color: var(--teal); width: 1.1rem; height: 1.1rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-xs); padding: 0.7rem 0.85rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #B7C6D4; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: var(--focus);
}
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid,
.checkbox-field input.is-invalid {
  border-color: var(--danger);
}
.field-error {
  margin: 0.35rem 0 0; font-size: 0.8125rem; color: var(--danger);
}
.form-note {
  margin: 0.85rem 0 0; font-size: 0.8125rem; color: var(--muted); text-align: center;
}
.form-success {
  text-align: center; padding: 1.5rem 0.5rem;
}
.form-success h3 { margin: 0.85rem 0 0.4rem; }
.form-success p { margin: 0 0 1.25rem; color: var(--slate); }
.form-success svg { margin-inline: auto; }

/* Audience split */
.audience-split {
  display: grid; gap: 1rem;
}
@media (min-width: 720px) {
  .audience-split { grid-template-columns: 1fr 1fr; }
}
.audience-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.audience-card h3 { margin: 0 0 0.5rem; font-size: 1.125rem; }
.audience-card p { margin: 0 0 1.15rem; color: var(--slate); font-size: 0.9875rem; }

/* Footer */
.site-footer {
  background: var(--paper); border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem; color: var(--muted); font-size: 0.9375rem;
}
.footer-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr; align-items: start;
  }
}
.footer-brand { font-weight: 700; color: var(--ink); font-size: 1.05rem; margin: 0 0 0.4rem; }
.footer-meta { margin: 0; max-width: 28rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer-links a { color: var(--slate); text-decoration: none; font-weight: 500; }
.footer-links a:hover { color: var(--teal-deep); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: space-between;
  font-size: 0.875rem;
}
.footer-bottom a { color: var(--slate); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal-deep); }

/* Claim page specifics */
.claim-page { background: var(--paper-deep); min-height: 100vh; }
.claim-header .header-inner { max-width: 720px; }
.header-pill {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--teal-deep);
  background: var(--teal-soft); padding: 0.35rem 0.75rem; border-radius: 999px;
}
.claim-hero {
  background: var(--navy); color: var(--white);
  padding: 2.5rem 1.25rem 2.75rem; text-align: center;
}
.claim-hero-inner { max-width: 640px; margin: 0 auto; }
.claim-hero .eyebrow { color: var(--teal-bright); justify-content: center; }
.claim-hero h1 {
  margin: 0; font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.claim-hero .lede { color: rgba(255,255,255,0.75); margin-inline: auto; }
.zone-chip {
  display: inline-flex; margin-top: 1rem; padding: 0.4rem 0.85rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; font-size: 0.875rem; color: rgba(255,255,255,0.85);
}
.claim-main { max-width: 640px; margin: -1.5rem auto 0; padding: 0 1rem 3rem; position: relative; z-index: 1; }
.claim-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.claim-benefits {
  list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.55rem;
}
.claim-benefits li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.9375rem; color: var(--ink-soft);
}
.claim-benefits svg { color: var(--teal); flex-shrink: 0; margin-top: 0.15rem; }
.confirm-box {
  margin: 1.25rem 0; padding: 1rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.confirm-box label {
  display: flex; gap: 0.65rem; align-items: flex-start; cursor: pointer;
  font-size: 0.9375rem; color: var(--ink-soft);
}
.confirm-box input { margin-top: 0.2rem; accent-color: var(--teal); width: 1.1rem; height: 1.1rem; }
.urgency {
  margin: 1rem 0 0; text-align: center; font-size: 0.875rem;
  color: var(--muted); font-weight: 500;
}
.claim-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem;
}
.claim-note {
  margin: 1.25rem 0 0; text-align: center; font-size: 0.875rem; color: var(--muted);
}
.claim-success { text-align: center; padding: 1rem 0; }
.claim-success-icon {
  width: 48px; height: 48px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--navy); color: var(--teal-bright);
  display: grid; place-items: center; font-size: 1.35rem; font-weight: 700;
}
.claim-success h2 { margin: 0 0 0.5rem; font-size: 1.5rem; }
.claim-success p { margin: 0; color: var(--slate); }
.claim-success-meta {
  margin: 1.25rem auto; padding: 1rem; max-width: 28rem;
  background: var(--paper); border-radius: var(--radius-sm);
  font-size: 0.9375rem; color: var(--ink-soft); text-align: left;
}
.claim-footer {
  text-align: center; padding: 1.5rem; font-size: 0.875rem; color: var(--muted);
}
.claim-footer a { color: var(--slate); text-decoration: none; }
.req { color: var(--teal-deep); }

/* Subtle motion only */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
