:root {
  --bg: #1B0F1E;
  --surface: #2A1533;
  --text: #FDF4FF;
  --muted: #F5D0FE;
  --primary: #E879F9;
  --secondary: #22D3EE;
  --accent: #FACC15;
  --border: rgba(253,244,255,0.12);
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --lab-clean: clean;
  --lab-sterile: sterile;
  --lab-precise: precise;
  --lab-analytical: analytical;
  --offer-bg: #ffffff;
  --offer-text: #1a1a2e;
  --offer-muted: #5a5a6e;
  --offer-cta: #0d9488;
  --offer-cta-hover: #0f766e;
  --offer-star: #f59e0b;
  --offer-badge: #e11d48;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, rgba(34, 211, 238, 0.06) 0%, transparent 42%),
    linear-gradient(345deg, rgba(232, 121, 249, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(250, 204, 21, 0.04), transparent);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

.disclosure {
  background: linear-gradient(90deg, #0a060c, #2A1533);
  color: var(--text);
  font-size: 12px;
  text-align: center;
  padding: 10px 16px;
  width: 100%;
  border: none;
  line-height: 1.4;
}

.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-top {
  height: 32px;
  background: #140a16;
  display: flex;
  align-items: center;
}

.nav-top-inner,
.nav-main-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-top-email {
  font-size: 11px;
  color: var(--muted);
}

.nav-age-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.nav-main {
  height: 56px;
  background: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

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

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

.brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

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

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

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 200;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 12px;
}

.mobile-menu a {
  color: var(--muted);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.hero {
  width: 100%;
  height: 120px;
  background: #120814;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(34, 211, 238, 0.04) 39px,
      rgba(34, 211, 238, 0.04) 40px
    );
  pointer-events: none;
}

.hero h1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  color: var(--text);
  position: relative;
  transform: translateY(18%);
}

.clean.sterile.precise.analytical {
  white-space: normal;
}

.hero-sub {
  height: 40px;
  background: #1f1024;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.offers-section {
  padding: 48px 0 56px;
  position: relative;
  background-image: linear-gradient(180deg, rgba(27, 15, 30, 0.88), rgba(27, 15, 30, 0.92)), url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: 8px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
  max-width: 640px;
}

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-card {
  background: var(--offer-bg);
  color: var(--offer-text);
  display: grid;
  grid-template-columns: 56px 120px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.offer-card:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  color: var(--offer-text);
}

.offer-rank {
  width: 40px;
  height: 40px;
  background: var(--offer-badge);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

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

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

.offer-body {
  min-width: 0;
}

.offer-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.offer-stars {
  color: var(--offer-star);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.offer-bonus {
  font-size: 15px;
  font-weight: 600;
  color: #0f766e;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
  max-width: 100%;
}

.offer-terms {
  font-size: 11px;
  color: var(--offer-muted);
  margin-top: 2px;
}

.offer-desc {
  font-size: 11px;
  color: var(--offer-muted);
  margin-top: 6px;
  line-height: 1.45;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--offer-cta);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.offer-card:hover .offer-cta {
  background: var(--offer-cta-hover);
}

.info-block {
  padding: 56px 0;
  position: relative;
}

.info-block:nth-child(odd) {
  background: rgba(42, 21, 51, 0.35);
}

.info-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}

.info-block h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.info-block p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
  max-width: 720px;
}

.info-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.info-cta:hover {
  background: var(--secondary);
  color: var(--bg);
  transform: scale(1.03);
  color: #041016;
}

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

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

.mini-card {
  border: 1px solid var(--border);
  padding: 18px 16px;
  background: rgba(253, 244, 255, 0.03);
  transition: transform 0.25s ease;
}

.mini-card:hover {
  transform: scale(1.04);
}

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

.mini-card p {
  font-size: 13px;
  margin: 0;
  max-width: none;
}

.layout-list {
  list-style: none;
  margin-top: 16px;
}

.layout-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  position: relative;
}

.layout-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 1px;
  background: var(--secondary);
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.stat-cell {
  border: 1px solid var(--border);
  padding: 16px 12px;
  text-align: center;
  background: rgba(34, 211, 238, 0.04);
  transition: transform 0.25s ease;
}

.stat-cell:hover {
  transform: scale(1.06);
}

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

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

.rail-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(232, 121, 249, 0.25);
  line-height: 1;
  border-right: 1px solid var(--border);
  padding-right: 16px;
}

.layout-quote {
  border-left: 2px solid var(--secondary);
  padding: 8px 0 8px 24px;
  margin: 20px 0;
}

.layout-quote p {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  max-width: 560px;
}

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

.mosaic-item {
  border: 1px solid var(--border);
  padding: 20px;
  background: rgba(250, 204, 21, 0.03);
}

.mosaic-item h3 {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
}

.mosaic-item p {
  font-size: 13px;
  margin: 0;
  max-width: none;
}

.layout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--border);
}

.step-cell {
  padding: 20px 18px;
  border-right: 1px solid var(--border);
}

.step-cell:last-child {
  border-right: none;
}

.step-idx {
  font-size: 11px;
  color: var(--secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-cell h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.step-cell p {
  font-size: 13px;
  margin: 0;
  max-width: none;
}

.layout-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 13px;
}

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

.layout-table th {
  background: rgba(34, 211, 238, 0.08);
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.layout-table td {
  color: var(--muted);
}

.layout-zigzag {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.zig-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.zig-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
}

.decor-bg {
  width: 100%;
  max-width: 480px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

.site-footer {
  background: #120814;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: auto;
  position: relative;
  flex-shrink: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232, 121, 249, 0.06), transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(253, 244, 255, 0.02) 47px,
      rgba(253, 244, 255, 0.02) 48px
    );
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.footer-brand .brand-name {
  font-size: 14px;
}

.footer-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 800px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 20px 0;
  list-style: none;
}

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

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 24px 0;
}

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

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

.footer-meta {
  font-size: 12px;
  color: rgba(245, 208, 254, 0.55);
  margin-top: 16px;
}

.footer-updated {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 8px;
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 12, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.age-gate-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.age-gate-box h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.age-gate-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

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

.btn-confirm,
.btn-decline,
.btn-cookie {
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-confirm {
  background: var(--primary);
  color: #1B0F1E;
  border-color: var(--primary);
}

.btn-decline {
  background: transparent;
  color: var(--muted);
}

.btn-confirm:hover,
.btn-decline:hover,
.btn-cookie:hover {
  transform: scale(1.04);
}

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

.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: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 220px;
}

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

.btn-cookie.accept {
  background: var(--secondary);
  color: #041016;
  border-color: var(--secondary);
}

.btn-cookie.reject {
  background: transparent;
  color: var(--muted);
}

.page-hero {
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.05), transparent);
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--muted);
  font-size: 14px;
  max-width: 560px;
}

.page-content {
  padding: 40px 0 64px;
}

.page-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.page-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 10px;
  color: var(--secondary);
}

.page-content p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
  max-width: 720px;
}

.page-content ul {
  margin: 12px 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

.page-content li {
  margin-bottom: 8px;
}

.contact-form-wrap {
  max-width: 520px;
  margin-top: 28px;
  border: 1px solid var(--border);
  padding: 28px 24px;
  background: rgba(253, 244, 255, 0.03);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
}

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

.form-error {
  font-size: 12px;
  color: #f87171;
  margin-top: 6px;
  display: none;
}

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

.btn-submit {
  background: var(--primary);
  color: #1B0F1E;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease;
}

.btn-submit:hover {
  transform: scale(1.04);
}

.contact-form-wrap.hidden {
  display: none;
}

.contact-success {
  display: none;
  border: 1px solid var(--secondary);
  padding: 28px 24px;
  max-width: 520px;
  margin-top: 28px;
}

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

.contact-success p {
  color: var(--text);
  font-size: 15px;
}

.redirect-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.redirect-box {
  max-width: 420px;
}

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

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

.redirect-box h1 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.redirect-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.redirect-notes {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(245, 208, 254, 0.6);
}

.ad-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 8px;
  margin-bottom: 12px;
}

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

.error-page h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

.error-page a {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.error-page a:hover {
  background: var(--secondary);
  color: #041016;
}

.sub-lab {
  padding: 48px 0 72px;
}

.sub-lab .lab-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.sub-lab .side-rail {
  border: 1px solid var(--border);
  padding: 20px;
  background: rgba(34, 211, 238, 0.04);
  position: sticky;
  top: 100px;
}

.sub-lab .side-rail h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 12px;
}

.sub-lab .side-rail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.sub-split {
  padding: 48px 0 72px;
}

.sub-split .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.sub-band {
  padding: 0 0 72px;
}

.sub-band .stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 32px 0;
  border: 1px solid var(--border);
}

.sub-band .stat-band > div {
  background: var(--bg);
  padding: 28px 20px;
  text-align: center;
}

.sub-quote-layout {
  padding: 48px 0 72px;
}

.pull-quote {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin: 32px 0;
  max-width: 640px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

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

.img-rail .decor-wrap {
  flex: 1;
  max-width: 240px;
}

@media (max-width: 900px) {
  .offer-card {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto auto;
  }

  .offer-logo-wrap {
    grid-column: 2;
    width: 110px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .offer-body {
    grid-column: 1 / -1;
  }

  .offer-bonus {
    font-size: 13px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .offer-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .layout-split,
  .layout-rail,
  .layout-cards,
  .layout-stats,
  .layout-mosaic,
  .layout-steps,
  .sub-lab .lab-grid,
  .sub-split .cols,
  .sub-band .stat-band {
    grid-template-columns: 1fr;
  }

  .layout-steps .step-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .zig-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .rail-num {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    font-size: 36px;
  }
}

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

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero {
    height: 80px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    transform: translateY(22%);
  }

  .disclosure {
    font-size: 11px;
    padding: 8px 12px;
  }

  .img-rail {
    flex-direction: column;
  }

  .img-rail .decor-wrap {
    max-width: 100%;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

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

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

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

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

@media (max-width: 375px) {
  .wrap {
    padding: 0 12px;
  }

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

  .decor-bg {
    height: 140px;
    max-height: 140px;
  }

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

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

  .offer-bonus {
    font-size: 12px;
  }
}
