:root {
  --bg: #0F140C;
  --surface: #1C2415;
  --text: #ECFDF5;
  --muted: #A7F3D0;
  --primary: #4D7C0F;
  --secondary: #65A30D;
  --accent: #FACC15;
  --border: rgba(236, 253, 245, 0.12);
  --font-sans: "Segoe UI", "Helvetica Neue", "Noto Sans", Ubuntu, Cantarell, sans-serif;
  --font-serif: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --max-w: 1200px;
  --eco-glow: rgba(101, 163, 13, 0.18);
  --nature-mist: rgba(167, 243, 208, 0.06);
  --green-depth: rgba(77, 124, 15, 0.35);
  --sustainable-soft: rgba(250, 204, 21, 0.08);
  --organic-curve: 42% 58% 55% 45% / 48% 42% 58% 52%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, var(--green-depth), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, var(--eco-glow), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, #121a0e 45%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.disclosure-bar {
  width: 100%;
  height: 28px;
  overflow: hidden;
  background: #0a0e08;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.disclosure-track {
  display: flex;
  width: max-content;
  animation: disclosure-marquee 40s linear infinite;
}

.disclosure-track span {
  font-size: 11px;
  color: rgba(236, 253, 245, 0.85);
  white-space: nowrap;
  padding-right: 4rem;
  line-height: 20px;
}

@keyframes disclosure-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 58px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-link img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 8px;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(300px, 86vw);
  background: var(--surface);
  z-index: 200;
  transform: translateX(-105%);
  transition: transform 0.3s ease;
  padding: 24px 0;
  border-right: 1px solid var(--border);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-close {
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav ul {
  list-style: none;
  padding: 12px 0;
}

.mobile-nav a {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  border-left: 3px solid transparent;
  font-weight: 600;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  border-left-color: var(--accent);
  background: var(--nature-mist);
  color: var(--accent);
}

.nav-backdrop {
  display: none;
}

.mobile-nav.open + .nav-backdrop,
.nav-backdrop.is-on {
  display: none;
}

.eco-band {
  position: relative;
}

.eco-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, var(--nature-mist), transparent 40%),
    radial-gradient(circle at 80% 30%, var(--sustainable-soft), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.nature-texture {
  position: relative;
  overflow: hidden;
}

.nature-texture::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: var(--organic-curve);
  background: var(--eco-glow);
  filter: blur(40px);
  top: -60px;
  right: -40px;
  pointer-events: none;
  z-index: 0;
}

.green-leaf {
  width: 48px;
  height: 48px;
  border-radius: 60% 40% 55% 45%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  animation: green-glow 5s ease-in-out infinite, organic-sway 8s ease-in-out infinite;
}

.sustainable-rail {
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
}

.organic-divider {
  width: min(220px, 60%);
  height: 3px;
  margin: 28px auto;
  border: none;
  background: linear-gradient(90deg, transparent, var(--secondary), var(--accent), var(--secondary), transparent);
  border-radius: 999px;
  opacity: 0.85;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero {
  background: var(--bg);
  padding: 48px 24px 64px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 40%, var(--eco-glow) 100%),
    radial-gradient(circle at 70% 50%, var(--green-depth), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-copy .brand-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36ch;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--text);
  box-shadow: 0 6px 18px rgba(77, 124, 15, 0.35);
}

.btn-primary:hover {
  background: var(--secondary);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(101, 163, 13, 0.45);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 0 0 10px rgba(77, 124, 15, 0.12);
  animation: nature-float 6s ease-in-out infinite, eco-pulse 7s ease-in-out infinite;
}

@keyframes nature-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes eco-pulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.06);
  }
}

@keyframes green-glow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 10px 28px rgba(101, 163, 13, 0.35);
  }
}

@keyframes sustainable-rise {
  from {
    opacity: 0.85;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes organic-sway {
  0%,
  100% {
    border-radius: 60% 40% 55% 45%;
  }
  50% {
    border-radius: 45% 55% 40% 60%;
  }
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background-color: var(--surface);
  background-image: url('/images/offers_bg/offers_bg.webp');
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 12, 0.82);
  pointer-events: none;
}

.offers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 36px;
  color: var(--accent);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.offer-card {
  background: #fff;
  border: 4px solid #000;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 7px 7px 0 #000;
}

.offer-card-logo {
  width: 180px;
  height: 80px;
  margin: 22px auto 0;
  padding: 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #e5e7eb;
  border-bottom: 3px solid #000;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin: 16px 16px 8px;
  text-transform: uppercase;
}

.offer-bonus-group {
  text-align: center;
  padding: 0 16px;
  margin-bottom: 8px;
}

.offer-bonus {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  max-width: 100%;
}

.offer-terms {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

.offer-desc {
  font-size: 11px;
  color: #64748b;
  line-height: 1.5;
  padding: 0 16px;
  margin-bottom: 12px;
}

.offer-cta {
  display: block;
  margin: 0 16px 20px;
  padding: 12px 16px;
  background: #eab308;
  color: #111;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
  border: 3px solid #000;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.offer-cta:hover {
  background: #facc15;
  color: #111;
  transform: translateY(-2px);
}

.info-block {
  padding: 72px 0;
  position: relative;
}

.info-block:nth-child(even) {
  background: rgba(28, 36, 21, 0.55);
}

.info-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 16px;
  color: var(--text);
}

.info-block p {
  color: var(--muted);
  margin-bottom: 14px;
}

.info-cta {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--text);
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.info-cta:hover {
  background: var(--secondary);
  color: var(--bg);
  transform: translateY(-2px);
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 24% 76% 35% 65% / 55% 30% 70% 45%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.decor-clip {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.layout-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.layout-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.mini-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--font-serif);
}

.mini-card p {
  font-size: 0.9rem;
  margin: 0;
}

.layout-quote {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 28px;
  align-items: start;
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--accent);
  line-height: 1.4;
  border-top: 3px solid var(--secondary);
  padding-top: 16px;
}

.layout-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.step-item {
  background: linear-gradient(160deg, var(--surface), rgba(77, 124, 15, 0.15));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.step-num {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text);
  font-weight: 800;
  text-align: center;
  line-height: 32px;
  margin-bottom: 10px;
}

.layout-band {
  background: var(--surface);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
}

.side-panel {
  background: rgba(77, 124, 15, 0.18);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
}

.side-panel ul {
  margin-left: 18px;
  color: var(--muted);
}

.layout-checklist ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.layout-checklist li {
  position: relative;
  padding: 14px 14px 14px 44px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.layout-checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(101, 163, 13, 0.2);
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0;
}

.stat-pill {
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 120px;
}

.stat-pill strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
  font-family: var(--font-serif);
}

.stat-pill span {
  font-size: 0.85rem;
  color: var(--muted);
}

.layout-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.site-footer {
  background: #0a0e08;
  border-top: 1px solid var(--border);
  padding: 48px 24px 28px;
  margin-top: 40px;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-meta p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-links h3,
.footer-badges h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-badge-row img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-requisites {
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.age-gate,
.cookie-banner {
  position: fixed;
  z-index: 300;
  display: none;
}

.age-gate {
  inset: 0;
  background: rgba(10, 14, 8, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.visible,
.cookie-banner.visible {
  display: flex;
}

.age-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.age-card h2 {
  font-family: var(--font-serif);
  margin-bottom: 12px;
}

.age-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cookie-banner {
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 640px;
  margin: 0 auto;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  padding: 48px 24px 28px;
  background: linear-gradient(180deg, var(--surface), transparent);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.page-content h2 {
  font-family: var(--font-serif);
  margin: 28px 0 12px;
  font-size: 1.35rem;
}

.page-content h3 {
  margin: 20px 0 10px;
  color: var(--accent);
}

.page-content p,
.page-content li {
  color: var(--muted);
  margin-bottom: 12px;
}

.page-content ul {
  margin: 0 0 16px 20px;
}

.contact-form {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  display: none;
  color: #fca5a5;
  font-size: 0.85rem;
  font-weight: 500;
}

.field-error.visible {
  display: block;
}

.form-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  background: rgba(101, 163, 13, 0.2);
  border: 1px solid var(--secondary);
  border-radius: 14px;
  color: var(--text);
}

.form-success.visible {
  display: block;
}

.is-hidden {
  display: none !important;
}

.redirect-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.redirect-page {
  text-align: center;
  padding: 32px;
  max-width: 480px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.redirect-notes {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.redirect-notes a {
  color: var(--accent);
}

.sub-hero {
  padding: 40px 24px;
  background:
    linear-gradient(120deg, rgba(77, 124, 15, 0.25), transparent),
    var(--surface);
  border-bottom: 1px solid var(--border);
}

.sub-hero .wrap {
  display: grid;
  gap: 12px;
}

.sub-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.sub-hero p {
  color: var(--muted);
  max-width: 60ch;
}

.article-wide {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 72px;
}

.article-wide h2 {
  font-family: var(--font-serif);
  margin: 32px 0 12px;
  font-size: 1.4rem;
}

.article-wide h3 {
  margin: 22px 0 10px;
  color: var(--accent);
}

.article-wide p {
  color: var(--muted);
  margin-bottom: 14px;
}

.article-wide ul {
  margin: 0 0 16px 20px;
  color: var(--muted);
}

.article-wide li {
  margin-bottom: 8px;
}

.split-rail {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.rail-card {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.image-band {
  margin: 28px 0;
  min-height: 180px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 100%;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.not-found {
  text-align: center;
  padding: 80px 24px;
}

.not-found h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.fade-up {
  animation: fade-up 0.7s ease both, sustainable-rise 0.9s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-circle {
    width: 150px;
    height: 150px;
  }

  .layout-split,
  .layout-quote,
  .layout-sidebar,
  .layout-mosaic,
  .layout-feature,
  .layout-steps,
  .split-rail,
  .footer-grid,
  .layout-cards,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .rail-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    padding: 0 16px;
  }

  .info-block {
    padding: 48px 0;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .hero {
    padding: 32px 16px 48px;
    overflow: hidden;
  }

  .hero-circle {
    width: 140px;
    height: 140px;
    max-width: calc(100vw - 48px);
  }

  .decor-img {
    max-width: 100%;
    max-height: 200px;
  }

  .decor-clip {
    max-width: 100%;
    overflow: hidden;
  }

  .nature-texture::after {
    right: 0;
    width: 160px;
    height: 160px;
  }

  .image-band {
    max-width: 100%;
    min-height: 140px;
  }

  .offer-card {
    max-width: 100%;
  }

  .offer-card-logo {
    width: 160px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-bonus {
    font-size: 12px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .wrap {
    padding: 0 16px;
    max-width: 100%;
  }
}

.side-title {
  font-family: var(--font-serif);
  margin-bottom: 10px;
  color: var(--accent);
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.not-found-msg {
  color: var(--muted);
  margin-bottom: 24px;
}

.topic-gap {
  margin-top: 12px;
}

.live-split article h2 {
  font-family: var(--font-serif);
  margin: 24px 0 12px;
}

.live-split article h2:first-child {
  margin-top: 0;
}

.live-split article p {
  color: var(--muted);
  margin-bottom: 14px;
}

#info-1 .layout-split .decor-img {
  border-radius: 50% 40% 60% 40%;
}

#info-4 .layout-steps .step-item:nth-child(odd) {
  transform: translateY(6px);
}

#info-8 .image-band {
  background-image: url('/images/decorative/decor_5.jpg');
  background-size: cover;
  background-position: center;
  height: 200px;
  max-width: 500px;
}

#info-10 .layout-mosaic .decor-clip {
  justify-content: flex-end;
}
