@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --color-bg:           #F7F6F3;
  --color-surface:      #FFFFFF;
  --color-surface-2:    #F0EEE9;
  --color-border:       #E2DED6;
  --color-text:         #1A1917;
  --color-text-muted:   #6B6660;
  --color-accent:       #2D6A4F;
  --color-accent-2:     #40916C;
  --color-accent-light: #D8F3DC;
  --color-heading:      #111110;
  --color-link:         #2D6A4F;
  --font-display:       'DM Serif Display', Georgia, serif;
  --font-body:          'DM Sans', system-ui, sans-serif;
  --radius-sm:   6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --header-h:   68px;
  --max-w:      1160px;
  --section-py: 96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4em; }
button { cursor: pointer; font-family: var(--font-body); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--color-text); }
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.75;
}
.text-muted  { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section      { padding: var(--section-py) 0; }
.section--alt { background: var(--color-surface); }
.section--dark { background: #111110; color: #F7F6F3; }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #F7F6F3; }
.section--dark p,
.section--dark .lead { color: #B0ACA6; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 500;
  font-family: var(--font-body);
  border: 2px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-primary:hover {
  background: #1B4332; border-color: #1B4332;
  text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-outline { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline:hover {
  background: var(--color-accent); color: #fff;
  text-decoration: none; transform: translateY(-1px);
}
.btn-ghost { background: transparent; color: var(--color-text-muted); border-color: var(--color-border); }
.btn-ghost:hover { background: var(--color-surface); color: var(--color-text); text-decoration: none; }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .22s ease, transform .22s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--color-accent);
}
.card__icon i { font-size: 22px; }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p   { color: var(--color-text-muted); font-size: .95rem; line-height: 1.7; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--green   { background: var(--color-accent-light); color: var(--color-accent); }
.badge--neutral { background: var(--color-surface-2); color: var(--color-text-muted); }

.divider {
  width: 48px; height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 20px 0 28px;
}
.divider--center { margin-left: auto; margin-right: auto; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header p { margin-top: 14px; }
.section-header .divider { margin: 16px auto 0; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(247,246,243,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  display: flex; align-items: center;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__img {
  width: 38px; height: 38px;
  border-radius: 8px; overflow: hidden; flex-shrink: 0;
  background: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
}
.logo__img img { width: 100%; height: 100%; object-fit: cover; }
.logo__text { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-heading); line-height: 1.1; }
.logo__text span { color: var(--color-accent); }
.logo:hover { text-decoration: none; }

.nav-links { display: flex; align-items: center; list-style: none; padding: 0; gap: 4px; }
.nav-links a {
  padding: 7px 14px; border-radius: 100px;
  font-size: .9rem; font-weight: 500;
  color: var(--color-text-muted); transition: all .18s ease;
}
.nav-links a:hover,
.nav-links a.active { background: var(--color-surface-2); color: var(--color-text); text-decoration: none; }
.nav-cta { margin-left: 12px; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; padding: 4px;
  border-radius: var(--radius-sm); cursor: pointer;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--color-text); border-radius: 2px; transition: all .22s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-surface); z-index: 999;
  padding: 24px; overflow-y: auto;
  flex-direction: column; gap: 4px;
  border-top: 1px solid var(--color-border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 18px; border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 500;
  color: var(--color-text); transition: background .18s;
}
.mobile-nav a:hover { background: var(--color-surface-2); text-decoration: none; }
.mobile-nav .divider-line { height: 1px; background: var(--color-border); margin: 8px 0; }

.hero { padding: 80px 0; overflow: hidden; position: relative; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(45,106,79,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-content .badge  { margin-bottom: 20px; }
.hero-content h1      { margin-bottom: 20px; }
.hero-content .lead   { margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.hero-stat__num   { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-accent); line-height: 1; }
.hero-stat__label { font-size: .82rem; color: var(--color-text-muted); margin-top: 4px; }
.hero-visual {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual__badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-radius: var(--radius-md); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md);
}
.hero-visual__badge i { color: var(--color-accent); font-size: 20px; }
.hero-visual__badge-text { font-size: .82rem; }
.hero-visual__badge-text strong { display: block; font-weight: 600; color: var(--color-heading); }
.hero-visual__badge-text span   { color: var(--color-text-muted); }

.features-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
}
.features-strip-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.feature-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 180px; }
.feature-item i      { font-size: 26px; color: var(--color-accent); flex-shrink: 0; }
.feature-item strong { display: block; font-size: .9rem; font-weight: 600; }
.feature-item span   { font-size: .82rem; color: var(--color-text-muted); }

.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-block--reverse .split-img     { order: 2; }
.split-block--reverse .split-content { order: 1; }
.split-img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content .badge  { margin-bottom: 16px; }
.split-content h2      { margin-bottom: 16px; }
.split-content p       { color: var(--color-text-muted); margin-bottom: 16px; }
.split-content ul      { color: var(--color-text-muted); font-size: .95rem; line-height: 2; padding-left: 1.2em; }
.split-content ul li::marker { color: var(--color-accent); }
.split-content .btn    { margin-top: 28px; }

.topic-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .22s ease, transform .22s ease;
  display: flex; flex-direction: column;
}
.topic-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.topic-card__img { aspect-ratio: 16/9; overflow: hidden; }
.topic-card__img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
}
.topic-card:hover .topic-card__img img { transform: scale(1.04); }
.topic-card__body  { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.topic-card__badge { margin-bottom: 10px; }
.topic-card__body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.topic-card__body p  { color: var(--color-text-muted); font-size: .9rem; line-height: 1.65; flex: 1; }
.topic-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: .88rem; font-weight: 500; color: var(--color-accent);
}
.topic-card__link i { transition: transform .18s; font-size: 14px; }
.topic-card:hover .topic-card__link i { transform: translateX(4px); }

.story-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; }
.story-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.story-card__avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--color-surface-2); }
.story-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.story-card__name { font-weight: 600; font-size: .95rem; }
.story-card__meta { font-size: .8rem; color: var(--color-text-muted); }
.story-card__result {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 600;
  color: var(--color-accent); background: var(--color-accent-light);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 14px;
}
.story-card p { font-size: .92rem; color: var(--color-text-muted); line-height: 1.7; }

.stat-block {
  text-align: center; padding: 36px 24px;
  border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border);
}
.stat-block__num   { font-family: var(--font-display); font-size: 2.8rem; color: var(--color-accent); line-height: 1; margin-bottom: 8px; }
.stat-block__label { font-size: .88rem; color: var(--color-text-muted); }

.cta-banner {
  background: var(--color-accent); border-radius: var(--radius-xl);
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-white { background: #fff; color: var(--color-accent); border-color: #fff; }
.cta-banner .btn-white:hover { background: #f0fdf4; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

.site-footer { background: #111110; color: #B0ACA6; padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo__text { color: #fff; }
.footer-brand p { font-size: .9rem; color: #B0ACA6; line-height: 1.7; margin-top: 14px; max-width: 300px; }
.footer-brand .logo__img { background: var(--color-accent); }
.footer-col h4 {
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; color: #B0ACA6; transition: color .18s; }
.footer-col ul a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px; font-size: .82rem;
}
.footer-bottom a { color: #B0ACA6; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; }

.page-hero { padding: 64px 0 56px; background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.page-hero .badge  { margin-bottom: 14px; }
.page-hero h1      { margin-bottom: 14px; }
.page-hero .lead   { max-width: 640px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--color-text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb i { font-size: 10px; }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: .88rem; font-weight: 500; margin-bottom: 7px; color: var(--color-text); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: .95rem;
  background: var(--color-surface); color: var(--color-text);
  transition: border-color .18s, box-shadow .18s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(45,106,79,.12); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-message { padding: 14px 18px; border-radius: var(--radius-md); font-size: .9rem; display: none; }
.form-message.success { background: var(--color-accent-light); color: var(--color-accent); border: 1px solid rgba(45,106,79,.2); display: block; }
.form-message.error   { background: #fef2f2; color: #991b1b; border: 1px solid rgba(153,27,27,.2); display: block; }

.info-box { padding: 24px 28px; border-radius: var(--radius-md); border-left: 4px solid var(--color-accent); background: var(--color-accent-light); margin: 24px 0; }
.info-box p { color: #1B4332; font-size: .92rem; }
.note-box { padding: 20px 24px; border-radius: var(--radius-md); background: var(--color-surface-2); border: 1px solid var(--color-border); font-size: .9rem; color: var(--color-text-muted); }

.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 780px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 24px 28px;
  box-shadow: var(--shadow-lg); z-index: 9999;
  display: flex; align-items: center; gap: 24px;
  animation: slideUp .35s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner.hidden { display: none; }
.cookie-banner__text { flex: 1; font-size: .88rem; color: var(--color-text-muted); line-height: 1.55; }
.cookie-banner__text strong { color: var(--color-text); display: block; margin-bottom: 4px; }
.cookie-banner__text a { color: var(--color-accent); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.accordion-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 10px; }
.accordion-toggle {
  width: 100%; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--color-surface); border: none; text-align: left;
  font-family: var(--font-body); font-size: .97rem; font-weight: 500;
  color: var(--color-heading); cursor: pointer; transition: background .18s;
}
.accordion-toggle:hover { background: var(--color-surface-2); }
.accordion-toggle i { transition: transform .22s; flex-shrink: 0; color: var(--color-text-muted); font-size: 18px; }
.accordion-item.open .accordion-toggle i { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 22px 20px; background: var(--color-surface); font-size: .92rem; color: var(--color-text-muted); line-height: 1.75; }
.accordion-item.open .accordion-body { display: block; }

.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--color-border); }
table { width: 100%; border-collapse: collapse; }
th { background: var(--color-surface-2); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--color-text-muted); padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--color-border); }
td { padding: 13px 18px; font-size: .92rem; color: var(--color-text); border-bottom: 1px solid var(--color-border); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--color-bg); }

.prose h2 { margin: 40px 0 16px; }
.prose h3 { margin: 28px 0 12px; font-size: 1.15rem; }
.prose p  { margin-bottom: 16px; color: var(--color-text-muted); }
.prose ul, .prose ol { color: var(--color-text-muted); margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--color-text); }
.prose a { color: var(--color-accent); }

.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--color-border); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: ''; position: absolute; left: -24px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--color-accent); border: 2px solid var(--color-bg); box-shadow: 0 0 0 2px var(--color-accent);
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 6px; }
.timeline-item p  { font-size: .9rem; color: var(--color-text-muted); }

.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 12px; }
.contact-item__icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-accent); font-size: 20px; }
.contact-item strong { display: block; font-size: .88rem; margin-bottom: 4px; }
.contact-item span   { font-size: .9rem; color: var(--color-text-muted); }

.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal-content p, .legal-content li { font-size: .95rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin-bottom: 14px; }
.legal-last-updated { font-size: .82rem; color: var(--color-text-muted); padding: 10px 16px; background: var(--color-surface-2); border-radius: var(--radius-sm); display: inline-block; margin-bottom: 32px; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-gap-12 { display: flex; gap: 12px; align-items: center; }
.w-full { width: 100%; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --section-py: 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; width: 100%; margin: 0 auto; }
  .split-block { grid-template-columns: 1fr; gap: 40px; }
  .split-block--reverse .split-img,
  .split-block--reverse .split-content { order: unset; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  :root { --section-py: 48px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .hero { padding: 48px 0; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; bottom: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; width: 100%; left: 0; transform: none; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
  .features-strip-inner { flex-direction: column; }
  .page-hero h1 { font-size: 2rem; }
}
