:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, .1);
  --bg: #f5f5f7;
  --panel: #ffffff;
  --soft: #eceef1;
  --accent: #a9efd6;
  --accent-ink: #08231d;
  --teal: #16745d;
  --radius: 8px;
  --button-shadow: 0 14px 32px rgba(20, 22, 21, .12);
  --surface-shadow: 0 24px 70px rgba(20, 22, 21, .1), 0 3px 12px rgba(20, 22, 21, .06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfbfd 0%, var(--bg) 44%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  line-height: 1.65;
}

.nav,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 52px rgba(20, 22, 21, .1);
  backdrop-filter: blur(24px);
}

.brand {
  font-size: 20px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.nav-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(236, 238, 241, .86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.language-switch a {
  min-width: 38px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  padding: 0 10px;
}

.language-switch a.active {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(20, 22, 21, .08);
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.nav-links a,
.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
  padding: 0 10px;
  overflow-wrap: anywhere;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #bdf7e4, var(--accent));
  color: var(--accent-ink) !important;
  padding: 11px 15px !important;
  font-weight: 900;
  box-shadow: var(--button-shadow);
  text-align: center;
}

.wrap {
  width: min(1040px, calc(100% - 40px));
  margin: 68px auto 80px;
}

.hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  border: 1px solid #c7e9dd;
  border-radius: var(--radius);
  background: #eef8f4;
  color: var(--teal);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

h1 {
  max-width: 860px;
  margin: 18px 0 16px;
  font-size: 60px;
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  overflow-wrap: anywhere;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.facts div,
.card,
.callout {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--surface-shadow);
}

.facts span,
.card span {
  color: var(--teal);
  font-weight: 800;
}

.facts strong,
.card strong {
  display: block;
  overflow-wrap: anywhere;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.card h2 {
  margin: 6px 0 8px;
  font-size: 24px;
  overflow-wrap: anywhere;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.callout {
  margin-top: 18px;
  background: #eef8f4;
  border-color: #c7e9dd;
}

.callout p {
  margin: 0;
  color: #16483f;
}

.footer {
  margin-bottom: 20px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 24px);
  }

  .nav-meta {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .language-switch {
    align-self: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }
}

/* 2026 agency theme alignment. */
:root {
  --ink: #171612;
  --muted: #6e6a61;
  --line: #ded9cf;
  --bg: #f4f2ed;
  --panel: #ffffff;
  --soft: #ece8df;
  --accent: #1f7a5f;
  --accent-ink: #ffffff;
  --teal: #1f7a5f;
  --button-shadow: none;
  --surface-shadow: none;
}

body {
  background: var(--bg);
}

.nav,
.footer {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.language-switch {
  background: var(--panel);
  box-shadow: none;
}

.language-switch a.active {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
}

.button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink) !important;
  box-shadow: none;
}

.wrap {
  margin-top: 70px;
}

.eyebrow {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
}

h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 760;
}

.facts div,
.card,
.callout {
  background: var(--panel);
  border-color: var(--line);
  box-shadow: none;
}

.facts span,
.card span {
  color: var(--muted);
}

.callout {
  background: var(--panel);
}

.callout p {
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav,
  .footer {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .nav-meta {
    width: 100%;
    justify-content: flex-start;
  }

  .wrap {
    width: calc(100% - 32px);
    margin: 44px auto 60px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .facts,
  .grid {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .footer-links {
    width: 100%;
  }

  .nav-links a,
  .footer-links a,
  .button {
    width: 100%;
    justify-content: center;
  }
}
