
:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --text: #1d2925;
  --muted: #64716c;
  --accent: #2f6654;
  --accent-dark: #244f41;
  --line: #dfe6e2;
  --soft: #e9f0ed;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 12px 35px rgba(29, 41, 37, .07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--text);
  white-space: nowrap;
}

.logo:hover { text-decoration: none; }

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 22px;
}

.nav a {
  color: var(--text);
  font-size: .94rem;
  padding: 8px 0;
}

.nav a:hover { color: var(--accent); text-decoration: none; }

.hero {
  padding: 78px 0 68px;
  background: linear-gradient(135deg, #edf3f0 0%, #f8faf9 58%, #e6efeb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--accent);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.2; margin-top: 0; }

h1 {
  font-size: clamp(2.15rem, 5vw, 4rem);
  letter-spacing: -.035em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

h3 { font-size: 1.2rem; margin-bottom: 10px; }

.lead {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 700px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.button {
  display: inline-block;
  margin-top: 22px;
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--accent);
}

.button:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  margin-left: 8px;
}

.section { padding: 72px 0; }
.section.alt { background: var(--surface); }

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.alt .card { background: var(--bg); }

.card p:last-child { margin-bottom: 0; }

.number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--accent);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 16px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding: 12px 0 12px 27px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.checklist li:last-child { border-bottom: 0; }

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.info-box {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 30px;
}

.page-hero {
  padding: 62px 0 50px;
  background: var(--soft);
}

.page-hero p { max-width: 760px; color: var(--muted); }

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px 20px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin: 24px 0;
}

.contact-item {
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

footer {
  background: #202a26;
  color: #dce4e0;
  padding: 38px 0 84px;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

footer a { color: #fff; }

.cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0,0,0,.15);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie p { margin: 0; font-size: .9rem; color: var(--muted); }
.cookie button {
  border: 0;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  padding: 10px 17px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}

.small { font-size: .92rem; color: var(--muted); }

@media (max-width: 820px) {
  .header-inner { align-items: flex-start; padding: 14px 0; flex-direction: column; }
  .nav { justify-content: flex-start; gap: 4px 16px; }
  .hero { padding: 56px 0 48px; }
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .hero-card { padding: 24px; }
}

@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 26px)); }
  h1 { font-size: 2.15rem; }
  .button { width: 100%; text-align: center; }
  .button.secondary { margin-left: 0; }
  .cookie { flex-direction: column; align-items: stretch; }
  .cookie button { width: 100%; }
}
