:root {
  --bg: #0D0208;
  --surface: #210B16;
  --text: #FAE6FA;
  --muted: #D482A3;
  --primary: #FF3864;
  --secondary: #FFB8DE;
  --accent: #2DE2E2;
  --border: rgba(255,56,100,0.2);
  --nature: nature;
  --future: future;
  --lab: lab;
  --hybrid: hybrid;
  --glowing-plants: glowing-plants;
  --bio: #2DE2E2;
  --offer-bg: #1a1a2e;
  --offer-border: rgba(255, 255, 255, 0.12);
  --offer-bonus: #fbbf24;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --max: 1200px;
  --font-display: "Avenir Next", "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "SF Mono", "Cascadia Code", Consolas, "Courier New", monospace;
}

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

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

body {
  font-family: var(--font-display);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 10% -12%, rgba(255, 56, 100, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 6%, rgba(45, 226, 226, 0.14), transparent 50%),
    linear-gradient(168deg, var(--bg) 0%, #1a0610 42%, var(--bg) 100%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: var(--nature) " " var(--future);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% 72%, rgba(45, 226, 226, 0.09), transparent 38%),
    radial-gradient(circle at 78% 48%, rgba(255, 184, 222, 0.07), transparent 42%),
    repeating-linear-gradient(
      118deg,
      transparent,
      transparent 22px,
      rgba(255, 56, 100, 0.025) 22px,
      rgba(255, 56, 100, 0.025) 23px
    );
}

body::after {
  content: var(--lab) " " var(--hybrid) " " var(--glowing-plants);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

body > * {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--accent);
}

.disclosure-banner {
  width: 100%;
  height: 28px;
  overflow: hidden;
  background: #12040a;
  color: rgba(250, 230, 250, 0.92);
  font-size: 11px;
  line-height: 20px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.disclosure-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: disclosure-marquee 40s linear infinite;
}

.disclosure-track span {
  display: inline-block;
  padding-right: 64px;
}

@keyframes disclosure-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 58px;
  background: #12040a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.brand-lockup img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

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

.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 2, 8, 0.72);
  z-index: 250;
}

.nav-scrim.open {
  display: block;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 86vw);
  height: 100%;
  background: var(--surface);
  border-right: 1px solid var(--border);
  z-index: 260;
  padding: 72px 20px 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
}

.nav-drawer.open {
  display: flex;
  transform: translateX(0);
}

.nav-drawer a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 56, 100, 0.08);
}

.nav-drawer a:hover {
  background: rgba(45, 226, 226, 0.12);
}

@media (min-width: 961px) {
  .nav-burger,
  .nav-drawer,
  .nav-drawer.open,
  .nav-scrim,
  .nav-scrim.open {
    display: none;
  }
}

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

  .nav-burger {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: 350px;
  padding: 48px 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 46% 54% 52% 48%;
  left: -120px;
  top: -90px;
  background: radial-gradient(circle, rgba(45, 226, 226, 0.16), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 42% 58% 55% 45%;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(255, 56, 100, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-collage {
  position: relative;
  width: min(520px, 100%);
  height: 240px;
  margin: 0 auto 28px;
  max-width: 100%;
  overflow: hidden;
}

.hero-collage img {
  position: absolute;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(45, 226, 226, 0.15);
  max-width: 100%;
}

.hero-collage .c1 {
  width: 200px;
  height: 200px;
  left: 40px;
  top: 10px;
  transform: rotate(-5deg);
  z-index: 1;
}

.hero-collage .c2 {
  width: 160px;
  height: 160px;
  left: 180px;
  top: 0;
  transform: rotate(3deg);
  z-index: 3;
}

.hero-collage .c3 {
  width: 140px;
  height: 140px;
  left: 280px;
  top: 50px;
  transform: rotate(-2deg);
  z-index: 2;
}

.hero-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 90%;
  text-align: center;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85), 0 0 24px rgba(255, 56, 100, 0.35);
  line-height: 1.15;
}

.hero-sub {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.02rem;
}

@media (max-width: 700px) {
  .hero {
    min-height: 320px;
    padding: 40px 20px 48px;
    justify-content: flex-end;
  }

  .hero::before {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(13, 2, 8, 0.45), rgba(13, 2, 8, 0.88));
    z-index: 2;
  }

  .hero-collage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
  }

  .hero-collage .c2,
  .hero-collage .c3 {
    display: none;
  }

  .hero-collage .c1 {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none;
    border: 0;
    border-radius: 0;
    object-fit: cover;
  }

  .hero-title {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 16px;
    z-index: 3;
  }

  .hero-sub {
    z-index: 3;
  }
}

.lab-glass {
  background: rgba(33, 11, 22, 0.55);
  border: 1px solid rgba(255, 184, 222, 0.22);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(45, 226, 226, 0.08), 0 20px 50px rgba(0, 0, 0, 0.28);
}

.hybrid-vein {
  position: relative;
}

.hybrid-vein::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 35%, rgba(45, 226, 226, 0.18) 50%, transparent 65%),
    radial-gradient(circle at 10% 80%, rgba(255, 56, 100, 0.2), transparent 40%);
  opacity: 0.7;
}

.nature-orb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bio);
  box-shadow: 0 0 12px rgba(45, 226, 226, 0.8), 0 0 28px rgba(45, 226, 226, 0.35);
  display: inline-block;
}

.glowing-plants {
  position: relative;
  min-height: 48px;
}

.glowing-plants .vine-stem {
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--bio), rgba(45, 226, 226, 0.2));
  border-radius: 3px;
  transition: height 1.1s ease;
  box-shadow: 0 0 10px rgba(45, 226, 226, 0.55);
}

.glowing-plants .vine-leaf {
  position: absolute;
  left: 4px;
  bottom: 0;
  width: 18px;
  height: 10px;
  border-radius: 60% 40% 60% 40%;
  background: rgba(45, 226, 226, 0.55);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s, bottom 1.1s ease;
  box-shadow: 0 0 14px rgba(45, 226, 226, 0.45);
}

.glowing-plants.is-grown .vine-stem {
  height: 42px;
}

.glowing-plants.is-grown .vine-leaf {
  opacity: 1;
  transform: scale(1);
  bottom: 28px;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background-image:
    linear-gradient(180deg, rgba(13, 2, 8, 0.88) 0%, rgba(33, 11, 22, 0.82) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 56, 100, 0.12), transparent 55%);
  pointer-events: none;
}

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

.offers-head {
  text-align: center;
  margin-bottom: 36px;
}

.offers-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 10px;
}

.offers-head p {
  color: var(--muted);
  max-width: 640px;
  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: 16px;
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.offer-logo {
  width: 200px;
  height: 100px;
  min-width: 200px;
  min-height: 100px;
  flex-shrink: 0;
  margin: 0 auto;
  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;
  max-width: none;
  max-height: none;
}

.offer-name {
  text-align: center;
  font-size: 1.2rem;
}

.offer-bonus-group {
  text-align: center;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-bonus {
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}

.offer-terms {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: filter 0.2s ease, transform 0.2s ease;
}

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

.info-section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px;
  overflow: hidden;
}

.info-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -80px;
  top: 20px;
  background: radial-gradient(circle, rgba(45, 226, 226, 0.08), transparent 70%);
  pointer-events: none;
}

.info-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-section h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  margin-bottom: 14px;
}

.info-section p {
  color: rgba(250, 230, 250, 0.9);
  margin-bottom: 12px;
}

.info-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 56, 100, 0.18);
  border: 1px solid var(--border);
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.info-cta:hover {
  background: rgba(45, 226, 226, 0.14);
  border-color: rgba(45, 226, 226, 0.35);
  color: var(--text);
}

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

.layout-checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.layout-checklist li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.layout-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(45, 226, 226, 0.55);
}

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

.layout-card {
  padding: 18px;
}

.layout-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.layout-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--muted);
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.layout-quote {
  border-left: 3px solid var(--primary);
  padding: 14px 18px;
  margin: 8px 0 18px;
  background: rgba(255, 56, 100, 0.08);
  color: var(--secondary);
  font-size: 1.05rem;
}

.layout-steps {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.layout-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(33, 11, 22, 0.45);
}

.layout-step span {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 700;
}

.layout-rail {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.layout-aside {
  padding: 20px;
  border-radius: 16px;
  background: rgba(33, 11, 22, 0.65);
  border: 1px solid var(--border);
}

.layout-band {
  padding: 20px 22px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255, 56, 100, 0.14), rgba(45, 226, 226, 0.08));
  border: 1px solid var(--border);
}

.layout-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.92rem;
}

.layout-table th,
.layout-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}

.layout-table th {
  background: rgba(255, 56, 100, 0.12);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.layout-zigzag {
  display: grid;
  gap: 28px;
}

.zig-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.zig-row:nth-child(even) {
  direction: rtl;
}

.zig-row:nth-child(even) > * {
  direction: ltr;
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0;
}

.layout-stat {
  padding: 16px;
  border-radius: 14px;
  background: rgba(33, 11, 22, 0.55);
  border: 1px solid var(--border);
  text-align: center;
}

.layout-stat strong {
  display: block;
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.decor-wrap {
  margin-top: 22px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.decor-img {
  display: block;
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.decor-bg {
  margin-top: 20px;
  height: 160px;
  max-width: 500px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: inset 0 0 40px rgba(13, 2, 8, 0.35);
}

.site-footer {
  margin-top: auto;
  background: #12040a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 24px 36px;
}

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

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

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

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

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

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

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

.footer-compliance,
.footer-risk,
.footer-updated,
.footer-company {
  color: var(--muted);
  font-size: 0.86rem;
  max-width: 900px;
}

.footer-risk {
  color: rgba(255, 184, 222, 0.9);
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 2, 8, 0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.age-dialog {
  max-width: 420px;
  width: 100%;
  padding: 28px 24px;
  text-align: center;
}

.age-dialog h2 {
  margin-bottom: 12px;
}

.age-dialog p {
  color: var(--muted);
  margin-bottom: 20px;
}

.age-actions {
  display: grid;
  gap: 10px;
}

.btn-confirm,
.btn-decline,
#cookie-accept,
#cookie-reject,
.contact-form button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-display);
  font-weight: 700;
}

.btn-confirm,
#cookie-accept,
.contact-form button {
  background: var(--primary);
  color: #fff;
}

.btn-decline,
#cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

#manage-cookies {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--primary);
  color: #fff;
}

.age-blocked {
  display: none;
  color: var(--secondary);
  text-align: center;
  max-width: 420px;
}

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

.cookie-banner {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  max-width: 720px;
  margin: 0 auto;
}

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

.cookie-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.cookie-inner p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

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

.page-hero,
.sub-hero,
.error-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.page-hero h1,
.sub-hero h1,
.error-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}

.page-hero p,
.sub-hero p,
.error-page p {
  color: var(--muted);
  max-width: 680px;
}

.page-content,
.sub-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 64px;
}

.page-content p,
.sub-layout p {
  margin-bottom: 14px;
  color: rgba(250, 230, 250, 0.92);
}

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

.page-content h3,
.sub-layout h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  color: var(--secondary);
}

.page-content ul,
.sub-layout ul,
.page-content ol,
.sub-layout ol {
  margin: 0 0 16px 1.2rem;
  color: var(--muted);
}

.page-content li,
.sub-layout li {
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  margin-top: 24px;
  max-width: 560px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

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

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

.form-error {
  display: none;
  color: var(--primary);
  font-size: 0.82rem;
  margin-top: 6px;
}

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

.contact-success {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(45, 226, 226, 0.35);
  background: rgba(45, 226, 226, 0.1);
}

.contact-success.visible {
  display: block;
}

.error-page {
  text-align: center;
  padding-bottom: 80px;
}

.error-page a {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.go-page {
  max-width: 640px;
  margin: 48px auto;
  padding: 32px 24px;
  text-align: center;
}

.go-ad {
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.go-spinner {
  width: 42px;
  height: 42px;
  margin: 24px auto;
  border-radius: 50%;
  border: 3px solid rgba(255, 56, 100, 0.25);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}

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

.go-compliance {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.split-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.pull-quote {
  margin: 28px 0;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 56, 100, 0.1);
  border: 1px solid var(--border);
  font-size: 1.15rem;
  color: var(--secondary);
}

.sidebar-rail {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}

.image-rail {
  display: grid;
  gap: 14px;
}

.image-rail .decor-img {
  width: 100%;
  max-width: 260px;
}

@media (max-width: 900px) {
  .layout-split,
  .layout-mosaic,
  .layout-rail,
  .zig-row,
  .zig-row:nth-child(even),
  .split-columns,
  .sidebar-rail {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .layout-cards,
  .layout-stats,
  .stat-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .offer-logo {
    width: 180px;
    height: 90px;
    min-width: 180px;
    min-height: 90px;
    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;
  }

  .offer-bonus {
    font-size: 0.86rem;
  }

  .decor-img,
  .decor-bg {
    max-width: 100%;
  }

  .hero-collage .c2,
  .hero-collage .c3 {
    max-width: 45vw;
  }
}

@media (max-width: 375px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero,
  .hero-collage,
  .info-section,
  .offers-section,
  .decor-wrap,
  .page-content,
  .sub-layout {
    overflow-x: hidden;
    max-width: 100%;
  }

  .decor-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
  }

  .decor-bg {
    width: 100%;
    max-width: 100%;
    height: 120px;
  }

  .hero-collage img {
    max-width: 100%;
  }

  .offer-logo {
    width: 160px;
    height: 80px;
    min-width: 160px;
    min-height: 80px;
    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;
  }
}
