﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');
:root {
  --c-black: #0e0f0c;
  --c-white: #ffffff;
  --c-green: #9fe870;
  --c-dark-green: #163300;
  --c-mint: #e2f6d5;
  --c-pastel: #cdffad;
  --c-warm: #454745;
  --c-gray: #868685;
  --c-surface: #e8ebe6;
  --c-bg: #f9faf8;
  --c-nav-hover: rgba(211,242,192,0.4);
  --c-btn-secondary: rgba(22,51,0,0.08);
  --c-danger: #d03238;
  --c-success: #054d28;
  --r-pill: 9999px;
  --r-xl: 40px;
  --r-lg: 30px;
  --r-md: 16px;
  --r-sm: 10px;
  --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
  --font: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
  --nav-h: 72px;
  --max-w: 1280px;
  --gutter: clamp(1rem, 4vw, 2rem);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--c-black);
  background: var(--c-white);
  font-feature-settings: "calt";
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.display-mega {
  font-size: clamp(3rem, 8vw, 7.875rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: normal;
  font-feature-settings: "calt";
}
.display-hero {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
}
.display-section {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
}
.display-sub {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
}
.text-xl {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.022em;
  font-feature-settings: "calt";
}
.text-lg {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.text-semibold {
  font-weight: 600;
  letter-spacing: -0.006em;
}
.text-muted { color: var(--c-gray); }
.text-warm { color: var(--c-warm); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  font-feature-settings: "calt";
  letter-spacing: -0.006em;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.95); }
.btn-primary {
  background: var(--c-green);
  color: var(--c-dark-green);
}
.btn-primary:hover { background: var(--c-pastel); }
.btn-secondary {
  background: var(--c-btn-secondary);
  color: var(--c-black);
}
.btn-dark {
  background: var(--c-black);
  color: var(--c-white);
}
.btn-dark:hover { background: var(--c-warm); }
.btn-sm { font-size: 0.875rem; padding: 6px 14px; }
.btn-lg { font-size: 1.125rem; padding: 14px 28px; }
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-ring);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-size: 1.25rem;
  font-weight: 900;
  font-feature-settings: "calt";
  color: var(--c-black);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 600;
  font-feature-settings: "calt";
  padding: 8px 14px;
  border-radius: var(--r-pill);
  color: var(--c-warm);
  transition: background 0.15s, color 0.15s;
}
.nav__link:hover, .nav__link.active {
  background: var(--c-nav-hover);
  color: var(--c-dark-green);
}
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-black);
  border-radius: 2px;
  transition: 0.3s;
}
.hero {
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 6rem);
  background: var(--c-black);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(159,232,112,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(159,232,112,0.15);
  border: 1px solid rgba(159,232,112,0.3);
  color: var(--c-green);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__title {
  color: var(--c-white);
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.hero__title em {
  color: var(--c-green);
  font-style: normal;
}
.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 5rem);
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero__stat {
  background: rgba(255,255,255,0.04);
  padding: 2rem;
  text-align: center;
}
.hero__stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--c-green);
  line-height: 1;
  font-feature-settings: "calt";
  margin-bottom: 0.5rem;
}
.hero__stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-alt { background: var(--c-bg); }
.section__header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section__tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-dark-green);
  background: var(--c-mint);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section__title { margin-bottom: 1rem; }
.section__desc {
  font-size: 1.125rem;
  color: var(--c-warm);
  max-width: 560px;
  line-height: 1.6;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-ring);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(14,15,12,0.18) 0px 12px 40px;
}
.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-dark-green);
  background: var(--c-mint);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card__title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.022em;
  font-feature-settings: "calt";
  margin-bottom: 0.75rem;
  color: var(--c-black);
}
.card__desc {
  font-size: 0.9375rem;
  color: var(--c-warm);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}
.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--c-surface);
}
.card__date { font-size: 0.8125rem; color: var(--c-gray); font-weight: 500; }
.card__read {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-dark-green);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.card:hover .card__read { gap: 8px; }
.article-hero {
  background: var(--c-black);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.article-hero__inner { max-width: 800px; }
.article-hero__tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-green);
  background: rgba(159,232,112,0.15);
  border: 1px solid rgba(159,232,112,0.3);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-hero__title {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--c-white);
  font-feature-settings: "calt";
  margin-bottom: 1.25rem;
}
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
}
.article-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.article-hero__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: 2.5rem;
}
.article-body { max-width: 800px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) var(--gutter); }
.article-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  font-feature-settings: "calt";
  margin: 2.5rem 0 1rem;
  color: var(--c-black);
}
.article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  font-feature-settings: "calt";
  margin: 2rem 0 0.75rem;
  color: var(--c-black);
}
.article-body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--c-warm);
  margin-bottom: 1.25rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--c-warm);
  margin-bottom: 0.4rem;
}
.article-body a {
  color: var(--c-dark-green);
  font-weight: 600;
  border-bottom: 1px solid var(--c-green);
  transition: color 0.15s;
}
.article-body a:hover { color: var(--c-black); }
.article-body strong { font-weight: 700; color: var(--c-black); }
.article-body img {
  width: 100%;
  border-radius: var(--r-lg);
  margin: 2rem 0;
  box-shadow: var(--shadow-ring);
}
.article-body figcaption {
  font-size: 0.8125rem;
  color: var(--c-gray);
  text-align: center;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}
.info-box {
  background: var(--c-mint);
  border-left: 4px solid var(--c-green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.info-box p { margin: 0; color: var(--c-dark-green); font-size: 0.9375rem; }
.coverage-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2.5rem;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-ring);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.coverage-table th {
  background: var(--c-black);
  color: var(--c-white);
  font-weight: 700;
  padding: 1rem 1.25rem;
  text-align: left;
  font-feature-settings: "calt";
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.coverage-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--c-surface);
  color: var(--c-warm);
}
.coverage-table tr:last-child td { border-bottom: none; }
.coverage-table tr:hover td { background: var(--c-bg); }
.coverage-table .badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-green { background: var(--c-mint); color: var(--c-dark-green); }
.badge-yellow { background: #fff9c4; color: #7a5c00; }
.badge-gray { background: var(--c-surface); color: var(--c-warm); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
}
.stat-box {
  background: var(--c-white);
  padding: 2rem 1.75rem;
  text-align: center;
}
.stat-box__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--c-black);
  font-feature-settings: "calt";
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-box__num span { color: var(--c-green); }
.stat-box__label {
  font-size: 0.875rem;
  color: var(--c-gray);
  font-weight: 500;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-ring);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(14,15,12,0.15) 0px 8px 32px;
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--c-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.feature-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  font-feature-settings: "calt";
  margin-bottom: 0.625rem;
}
.feature-card__desc {
  font-size: 0.9375rem;
  color: var(--c-warm);
  line-height: 1.6;
}
.contact-section { background: var(--c-black); padding: clamp(3rem, 6vw, 5rem) 0; }
.contact-section .section__tag { background: rgba(159,232,112,0.15); color: var(--c-green); }
.contact-section .section__title { color: var(--c-white); }
.contact-section .section__desc { color: rgba(255,255,255,0.55); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { color: rgba(255,255,255,0.7); }
.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(159,232,112,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-info__val {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  color: var(--c-white);
  font-family: var(--font);
  font-size: 1rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  font-feature-settings: "calt";
}
.form-input:focus { border-color: var(--c-green); box-shadow: 0 0 0 3px rgba(159,232,112,0.15); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-success {
  background: rgba(5,77,40,0.3);
  border: 1px solid rgba(159,232,112,0.4);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  color: var(--c-green);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.form-error {
  background: rgba(208,50,56,0.2);
  border: 1px solid rgba(208,50,56,0.4);
  border-radius: var(--r-md);
  padding: 0.875rem 1.25rem;
  color: #ff8a8e;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.footer {
  background: var(--c-black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand {}
.footer__logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--c-white);
  font-feature-settings: "calt";
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer__link {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer__link:hover { color: var(--c-green); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer__legal a:hover { color: var(--c-green); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--c-green); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.related { padding: clamp(2rem, 5vw, 4rem) 0; background: var(--c-bg); }
.page-hero { background: var(--c-black); padding: clamp(3rem, 6vw, 5rem) 0; }
.page-hero__title { color: var(--c-white); margin-bottom: 1rem; }
.page-hero__desc { color: rgba(255,255,255,0.55); max-width: 560px; font-size: 1.125rem; }
.page-body {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 5rem) var(--gutter);
}
.page-body h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 900;
  line-height: 1.1;
  font-feature-settings: "calt";
  margin: 2.5rem 0 1rem;
}
.page-body h3 { font-size: 1.1875rem; font-weight: 700; margin: 1.75rem 0 0.625rem; }
.page-body p { font-size: 1rem; line-height: 1.8; color: var(--c-warm); margin-bottom: 1.125rem; }
.page-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-body li { font-size: 1rem; color: var(--c-warm); line-height: 1.7; margin-bottom: 0.3rem; }
.page-body a { color: var(--c-dark-green); font-weight: 600; border-bottom: 1px solid var(--c-green); }
.page-body strong { font-weight: 700; color: var(--c-black); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.team-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-ring);
  text-align: center;
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-mint);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--c-dark-green);
}
.team-card__name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card__role { font-size: 0.875rem; color: var(--c-gray); }
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-black);
  border-top: 2px solid var(--c-green);
  padding: 1.25rem var(--gutter);
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease;
}
.cookie-banner.visible { display: flex; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  flex: 1;
  min-width: 240px;
}
.cookie-banner__text a { color: var(--c-green); font-weight: 600; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.disclaimer {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--c-gray);
  line-height: 1.6;
  margin: 2rem 0;
}
.map-img-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
  margin: 2rem 0;
}
.map-img-wrapper img { width: 100%; max-height: 420px; object-fit: contain; background: var(--c-bg); }
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--c-white); padding: 1rem var(--gutter) 1.5rem; flex-direction: column; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-bottom: 1px solid var(--c-surface); }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .hero__stats { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .coverage-table { font-size: 0.8125rem; }
  .coverage-table th, .coverage-table td { padding: 0.625rem 0.75rem; }
}

