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

:root {
  --bg: #fff1f2;
  --surface: #ffffff;
  --text: #3f1d22;
  --muted: #9f5f68;
  --primary: #fb7185;
  --secondary: #fdba74;
  --accent: #34d399;
  --border: rgba(63, 29, 34, 0.12);
  --nav-bg: rgba(15, 15, 25, 0.75);
  --disclosure-bg: #0f0f19;
  --shadow-hard: 4px 4px 0 rgba(63, 29, 34, 0.25);
  --neon-pink: 0 0 8px #fb7185, 0 0 16px rgba(251, 113, 133, 0.4);
  --neon-cyan: 0 0 8px #34d399, 0 0 16px rgba(52, 211, 153, 0.35);
  --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  text-shadow: var(--neon-pink);
}

.disclosure-bar {
  width: 100%;
  background: var(--disclosure-bg);
  height: 28px;
  overflow: hidden;
  padding: 4px 0;
  position: relative;
}

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

.disclosure-text {
  flex-shrink: 0;
  padding-right: 80px;
  font-size: 11px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.logo-link img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 8px;
}

.site-nav a:hover {
  text-shadow: var(--neon-cyan);
  color: var(--accent);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
}

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

.site-footer {
  background: linear-gradient(180deg, #1a1020 0%, #0f0f19 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 24px 32px;
  border-top: 3px solid var(--primary);
  box-shadow: inset 0 4px 0 rgba(251, 113, 133, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 360px;
  margin-bottom: 8px;
}

.footer-brand a {
  color: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--accent);
  text-shadow: var(--neon-cyan);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-dgoj {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  max-width: 900px;
}

.footer-bottom {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

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

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

.modal-box {
  background: var(--surface);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-hard), var(--neon-pink);
  border-radius: 8px;
  padding: 32px 28px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.modal-box h2 {
  font-size: 1.25rem;
  font-weight: 800;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.modal-box p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--text);
  box-shadow: var(--shadow-hard);
}

.btn-primary:hover {
  box-shadow: 6px 6px 0 rgba(63, 29, 34, 0.3), var(--neon-pink);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--accent);
  padding: 16px 24px;
}

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

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

.cookie-inner p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--secondary);
}

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

.page-hero {
  text-align: center;
  padding: 48px 24px 32px;
  background: var(--bg);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: var(--neon-pink);
}

.page-hero p {
  color: var(--muted);
  margin-top: 8px;
}

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

.content-page h2 {
  font-size: 1.15rem;
  font-weight: 800;
  font-style: italic;
  margin: 28px 0 10px;
  color: var(--text);
}

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

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

.contact-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--neon-pink);
}

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

.form-error {
  display: none;
  font-size: 0.8rem;
  color: #dc2626;
}

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

.form-success {
  padding: 32px;
  background: var(--surface);
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-hard);
  border-radius: 8px;
  text-align: center;
}

.form-success h2 {
  color: var(--text);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
}

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

.error-page h1 {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  font-style: italic;
  color: var(--primary);
  text-shadow: var(--neon-pink);
  line-height: 1;
}

.error-page p {
  color: var(--muted);
  margin: 16px 0 24px;
  max-width: 420px;
}

.go-redirect {
  background: var(--bg);
  min-height: 100vh;
}

.go-page {
  max-width: 520px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.go-ad {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  border: 2px solid var(--border);
  padding: 4px 10px;
  margin-bottom: 24px;
}

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

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

.go-page h1 {
  font-size: 1.35rem;
  font-weight: 800;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
}

.go-page > p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.go-compliance {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.go-compliance p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    font-size: 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

.hero {
  background: var(--bg);
  position: relative;
}

.hero-strip {
  width: 100%;
  height: 120px;
  overflow: hidden;
  position: relative;
}

.hero-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-body {
  padding: 40px 24px 48px;
  text-align: center;
  position: relative;
}

.hero-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(251, 113, 133, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(52, 211, 153, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background:
    linear-gradient(45deg, var(--primary) 25%, transparent 25%) 0 0 / 16px 16px,
    linear-gradient(-45deg, var(--primary) 25%, transparent 25%) 0 0 / 16px 16px;
  opacity: 0.06;
  transform: perspective(200px) rotateX(40deg);
  transform-origin: bottom;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  text-shadow: 3px 3px 0 var(--secondary), var(--neon-pink);
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background-color: var(--bg);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.offers-section h2 {
  text-align: center;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text);
  text-shadow: var(--neon-cyan);
}

.offers-intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.offer-card-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
}

.offer-card {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid #334155;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px) translate(-2px, -2px);
  border-color: #f59e0b;
  box-shadow: 6px 6px 0 rgba(245, 158, 11, 0.3);
}

.offer-rank {
  align-self: flex-start;
  background: #f59e0b;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
}

.offer-logo {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border-radius: 6px;
}

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

.offer-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #f8fafc;
}

.offer-bonus-group {
  width: 100%;
}

.offer-bonus {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-terms {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 4px;
}

.offer-desc {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
  width: 100%;
}

.offer-cta {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 6px;
  border: 2px solid #fcd34d;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.offer-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  text-shadow: none;
  color: #0f172a;
}

.info-section {
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.info-section p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.info-1 {
  background: var(--surface);
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--accent);
}

.info-1__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.info-1__frame {
  position: relative;
  max-width: 420px;
}

.info-1__frame img {
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-hard), var(--neon-pink);
  border-radius: 4px;
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.info-2 {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.12) 0%, var(--bg) 60%);
}

.info-2__split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-2__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.info-2__badge {
  padding: 8px 16px;
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-hard);
  font-size: 0.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
}

.info-3 {
  background: var(--surface);
}

.info-3__timeline {
  border-left: 4px solid var(--primary);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-3__step {
  position: relative;
}

.info-3__step::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border: 2px solid var(--text);
  box-shadow: var(--neon-cyan);
}

.info-3__step h3 {
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-4 {
  background: var(--bg);
}

.info-4__banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 3px solid var(--secondary);
  box-shadow: var(--shadow-hard);
  padding: 28px;
  border-radius: 4px;
}

.info-4__icon-wrap {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: var(--neon-cyan);
}

.info-4__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-5 {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.info-5__top {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.info-5__thumb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: var(--neon-cyan);
  margin: 0 auto;
}

.info-5__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-5__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-5__card {
  background: var(--surface);
  border: 2px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s, border-color 0.2s;
}

.info-5__card:hover {
  transform: translate(-3px, -3px);
  border-color: var(--primary);
  box-shadow: 6px 6px 0 rgba(63, 29, 34, 0.2), var(--neon-pink);
}

.info-5__card h3 {
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-6 {
  background: var(--bg);
}

.info-6__checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-6__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
}

.info-6__check {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 900;
  flex-shrink: 0;
}

.info-7 {
  background: var(--surface);
  border-top: 2px dashed var(--primary);
}

.info-7__wheel {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: center;
}

.info-7__visual {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.info-7__visual img {
  border-radius: 50%;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-hard), var(--neon-pink);
  max-width: 100%;
  max-height: 280px;
  object-fit: cover;
  aspect-ratio: 1;
}

.info-7__tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.info-7__tip {
  padding: 10px 14px;
  background: var(--bg);
  font-size: 0.85rem;
  border: 1px solid var(--border);
}

.info-8 {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, var(--bg) 70%);
}

.info-8__live-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.info-8__live-img {
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-hard), var(--neon-cyan);
  max-width: 280px;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

.info-8__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.info-8__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
}

.info-8__dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.info-9 {
  background: var(--surface);
}

.info-9__vip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-9__tier {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: var(--bg);
  border: 2px solid var(--border);
}

.info-9__tier-num {
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--secondary);
  text-align: center;
  text-shadow: var(--neon-pink);
}

.info-9__tier h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.info-9__tier p {
  font-size: 0.85rem;
  margin: 0;
}

.info-10 {
  background: var(--bg);
  position: relative;
}

.info-10__mosaic {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: center;
}

.info-10__decor {
  position: relative;
  max-width: 300px;
}

.info-10__decor img {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-hard);
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

.info-10__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.info-10__tag {
  padding: 6px 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-strip {
    height: 60px;
  }

  .offer-logo {
    width: 200px;
    height: 80px;
  }

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

  .info-1__grid,
  .info-4__banner,
  .info-5__top,
  .info-5__cards,
  .info-6__checklist,
  .info-7__wheel,
  .info-8__live-grid,
  .info-10__mosaic {
    grid-template-columns: 1fr;
  }

  .info-4__banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-4__icon-wrap {
    margin: 0 auto;
  }

  .offers-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .info-1__frame,
  .info-7__visual,
  .info-8__live-img,
  .info-10__decor {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  .info-4__icon-wrap,
  .info-5__thumb {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-strip img,
  .info-section img {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .hero-strip {
    max-width: 100vw;
  }

  .info-1__frame img,
  .info-4__icon-wrap img,
  .info-5__thumb img,
  .info-7__visual img,
  .info-8__live-img,
  .info-10__decor img {
    max-width: 100%;
    max-height: 240px;
  }

  .info-8__live-grid .info-8__live-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .hero-strip {
    height: 80px;
  }
}

@media (min-width: 901px) {
  .hero-strip {
    height: 120px;
  }
}
