:root {
  color-scheme: light;
  --bg: #fbfcf8;
  --surface: #ffffff;
  --surface-soft: #eef6f0;
  --surface-blue: #edf5f8;
  --ink: #17201c;
  --muted: #5d6a62;
  --line: #d9e1db;
  --brand: #23684a;
  --brand-strong: #174a34;
  --accent: #c95f3f;
  --accent-soft: #fff1eb;
  --focus: #315dd8;
  --danger: #b3261e;
  --shadow: 0 18px 46px rgba(23, 32, 28, 0.09);
  --radius: 8px;
  --tap: 44px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.has-sticky-cta {
  padding-bottom: 78px;
}

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

a {
  color: var(--brand-strong);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select {
  min-height: var(--tap);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  background: rgba(251, 252, 248, 0.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--muted);
  background: var(--surface);
}

.lang-link[aria-current="true"] {
  color: var(--brand-strong);
  border-color: var(--brand);
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: var(--surface-blue);
}

.section.soft {
  background: var(--surface-soft);
}

.section.glow {
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 95, 63, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfcf8 0%, #eef6f0 100%);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: 1.65rem;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.28;
}

p {
  margin: 0 0 1rem;
}

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

.legal-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.03rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0.82rem 1rem;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease;
}

.btn:hover {
  background: var(--brand-strong);
}

.btn:active {
  transform: translateY(1px);
}

.btn.secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--brand-strong);
}

.btn.secondary:hover {
  background: var(--surface-soft);
}

.btn[disabled] {
  opacity: 0.64;
  cursor: wait;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 28px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

@media (min-width: 760px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .section {
    padding: 80px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

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