@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink-900: #0B1F33;
  --ink-800: #15324D;
  --ink-700: #1F4866;
  --teal-600: #0F8C82;
  --teal-500: #14B8A6;
  --teal-50: #E7F6F4;
  --bg: #F6F7F9;
  --surface: #FFFFFF;
  --border: #E3E7EC;
  --text-900: #1B2430;
  --text-700: #3C4452;
  --text-500: #6B7280;
  --text-on-dark: #E7EAEE;
  --text-on-dark-muted: #9FB0C2;
  --amber-600: #B7791F;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(11, 31, 51, 0.06), 0 1px 1px rgba(11, 31, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 31, 51, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 31, 51, 0.16);
  --max-width: 1180px;
  --font-display: 'Libre Franklin', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-700);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }

p { margin: 0 0 1em; }

a { color: var(--teal-600); text-decoration: none; }
a:hover { text-decoration: underline; }

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

ul, ol { padding-left: 1.25em; }

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }

.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--dark {
  background: var(--ink-900);
  color: var(--text-on-dark-muted);
}

.section--dark h2, .section--dark h3 { color: #FFFFFF; }

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lede {
  font-size: 19px;
  color: var(--text-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  text-decoration: none;
  line-height: 1;
}

.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--teal-600);
  color: #fff;
}
.btn--primary:hover { background: #0C746B; }

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); }

.btn--secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink-900);
}
.btn--secondary:hover { border-color: var(--ink-900); }

.btn--block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }

.brand__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand__mark img { width: 100%; height: 100%; }

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-900);
}
.brand__name span {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-500);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__links a {
  color: var(--text-700);
  font-weight: 500;
  font-size: 15px;
}

.main-nav__links a:hover,
.main-nav__links a[aria-current="page"] {
  color: var(--ink-900);
  text-decoration: none;
}

.main-nav__links a[aria-current="page"] {
  font-weight: 700;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ink-900);
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .main-nav__links a {
    display: block;
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
  }
  .header__actions { width: 100%; }
  .header__actions .btn { width: 100%; }
}

.hero {
  padding: 72px 0 0;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  margin-bottom: 22px;
}

.hero__lede {
  font-size: 18px;
  color: var(--text-500);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero__trust div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-900);
}
.hero__trust div span {
  font-size: 13px;
  color: var(--text-500);
}

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,51,0) 45%, rgba(11,31,51,0.55) 100%);
}

.hero__media-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero__media-card i { font-size: 26px; color: var(--teal-600); }
.hero__media-card strong { display: block; font-size: 14px; color: var(--ink-900); }
.hero__media-card span { font-size: 12.5px; color: var(--text-500); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16 / 10; order: -1; }
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-strip__item {
  background: var(--surface);
  padding: 26px 22px;
  text-align: center;
}
.stat-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--ink-900);
}
.stat-strip__item span {
  font-size: 13.5px;
  color: var(--text-500);
}

@media (max-width: 720px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

.grid {
  display: grid;
  gap: 24px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--text-500); font-size: 15px; margin-bottom: 0; }

.feature-card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--border);
}

.timeline__step {
  position: relative;
  padding: 0 14px;
  text-align: left;
}

.timeline__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--teal-600);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.timeline__step h3 { font-size: 16px; margin-bottom: 6px; }
.timeline__step p { font-size: 14px; color: var(--text-500); margin-bottom: 0; }

@media (max-width: 980px) {
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .timeline::before { left: 23px; top: 0; bottom: 0; right: auto; width: 2px; height: auto; }
  .timeline__step { padding-left: 64px; }
  .timeline__num { position: absolute; left: 0; top: -4px; margin-bottom: 0; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
}
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-700);
}
.check-list li:last-child { border-bottom: none; }
.check-list i { color: var(--teal-600); font-size: 19px; flex-shrink: 0; margin-top: 2px; }

.value-card {
  display: flex;
  gap: 16px;
}
.value-card i {
  font-size: 26px;
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.value-card h3 { font-size: 17px; margin-bottom: 6px; }
.value-card p { color: var(--text-500); font-size: 14.5px; margin-bottom: 0; }

.cta-banner {
  background: var(--ink-900);
  background-image: radial-gradient(circle at 85% 20%, rgba(20,184,166,0.18), transparent 55%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: var(--text-on-dark-muted); margin-bottom: 0; max-width: 480px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; background: var(--surface); }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: #FAFBFC; font-family: var(--font-display); font-weight: 700; color: var(--ink-900); }
tr:last-child td { border-bottom: none; }

.legal-content h2 { font-size: 22px; margin-top: 2.2em; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 17px; margin-top: 1.6em; }
.legal-content p, .legal-content li { color: var(--text-700); font-size: 15.5px; }
.legal-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-500);
  font-size: 14px;
  margin-bottom: 8px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .legal-layout { grid-template-columns: 1fr; }
}
.legal-toc {
  position: sticky;
  top: 100px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 18px;
}
.legal-toc strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-500); margin-bottom: 10px; }
.legal-toc ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; counter-reset: toc; }
.legal-toc a { font-size: 14px; color: var(--text-700); }
.legal-toc a:hover { color: var(--teal-600); }

.page-banner {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-500);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-500); }
.breadcrumb a:hover { color: var(--teal-600); }
.page-banner h1 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 12px; }
.page-banner .lede { max-width: 640px; margin-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 940px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-card {
  background: var(--ink-900);
  color: var(--text-on-dark-muted);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h3 { color: #fff; font-size: 18px; margin-bottom: 18px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-info-item:first-of-type { border-top: none; padding-top: 0; }
.contact-info-item i { font-size: 20px; color: var(--teal-500); margin-top: 2px; flex-shrink: 0; }
.contact-info-item strong { display: block; color: #fff; font-size: 14.5px; margin-bottom: 2px; }
.contact-info-item a { color: var(--text-on-dark-muted); }
.contact-info-item a:hover { color: #fff; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-900);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(15,140,130,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-hint { font-size: 12.5px; color: var(--text-500); margin-top: 6px; }

.checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-500);
  margin-bottom: 22px;
}
.checkbox-field input { margin-top: 3px; }

.form-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #FFF8E8;
  border: 1px solid #F0DBA6;
  color: #6B4E0C;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13.5px;
  margin-bottom: 22px;
}
.form-note i { font-size: 18px; margin-top: 1px; flex-shrink: 0; }

.form-success {
  display: none;
  background: var(--teal-50);
  border: 1px solid #BCE6E0;
  color: var(--teal-600);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14.5px;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.form-success.is-visible { display: flex; }
.form-success i { font-size: 20px; }

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}
.map-frame iframe { width: 100%; height: 280px; border: 0; display: block; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
  padding: 20px 4px;
  cursor: pointer;
}
.faq-question i { flex-shrink: 0; font-size: 20px; color: var(--teal-600); transition: transform 0.2s ease; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding: 0 4px 20px; color: var(--text-500); font-size: 15px; margin: 0; }

.site-footer {
  background: var(--ink-900);
  color: var(--text-on-dark-muted);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.footer-brand strong { font-family: var(--font-display); color: #fff; font-size: 17px; }
.footer-brand img { width: 36px; height: 36px; }
.site-footer p { font-size: 14px; max-width: 280px; }
.site-footer h4 { color: #fff; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--text-on-dark-muted); font-size: 14.5px; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.footer-contact i { color: var(--teal-500); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: var(--text-on-dark-muted); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer-bottom-links a { color: var(--text-on-dark-muted); }
.footer-bottom-links a:hover { color: #fff; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-on-dark-muted);
  font-size: 17px;
}
.social-row a:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  z-index: 200;
  transform: translateY(140%);
  transition: transform 0.3s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.cookie-banner h2 { font-size: 16px; margin-bottom: 8px; }
.cookie-banner p { font-size: 13.5px; color: var(--text-500); margin-bottom: 18px; }
.cookie-banner p a { font-weight: 600; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn { flex: 1; white-space: nowrap; }
.cookie-banner__settings {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: none;
}
.cookie-banner__settings.is-open { display: block; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.cookie-toggle-row span { font-size: 13.5px; color: var(--text-700); }
.cookie-toggle-row small { display: block; color: var(--text-500); font-size: 12px; }
.switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--border); border-radius: 999px; transition: 0.2s;
}
.switch .slider::before {
  content: ""; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: 0.2s;
}
.switch input:checked + .slider { background: var(--teal-600); }
.switch input:checked + .slider::before { transform: translateX(18px); }
.switch input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }
.cookie-link-btn {
  background: none; border: none; color: var(--text-500); font-size: 13px; cursor: pointer;
  text-decoration: underline; padding: 0;
}

@media (max-width: 600px) {
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 20px; }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-500); }
