:root {
  --bg: #2E1065;
  --surface: #4C1D95;
  --text: #F5F3FF;
  --muted: #C4B5FD;
  --primary: #F472B6;
  --secondary: #5B21B6;
  --accent: #EC4899;
  --border: rgba(255, 255, 255, 0.12);
  --medical: #F472B6;
  --health: #C4B5FD;
  --clean: #F5F3FF;
  --clinical: rgba(255, 255, 255, 0.06);
  --trust: #EC4899;
}

@keyframes medical-fade {
  from {
    opacity: 0.96;
  }
  to {
    opacity: 1;
  }
}

.ui-style-mark::before {
  content: "medical health clean clinical trust";
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  animation: medical-fade 12s linear infinite;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(244, 114, 182, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(91, 33, 182, 0.45), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--secondary) 48%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

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

.disclosure {
  text-align: center;
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--muted);
  padding: 6px 16px;
  background: transparent;
  border: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(46, 16, 101, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 58px;
}

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

.nav-logo img {
  height: 32px;
  width: auto;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.is-active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 16, 101, 0.55);
  z-index: 110;
}

.nav-overlay.is-visible {
  display: block;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 86vw);
  height: 100%;
  background: var(--surface);
  z-index: 120;
  padding: 72px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  border-left: 1px solid var(--border);
}

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

.nav-drawer a {
  display: block;
  color: var(--muted);
  padding: 12px 14px;
  font-weight: 600;
  border-left: 3px solid transparent;
}

.nav-drawer a:hover,
.nav-drawer a.is-active {
  color: var(--text);
  border-left-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

body.nav-open {
  overflow: hidden;
}

.medical-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.clinical-grid {
  min-height: 0;
}

.trust-rail {
  border-color: var(--trust);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.2s ease;
}

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

.btn-primary:hover {
  background: var(--accent);
  color: var(--text);
}

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

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.site-footer {
  background: rgba(46, 16, 101, 0.92);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}

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

.footer-brand {
  margin-bottom: 24px;
}

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

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

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

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

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

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

.footer-badges a {
  display: inline-block;
}

.footer-requisites {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-copy {
  color: var(--muted);
  font-size: 12px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(46, 16, 101, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

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

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

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

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

.cookie-banner.is-hidden {
  display: none;
}

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

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

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

.legal-page,
.subpage-main,
.go-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.legal-page h1,
.subpage-main h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.legal-page h2,
.subpage-main h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-page h3,
.subpage-main h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.legal-page p,
.subpage-main p,
.legal-page li,
.subpage-main li {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 15px;
}

.legal-page ul,
.subpage-main ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-page a {
  color: var(--primary);
}

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

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

.go-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.go-page__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 28px;
  max-width: 480px;
  width: 100%;
}

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

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

.go-meta {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}

.go-meta p {
  margin-bottom: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  max-width: 520px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}

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

.form-error {
  display: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

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

.contact-success {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  margin-top: 24px;
}

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

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

.page-404 {
  text-align: center;
  padding: 80px 24px;
}

.page-404 h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

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

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

  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }
}

@media (max-width: 480px) {
  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

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

  .info-6 .band-bg,
  .topic-layout-c .split-band .band-visual {
    max-width: 100%;
    min-height: 160px;
  }
}

.hero {
  position: relative;
  width: 100%;
  padding: 72px 24px 80px;
  background:
    linear-gradient(160deg, rgba(76, 29, 149, 0.55), rgba(46, 16, 101, 0.2)),
    radial-gradient(circle at 70% 40%, rgba(236, 72, 153, 0.12), transparent 55%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/decorative/decor_1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border);
  animation: riseIn 0.7s ease both;
}

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

.hero-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
}

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

.hero-cta {
  margin-top: 28px;
  display: inline-flex;
}

@media (max-width: 640px) {
  .hero-card {
    padding: 24px;
  }
}

.offers-section {
  position: relative;
  padding: 72px 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(46, 16, 101, 0.86);
}

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

.offers-header {
  text-align: center;
  margin-bottom: 40px;
}

.offers-header h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.offers-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-logo {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

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

.offer-card h3 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-bonus {
  display: block;
  font-size: clamp(0.78rem, 2.5vw, 0.95rem);
  color: #333;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  display: block;
  font-size: 0.72rem;
  color: #888;
  margin-top: 4px;
}

.offer-desc {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}

.offer-cta {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.35s ease;
  text-decoration: none;
  text-align: center;
  display: block;
  box-sizing: border-box;
  margin-top: auto;
}

.offer-cta:hover {
  background: #1d4ed8;
  color: #fff;
}

.info-section {
  padding: 64px 24px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

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

.info-section h2 {
  font-size: 1.55rem;
  margin-bottom: 16px;
  color: var(--text);
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.info-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.info-cta:hover {
  background: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

.info-1 .info-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.info-1 .info-split .decor-wrap {
  justify-self: end;
}

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

.info-2 .icon-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}

.info-2 .icon-mark {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(244, 114, 182, 0.15);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

.info-2 .icon-item h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.info-2 .icon-item p {
  font-size: 13px;
  margin: 0;
}

.info-3 .steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-3 .step {
  border-top: 3px solid var(--accent);
  padding-top: 14px;
}

.info-3 .step span {
  display: block;
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 6px;
}

.info-3 .step p {
  font-size: 13px;
  margin: 0;
}

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

.info-4 .pull-quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 24px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.info-5 .check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.info-5 .check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  border-radius: 6px;
}

.info-5 .check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 5px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 2px;
}

.info-6 .media-left {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.info-6 .band-bg {
  min-height: 220px;
  border-radius: 10px;
  background-image: url("/images/decorative/decor_4.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

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

.info-7 .stat {
  text-align: center;
  padding: 18px 12px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.info-7 .stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-7 .stat span {
  font-size: 12px;
  color: var(--muted);
}

.info-8 .timeline {
  margin-top: 20px;
  border-left: 2px solid var(--border);
  padding-left: 22px;
  display: grid;
  gap: 18px;
}

.info-8 .timeline-item {
  position: relative;
}

.info-8 .timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.25);
}

.info-8 .timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-8 .timeline-item p {
  margin: 0;
  font-size: 14px;
}

.info-9 .feature-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.info-9 .feature {
  padding: 22px 18px;
  background: rgba(91, 33, 182, 0.35);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.info-9 .feature h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.info-9 .feature p {
  margin: 0;
  font-size: 13px;
}

.info-10 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.info-10 .accent-rail {
  width: 6px;
  min-height: 160px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 4px;
}

.info-10 .info-10-body {
  max-width: 720px;
}

.info-10 .inline-decor {
  margin-top: 20px;
}

.topic-hero {
  padding: 48px 24px 32px;
  background: linear-gradient(135deg, var(--surface), var(--secondary));
  border-bottom: 1px solid var(--border);
}

.topic-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

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

.topic-hero p {
  color: var(--muted);
  max-width: 620px;
}

.topic-layout-a {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.topic-rail {
  position: sticky;
  top: 80px;
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.topic-rail h2 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

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

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

.topic-layout-b {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

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

.topic-stat-strip div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.topic-stat-strip strong {
  display: block;
  color: var(--primary);
  font-size: 1.3rem;
}

.topic-layout-c .split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.topic-layout-c .split-band .band-visual {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.topic-layout-c .split-band .band-copy {
  background: var(--surface);
  padding: 32px 28px;
}

.topic-layout-c .prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 14px;
}

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

.mini-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.callout {
  background: rgba(244, 114, 182, 0.1);
  border-left: 3px solid var(--primary);
  padding: 16px 18px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.callout p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

@media (max-width: 800px) {
  .info-1 .info-split,
  .info-4 .quote-split,
  .info-6 .media-left,
  .topic-layout-a,
  .topic-layout-c .split-band {
    grid-template-columns: 1fr;
  }

  .info-2 .icon-grid,
  .info-3 .steps-row,
  .info-7 .stat-band,
  .info-9 .feature-cols,
  .topic-stat-strip {
    grid-template-columns: 1fr;
  }

  .info-10 {
    grid-template-columns: 1fr;
  }

  .info-10 .accent-rail {
    width: 100%;
    min-height: 6px;
    height: 6px;
  }

  .topic-rail {
    position: static;
  }

  .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-wrap {
    max-width: 100%;
    overflow: hidden;
  }

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

@media (max-width: 375px) {
  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

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

  .offer-logo {
    width: 120px;
    height: 60px;
    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;
  }

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