:root {
  --navy: #102a43;
  --navy-2: #183f5d;
  --teal: #087f8c;
  --teal-dark: #05626d;
  --coral: #e85d4a;
  --cream: #fffaf3;
  --paper: #ffffff;
  --sky: #e8f7f7;
  --ink: #17324d;
  --muted: #5f7282;
  --line: #dce6ea;
  --success: #19734a;
  --shadow: 0 18px 50px rgba(16, 42, 67, .11);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { color: var(--teal-dark); text-underline-offset: .18em; }
a:hover { color: var(--coral); }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  z-index: 1000;
  padding: .7rem 1rem;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.independent-note {
  padding: .55rem 1rem;
  color: #fff;
  background: var(--navy);
  font-size: .88rem;
  text-align: center;
}
.independent-note strong { color: #86e1e6; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 230, 234, .9);
  background: rgba(255, 250, 243, .94);
  backdrop-filter: blur(16px);
}

.header-inner,
.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: 13px;
  font-size: 1.25rem;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 650;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--paper);
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
}

.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav a {
  padding: .55rem .72rem;
  color: var(--navy);
  border-radius: 9px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { background: var(--sky); color: var(--teal-dark); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.1rem;
  border: 0;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(5, 98, 109, .18);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { color: #fff; background: var(--navy); transform: translateY(-1px); }
.button.secondary { color: var(--navy); background: var(--paper); border: 1px solid var(--line); box-shadow: none; }
.button.secondary:hover { color: var(--teal-dark); background: var(--sky); }

.hero { padding: clamp(3rem, 7vw, 6.5rem) 0 3.8rem; overflow: hidden; }
.hero-grid { display: grid; align-items: center; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); }
.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: .35rem .7rem;
  color: var(--teal-dark);
  background: var(--sky);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--navy); line-height: 1.15; letter-spacing: -.035em; }
h1 { margin: 0 0 1.2rem; font-size: clamp(2.45rem, 5vw, 4.9rem); }
h2 { margin: 0 0 1rem; font-size: clamp(1.75rem, 3vw, 2.7rem); }
h3 { margin: 0 0 .6rem; font-size: 1.28rem; }
.hero-copy > p:not(.eyebrow) { max-width: 62ch; color: var(--muted); font-size: 1.14rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-art { position: relative; }
.hero-art::before {
  position: absolute;
  inset: -16px 18% 12% -18px;
  z-index: -1;
  content: "";
  background: var(--teal);
  border-radius: 32px;
  transform: rotate(-2deg);
}
.hero-art img { aspect-ratio: 3 / 2; width: 100%; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }

.trust-strip { padding: 1rem 0; border-block: 1px solid var(--line); background: #fff; }
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.trust-list li { display: flex; align-items: center; gap: .65rem; color: var(--muted); font-size: .9rem; }
.trust-list strong { color: var(--navy); }
.check { display: grid; flex: 0 0 30px; height: 30px; place-items: center; color: var(--success); background: #e9f7f0; border-radius: 50%; font-weight: 900; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section.alt { background: #fff; }
.section-heading { max-width: 720px; margin-bottom: 2rem; }
.section-heading p { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  color: inherit;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(16, 42, 67, .055);
  text-decoration: none;
}
.card:hover { color: inherit; border-color: #8eced2; transform: translateY(-3px); box-shadow: var(--shadow); }
.card p { color: var(--muted); }
.card .link-arrow { margin-top: auto; color: var(--teal-dark); font-weight: 850; }
.card-number { display: grid; width: 42px; height: 42px; margin-bottom: 1.1rem; place-items: center; color: #fff; background: var(--teal); border-radius: 12px; font-weight: 900; }

.safety-box,
.official-cta {
  padding: clamp(1.4rem, 4vw, 2.3rem);
  border-radius: var(--radius);
}
.safety-box { border: 1px solid #f2c7bf; background: #fff2ef; }
.safety-box h2 { font-size: 1.55rem; }
.safety-box ul { margin-bottom: 0; }
.official-cta { display: grid; align-items: center; grid-template-columns: 1fr auto; gap: 1.5rem; color: #fff; background: var(--navy); }
.official-cta h2, .official-cta p { color: #fff; }
.official-cta h2 { margin-bottom: .45rem; }
.official-cta p { margin: 0; opacity: .84; }
.official-cta .button { color: var(--navy); background: #fff; }

.page-hero { padding: clamp(3rem, 7vw, 5.5rem) 0 2.7rem; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #e9f8f7, #fffaf3 65%); }
.page-hero .container { max-width: 900px; }
.page-hero h1 { max-width: 17ch; font-size: clamp(2.2rem, 5vw, 4rem); }
.page-hero p { max-width: 68ch; color: var(--muted); font-size: 1.1rem; }
.meta { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-top: 1.2rem; color: var(--muted); font-size: .85rem; }

.article-layout { display: grid; align-items: start; grid-template-columns: minmax(0, 760px) 270px; gap: 3.5rem; }
.article h2 { margin-top: 2.7rem; }
.article h3 { margin-top: 2rem; }
.article li + li { margin-top: .55rem; }
.article .lead { color: var(--navy); font-size: 1.18rem; }
.steps { margin: 1.4rem 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; margin: 0 0 1rem; padding: 1.05rem 1rem 1.05rem 4.1rem; border: 1px solid var(--line); background: #fff; border-radius: 14px; counter-increment: step; }
.steps li::before { position: absolute; top: 1rem; left: 1rem; display: grid; width: 2.2rem; height: 2.2rem; place-items: center; color: #fff; background: var(--teal); border-radius: 9px; content: counter(step); font-weight: 900; }
.callout { margin: 1.7rem 0; padding: 1.25rem 1.35rem; border-left: 5px solid var(--teal); background: var(--sky); border-radius: 0 14px 14px 0; }
.callout.warning { border-color: var(--coral); background: #fff2ef; }
.source-list { padding-left: 1.15rem; font-size: .92rem; }
.source-list a { word-break: break-word; }
.side-card { position: sticky; top: 110px; padding: 1.35rem; border: 1px solid var(--line); background: #fff; border-radius: 18px; }
.side-card h2 { font-size: 1.15rem; }
.side-card p { color: var(--muted); font-size: .9rem; }
.side-card .button { width: 100%; font-size: .9rem; }

.faq details { margin-bottom: .8rem; border: 1px solid var(--line); background: #fff; border-radius: 14px; }
.faq summary { padding: 1rem 1.2rem; color: var(--navy); font-weight: 800; cursor: pointer; }
.faq details p { padding: 0 1.2rem 1rem; color: var(--muted); }

.site-footer { padding: 3rem 0; color: #c8d7e3; background: #0b2236; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer h2 { color: #fff; font-size: 1.1rem; }
.site-footer p, .site-footer a { color: #c8d7e3; font-size: .9rem; }
.site-footer nav { display: grid; gap: .45rem; }
.footer-bottom { margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  width: min(420px, calc(100% - 2rem));
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin-top: 0; color: var(--muted); font-size: .87rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.cookie-actions .button { min-height: 40px; padding: .5rem .8rem; font-size: .82rem; }

@media (max-width: 900px) {
  .hero-grid, .article-layout, .official-cta { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { max-height: 420px; }
  .article-layout { gap: 2rem; }
  .side-card { position: static; }
  .trust-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 74px;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: .7rem;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .card-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 2rem; }
  .hero-art::before { inset: -10px 10% 15% -10px; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.25rem); }
}

@media (prefers-reduced-motion: no-preference) {
  a, button, .card { transition: color .2s, background-color .2s, border-color .2s, transform .2s, box-shadow .2s; }
}

@media print {
  .site-header, .independent-note, .cookie-banner, .hero-art, .side-card { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; }
}
