:root {
  --bg: #f6f4ef;
  --card: rgba(255,255,255,0.86);
  --card-strong: #ffffff;
  --text: #183228;
  --muted: #60746b;
  --accent: #1f7a68;
  --accent-2: #d88a52;
  --line: rgba(24, 50, 40, 0.12);
  --shadow: 0 20px 40px rgba(23, 61, 50, 0.08);
  --radius: 26px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216,138,82,0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(31,122,104,0.12), transparent 30%),
    linear-gradient(180deg, #fbfaf7, var(--bg));
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.shell { width: min(1200px, calc(100% - 32px)); margin: 0 auto; padding: 20px 0 56px; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: min(240px, 56vw); height: auto; }
.langbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.langbar a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}
.langbar a.active {
  color: var(--text);
  background: #fff;
  border-color: rgba(31,122,104,0.24);
}
.hero {
  display: grid;
  gap: 22px;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(245,250,247,0.82)),
    radial-gradient(circle at 12% 0%, rgba(31,122,104,0.08), transparent 30%);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}
.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 72ch;
}
.badge-row, .cta-row, .card-grid, .bullet-list, .related-grid, .section-grid {
  display: grid;
  gap: 14px;
}
.badge-row {
  grid-template-columns: repeat(auto-fit, minmax(160px, max-content));
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(31,122,104,0.08);
  color: var(--accent);
  font-weight: 800;
}
.cta-row {
  grid-template-columns: repeat(auto-fit, minmax(220px, max-content));
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid rgba(31,122,104,0.18);
  background: linear-gradient(135deg, var(--accent), #215245);
  color: #f8fffb;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(31,122,104,0.18);
}
.button.secondary {
  background: rgba(255,255,255,0.88);
  color: var(--text);
}
.note {
  color: var(--muted);
  font-size: 0.92rem;
}
.hero--policy {
  gap: 16px;
}
.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.policy-stack {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.policy-stack .section {
  margin-top: 0;
}
.section {
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
}
.section h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.section > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 18px;
}
.card, .related-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border-radius: 22px;
  background: var(--card-strong);
  border: 1px solid var(--line);
}
.card small, .related-card small {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card strong, .related-card strong {
  font-size: 1.04rem;
}
.card p, .related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.mini-link {
  color: var(--accent);
  font-weight: 800;
}
.section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.bullet-list {
  margin-top: 18px;
  grid-template-columns: 1fr;
}
.bullet {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  line-height: 1.65;
}
.bullet::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.step-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
}
.step b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(31,122,104,0.1);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.faq-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
}
.faq-item strong {
  display: block;
  margin-bottom: 8px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}
.breadcrumbs span:last-child { color: var(--text); font-weight: 700; }
.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.section-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}
.section-nav__link.active {
  color: var(--text);
  border-color: rgba(31,122,104,0.24);
  background: rgba(31,122,104,0.08);
}
.related-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}
.footer {
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  color: var(--muted);
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.84);
}
.footer__copy {
  margin: 0;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.95rem;
}
.footer__link {
  color: var(--accent);
  font-weight: 800;
}
.footer__link--current {
  color: var(--text);
  text-decoration: none;
}
.footer__divider {
  color: rgba(96, 116, 107, 0.66);
}
@media (max-width: 900px) {
  .section-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 20px, 100%); }
  .topbar { padding: 14px; }
  .section, .hero, .footer { padding: 18px; border-radius: 22px; }
  .cta-row, .badge-row { grid-template-columns: 1fr; }
  .footer__legal { justify-content: flex-start; }
}
