:root {
  --bg: #f4fbfb;
  --surface: #ffffff;
  --surface-soft: #e9f7f6;
  --ink: #073b4c;
  --muted: #506a72;
  --brand: #0f766e;
  --brand-dark: #075e58;
  --accent: #ffb703;
  --border: #cfe8e6;
  --shadow: 0 18px 45px rgba(7, 59, 76, .12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 99;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 251, 251, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-link { display: inline-flex; align-items: center; text-decoration: none; gap: .75rem; }
.logo-link img {
  width: 210px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .25rem;
  flex-wrap: wrap;
}
.nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: .65rem .8rem;
  border-radius: 999px;
  color: var(--ink);
}
.nav a:hover, .nav a.active { background: var(--surface-soft); color: var(--brand-dark); }
.nav a.cta-nav { background: var(--brand); color: #fff; }
.nav a.cta-nav:hover { background: var(--brand-dark); color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(46, 196, 182, .28), transparent 32rem), linear-gradient(135deg, #073b4c 0%, #075e58 100%);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -9rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  border: 2.5rem solid rgba(255,255,255,.08);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1rem 4.5rem;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.kicker {
  display: inline-flex;
  width: fit-content;
  padding: .35rem .75rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: #dffaf7;
  background: rgba(255,255,255,.08);
  font-weight: 800;
  letter-spacing: .02em;
  font-size: .9rem;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 6vw, 4.4rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); letter-spacing: -.03em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
.hero p.lead { font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: #e7fffc; max-width: 780px; }
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.hero-card strong { display: block; font-size: 1.2rem; margin-bottom: .75rem; }
.hero-card ul { margin: 0; padding-left: 1.2rem; color: #e7fffc; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  border: 2px solid transparent;
  min-height: 48px;
}
.button.primary { background: var(--accent); color: #102a2e; }
.button.primary:hover { filter: brightness(.96); }
.button.secondary { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.07); }
.button.secondary:hover { background: rgba(255,255,255,.16); }
.button.outline { color: var(--brand-dark); border-color: var(--brand); background: transparent; }
.button.outline:hover { background: var(--surface-soft); }

main section { padding: 4rem 1rem; }
.wrap { max-width: var(--max); margin: 0 auto; }
.section-head { max-width: 820px; margin-bottom: 2rem; }
.section-head p { font-size: 1.08rem; color: var(--muted); }
.grid { display: grid; gap: 1rem; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(7,59,76,.07);
}
.card.highlight { border-color: rgba(255, 183, 3, .65); box-shadow: 0 14px 35px rgba(255,183,3,.18); }
.card p { color: var(--muted); }
.card .link-more { font-weight: 800; color: var(--brand-dark); text-decoration: none; }
.card .link-more:hover { text-decoration: underline; }
.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-size: 1.55rem;
  margin-bottom: 1rem;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.panel {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.checklist li { position: relative; padding-left: 2rem; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: .85rem;
}
.note {
  border-left: 5px solid var(--accent);
  background: #fff8e1;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  color: #4d3b04;
}
.cta-section {
  background: linear-gradient(135deg, #073b4c 0%, #0f766e 100%);
  color: #fff;
}
.cta-section p { color: #e7fffc; max-width: 760px; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.2rem;
}
.faq details + details { margin-top: .75rem; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq details p { margin-top: .75rem; color: var(--muted); }
.breadcrumb { font-size: .95rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--brand-dark); font-weight: 700; text-decoration: none; }
.page-hero {
  padding: 3.8rem 1rem 3.3rem;
  background: linear-gradient(135deg, #073b4c 0%, #0f766e 100%);
  color: #fff;
}
.page-hero .wrap { max-width: 980px; }
.page-hero p { color: #e7fffc; font-size: 1.15rem; }
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.meta-list span {
  padding: .45rem .75rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  font-weight: 800;
  color: #e7fffc;
}
.table-like { display: grid; gap: .75rem; }
.row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
}
.row strong { color: var(--brand-dark); }
.site-footer {
  background: #062b38;
  color: #d7f4f1;
  padding: 2.5rem 1rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1.5rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.small { font-size: .92rem; color: #a9d8d4; }
.legal main { max-width: 900px; margin: 0 auto; padding: 3rem 1rem; }
.legal h1 { font-size: 2.4rem; color: var(--ink); }
.legal h2 { font-size: 1.55rem; margin-top: 2rem; }

@media (max-width: 900px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 3.5rem; }
  .grid.three, .grid.two, .split, .footer-inner { grid-template-columns: 1fr; }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav a { font-size: .9rem; padding: .55rem .65rem; }
  .logo-link img { width: 170px; max-height: 62px; }
  main section { padding: 3rem 1rem; }
  .hero-inner { padding-bottom: 3rem; }
}
