:root {
  --bg: #020617;
  --surface: #020F2F;
  --text: #E5E7EB;
  --muted: #94A3B8;
  --primary: #38BDF8;
  --secondary: #A3E635;
  --accent: #F472B6;
  --border: rgba(229,231,235,0.12);
  --max-w: 1200px;
  --font-display: Georgia, "Palatino Linotype", Palatino, "Book Antiqua", "Times New Roman", serif;
  --font-body: "Trebuchet MS", "Segoe UI", Candara, "Century Gothic", sans-serif;
  --kw-editorial: editorial;
  --kw-magazine: magazine;
  --kw-content-first: content-first;
  --kw-storytelling: storytelling;
  --kw-clean-grid: clean grid;
  --kw-readable: readable;
  --offer-bg: #ffffff;
  --offer-border: #e2e8f0;
  --offer-text: #1e293b;
  --offer-muted: #64748b;
  --offer-bonus: #0f172a;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 12% -10%, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 45% at 92% 8%, rgba(244, 114, 182, 0.1), transparent 50%),
    linear-gradient(168deg, var(--bg) 0%, var(--surface) 46%, var(--bg) 100%);
  background-attachment: fixed;
}

body::before {
  content: var(--kw-editorial) " " var(--kw-magazine) " " var(--kw-content-first);
  position: fixed;
  inset: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 22% 38%, rgba(163, 230, 53, 0.07), transparent 42%),
    radial-gradient(circle at 78% 68%, rgba(56, 189, 248, 0.06), transparent 40%),
    linear-gradient(135deg, rgba(56, 189, 248, 0.04) 0%, transparent 48%);
  opacity: 0.9;
}

body::after {
  content: var(--kw-storytelling) " " var(--kw-clean-grid) " " var(--kw-readable);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, rgba(229, 231, 235, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(229, 231, 235, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

main {
  position: relative;
  z-index: 1;
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.disclosure-banner {
  width: 100%;
  background: rgba(229, 231, 235, 0.92);
  color: #0f172a;
  border-top: 3px solid var(--primary);
  border-bottom: none;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  line-height: 1.45;
  position: relative;
  z-index: 950;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  min-height: 68px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  min-height: 68px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-lockup:hover {
  color: var(--text);
  opacity: 0.9;
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  padding: 4px 6px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 980;
  background: rgba(2, 6, 23, 0.97);
  padding: 88px 28px 40px;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(2, 6, 23, 0.72) 0%, rgba(2, 15, 47, 0.78) 100%);
}

.hero-card {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  animation: hero-rise 0.9s ease both;
}

.hero-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.hero-card p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34em;
  margin: 0 auto;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 72px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.section-head {
  margin-bottom: 36px;
  max-width: 42rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

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

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.4;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  max-width: 36rem;
}

.decor-img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  margin: 24px 0;
}

.offers-section {
  position: relative;
  padding: 80px 24px;
  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(2, 6, 23, 0.82);
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  animation: fade-up 0.6s ease both;
}

.offer-card:nth-child(2) { animation-delay: 0.08s; }

.offer-card:nth-child(3) { animation-delay: 0.16s; }

.offer-card:nth-child(4) { animation-delay: 0.24s; }

.offer-logo {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8fafc;
  border-radius: 10px;
  padding: 8px;
  flex-shrink: 0;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--offer-text);
  margin: 0;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-bonus {
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.78rem, 2.4vw, 0.95rem);
  margin: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.offer-terms {
  color: var(--offer-muted);
  font-size: 0.7rem;
  margin: 0;
}

.offer-desc {
  color: var(--offer-muted);
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.45;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: filter 0.2s ease;
}

.offer-cta:hover {
  filter: brightness(1.08);
  color: var(--offer-cta-text);
}

.info-block {
  padding: 64px 24px;
  position: relative;
}

.info-block .info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.info-block p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 48rem;
}

.info-cta {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 2px;
}

.info-cta:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.layout-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.mini-card {
  border: 1px solid var(--border);
  padding: 18px;
  background: rgba(2, 15, 47, 0.55);
}

.mini-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.mini-card p {
  font-size: 0.92rem;
  margin: 0;
}

.layout-quote-band {
  background: rgba(2, 15, 47, 0.7);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.layout-rail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
}

.rail-accent {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0.35;
  border-radius: 2px;
  min-height: 180px;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.layout-list-aside {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
}

.aside-box {
  border-left: 3px solid var(--secondary);
  padding: 16px 0 16px 18px;
  background: rgba(163, 230, 53, 0.05);
}

.aside-box ul {
  list-style: none;
  color: var(--muted);
}

.aside-box li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.layout-wide-prose {
  max-width: 52rem;
  margin: 0 auto;
}

.layout-image-flow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.layout-steps ol {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.layout-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
}

.layout-steps li::before {
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.stat-item {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--border);
  background: rgba(56, 189, 248, 0.05);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.layout-checklist ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  max-width: 40rem;
}

.layout-checklist li {
  padding: 12px 14px 12px 36px;
  position: relative;
  border: 1px solid var(--border);
  color: var(--muted);
}

.layout-checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 1px;
}

.site-footer {
  margin-top: auto;
  padding: 56px 24px 36px;
  border-top: 1px solid var(--border);
  background: rgba(2, 15, 47, 0.85);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-text {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 52rem;
  line-height: 1.6;
}

.footer-text p {
  margin-bottom: 10px;
}

.footer-company {
  font-size: 0.8rem;
  color: var(--muted);
}

.updated-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(2, 6, 23, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.active {
  display: flex;
}

.age-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.age-modal h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.age-modal p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-actions button {
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-confirm {
  background: var(--primary);
  color: var(--bg);
}

.btn-decline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border) !important;
}

#age-blocked {
  display: none;
  color: var(--muted);
}

#age-blocked.visible {
  display: block;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
  min-width: 220px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  background: transparent;
  color: var(--text);
}

#cookie-accept {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.page-hero {
  padding: 56px 24px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 10px;
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 24px 72px;
}

.page-content h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
}

.page-content h3 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
}

.page-content p,
.page-content li {
  color: var(--muted);
  margin-bottom: 12px;
}

.page-content ul {
  padding-left: 1.2rem;
  margin-bottom: 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  max-width: 520px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  cursor: pointer;
}

.field-error {
  display: none;
  color: var(--accent);
  font-size: 0.82rem;
}

.field-error.visible {
  display: block;
}

#form-success {
  display: none;
  padding: 20px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  margin-top: 20px;
  max-width: 520px;
}

#form-success.visible {
  display: block;
}

.go-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 14px;
}

.go-ad {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.go-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 12px 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.go-compliance {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 28rem;
}

.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  gap: 16px;
}

.not-found a {
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

.topic-hero-strip {
  padding: 48px 24px;
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.12), rgba(244, 114, 182, 0.08));
  border-bottom: 1px solid var(--border);
}

.topic-hero-strip .inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.topic-layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 72px;
  align-items: start;
}

.topic-layout-band {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-side-rail {
  border: 1px solid var(--border);
  padding: 20px;
  background: rgba(2, 15, 47, 0.6);
  position: sticky;
  top: 100px;
}

.topic-side-rail h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.topic-side-rail ul {
  list-style: none;
}

.topic-side-rail li {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.topic-prose p {
  color: var(--muted);
  margin-bottom: 16px;
}

.topic-prose h2 {
  margin: 28px 0 12px;
  font-size: 1.4rem;
}

.topic-prose h3 {
  margin: 22px 0 10px;
  font-size: 1.15rem;
}

.image-rail {
  display: flex;
  gap: 12px;
  overflow: hidden;
  margin: 28px 0;
}

.image-rail .decor-wrap {
  flex: 1;
  margin: 0;
}

.bg-band {
  min-height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin: 28px 0;
  position: relative;
}

.bg-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.35);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .site-header {
    clip-path: none;
  }

  .layout-split,
  .layout-rail,
  .layout-mosaic,
  .layout-list-aside,
  .layout-image-flow,
  .layout-cards,
  .layout-stat-band,
  .topic-layout-sidebar,
  .topic-layout-split {
    grid-template-columns: 1fr;
  }

  .rail-accent {
    display: none;
  }

  .hero-card {
    max-width: 90%;
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .section,
  .info-block {
    padding: 48px 16px;
  }

  .footer-badges img {
    height: 36px;
  }

  .offer-logo {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }

  .decor-wrap,
  .image-rail,
  .bg-band {
    max-width: 100%;
    overflow: hidden;
  }

  .hero {
    background-size: cover;
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .decor-img {
    max-width: 100%;
    max-height: 180px;
  }

  .offer-logo {
    width: 120px;
    height: 60px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

#info-1 {
  background: rgba(56, 189, 248, 0.03);
}

#info-2 .info-inner {
  max-width: 48rem;
}

#info-4 {
  background: linear-gradient(180deg, transparent, rgba(244, 114, 182, 0.05), transparent);
}

#info-7 .layout-mosaic .mosaic-note {
  border-top: 3px solid var(--secondary);
  padding-top: 16px;
}

#info-10 {
  background: rgba(163, 230, 53, 0.04);
}
