:root {
  --bg: #ffffff;
  --surface: #f5f7fa;
  --surface-strong: #e9eef4;
  --text: #1f2937;
  --muted: #5f6b7a;
  --slate: #253a63;
  --slate-dark: #172745;
  --teal: #217a78;
  --teal-dark: #155e5c;
  --border: #d6dee8;
  --focus: #0b6f6b;
  --danger: #9b1c1c;
  --success: #1c6b3c;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate); text-underline-offset: 0.18em; }
a:hover { color: var(--teal-dark); }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--slate-dark);
  color: #fff;
  padding: .8rem 1rem;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 900px); }

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.98);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  font-weight: 800;
  color: var(--slate-dark);
  text-decoration: none;
  letter-spacing: -.02em;
}
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; flex-wrap: wrap; }
.nav-list a { text-decoration: none; font-weight: 650; font-size: .95rem; }

.hero { padding: 5rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 3.5rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .11em; font-size: .78rem; font-weight: 800; color: var(--teal-dark); margin: 0 0 .85rem; }
h1, h2, h3 { color: var(--slate-dark); line-height: 1.17; margin-top: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 4.9rem); letter-spacing: -.045em; margin-bottom: 1.2rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.035em; margin-bottom: 1.1rem; }
h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 64ch; }
.notice { border-left: 4px solid var(--teal); padding-left: 1rem; color: var(--muted); margin-top: 1.5rem; }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin: 1.6rem 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1rem;
  border-radius: 6px;
  border: 2px solid var(--slate);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { background: var(--slate); color: #fff; }
.button-primary:hover { background: var(--slate-dark); color: #fff; }
.button-secondary { background: #fff; color: var(--slate); }
.hero-figure, figure { margin: 0; }
.hero-figure img, .content-with-image img { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
figcaption { font-size: .84rem; color: var(--muted); margin-top: .55rem; }

.section { padding: 4.7rem 0; }
.section-tinted { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-heading { max-width: 790px; margin-bottom: 2rem; }
.info-grid, .checklist-grid { display: grid; gap: 1rem; }
.info-grid.three { grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.card, .check-item, .privacy-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem;
}
.checklist-grid { grid-template-columns: repeat(3, 1fr); }
.check-item p, .card p { margin-bottom: 0; color: var(--muted); }
.content-with-image { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start; }

.faq-list details { border-top: 1px solid var(--border); padding: 1rem 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary { cursor: pointer; font-weight: 800; color: var(--slate-dark); }
.faq-list p { color: var(--muted); max-width: 70ch; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.privacy-box { margin-top: 1.5rem; background: var(--surface); }
.contact-form { border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem; background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
label { display: block; font-weight: 750; margin-bottom: .4rem; }
.optional { font-weight: 500; color: var(--muted); font-size: .85rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #9aa8ba;
  border-radius: 6px;
  padding: .72rem .78rem;
  color: var(--text);
  background: #fff;
}
textarea { resize: vertical; min-height: 120px; }
input:focus, select:focus, textarea:focus, button:focus, a:focus, summary:focus {
  outline: 3px solid rgba(33, 122, 120, .25);
  outline-offset: 2px;
}
.consent-row { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; margin: .4rem 0 1rem; }
.consent-row input { width: auto; margin-top: .35rem; }
.consent-row label { font-weight: 600; }
.form-status { min-height: 1.5em; margin: .3rem 0 1rem; font-weight: 700; }
.form-status[data-state="error"] { color: var(--danger); }
.form-status[data-state="success"] { color: var(--success); }

.site-footer { background: var(--slate-dark); color: #edf3f8; padding: 2.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.site-footer p { color: #cbd5e1; max-width: 65ch; }
.site-footer a { color: #fff; display: block; margin-bottom: .45rem; }

@media (max-width: 920px) {
  .hero-grid, .content-with-image, .contact-grid { grid-template-columns: 1fr; }
  .info-grid.three, .checklist-grid { grid-template-columns: 1fr 1fr; }
  .site-header { position: static; }
  .header-inner { align-items: flex-start; flex-direction: column; padding-block: 1rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding-top: 3rem; }
  .section { padding: 3.5rem 0; }
  .info-grid.three, .checklist-grid, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .nav-list { gap: .65rem 1rem; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.trap{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden}
