:root {
  --bg: #050505;
  --surface: #0F0F0F;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #EAB308;
  --secondary: #CA8A04;
  --accent: #22C55E;
  --border: rgba(250, 250, 250, 0.14);
  --medical: #22C55E;
  --health: rgba(34, 197, 94, 0.12);
  --clean: #FAFAFA;
  --clinical: rgba(250, 250, 250, 0.06);
  --trust: #EAB308;
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1200px;
}

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

body::after {
  content: "medical health clean clinical trust";
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  animation: medical-fade 12s linear infinite;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(234, 179, 8, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(34, 197, 94, 0.08), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 40%, #050505 100%);
  overflow-x: hidden;
}

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

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

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

.disclosure-banner {
  width: 100%;
  background: rgba(250, 250, 250, 0.92);
  color: rgba(5, 5, 5, 0.65);
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  line-height: 1.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 50px;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-desktop a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  color: var(--text);
  transition: opacity 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  opacity: 1;
  color: var(--primary);
}

.nav-desktop a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.nav-desktop a[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  color: var(--text);
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid var(--border);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.nav-desktop a[data-tip]:hover::after,
.nav-desktop a[data-tip]:focus-visible::after {
  opacity: 1;
}

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

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

.nav-drawer {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
}

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

.nav-drawer a {
  display: block;
  padding: 10px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.nav-drawer a:last-child {
  border-bottom: none;
}

.medical-shell {
  position: relative;
}

.medical-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.03) 50%, transparent 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(250, 250, 250, 0.02) 48px
    );
  z-index: 0;
}

.health-band,
.clean-panel,
.clinical-grid,
.trust-rail {
  position: relative;
  z-index: 1;
}

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

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(234, 179, 8, 0.15), transparent 45%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-collage {
  position: relative;
  height: 220px;
  max-width: 520px;
  margin: 0 auto 24px;
}

.hero-collage img {
  position: absolute;
  object-fit: cover;
  border: 1px solid var(--border);
  max-width: 500px;
  max-height: 320px;
}

.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.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 0 2px rgba(0, 0, 0, 0.9);
  line-height: 1.15;
}

.hero-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.section {
  padding: 64px 20px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 12px;
  color: var(--text);
}

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

.offers-section {
  position: relative;
  background-image: linear-gradient(rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.9)), url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offer-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  color: #111;
  padding: 20px 24px;
  border: 1px solid #e5e5e5;
  max-width: 720px;
  margin: 0 auto;
}

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

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

.offer-body {
  flex: 1;
  min-width: 180px;
}

.offer-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.offer-bonus {
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  font-weight: 600;
  color: #166534;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
  max-width: 100%;
}

.offer-terms {
  font-size: 11px;
  color: #737373;
  margin-top: 4px;
}

.offer-desc {
  font-size: 12px;
  color: #737373;
  margin-top: 8px;
  line-height: 1.45;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #166534;
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.offer-cta:hover {
  background: #14532d;
  color: #fff;
}

.info-section {
  padding: 56px 20px;
  position: relative;
}

.info-section:nth-child(even) {
  background: var(--clinical);
}

.info-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--medical), transparent);
  opacity: 0.5;
}

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

.info-section h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin-bottom: 16px;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 720px;
}

.info-section ul {
  margin: 12px 0 16px 20px;
  color: var(--muted);
}

.info-section li {
  margin-bottom: 8px;
}

.icon-led {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.icon-led .icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--health);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.icon-led .icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

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

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

.steps-list {
  counter-reset: step;
  list-style: none;
  margin-left: 0;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding-left: 40px;
  margin-bottom: 14px;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.metric {
  border: 1px solid var(--border);
  padding: 16px;
  background: var(--surface);
}

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

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.check-item {
  border-left: 2px solid var(--accent);
  padding: 10px 14px;
  background: var(--health);
  color: var(--text);
  font-size: 14px;
}

.timeline {
  border-left: 2px solid var(--border);
  padding-left: 20px;
  margin-top: 16px;
}

.timeline-item {
  position: relative;
  margin-bottom: 18px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.quote-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin: 20px 0;
  font-size: 1.15rem;
  color: var(--text);
  font-style: italic;
}

.bg-rail {
  background-size: cover;
  background-position: center;
  min-height: 160px;
  border: 1px solid var(--border);
}

.cta-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-link:hover {
  background: var(--primary);
  color: var(--bg);
}

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

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
}

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

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

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

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

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

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

.footer-nz-disclosure {
  color: rgba(250, 250, 250, 0.55);
  font-size: 12px;
  line-height: 1.65;
  max-width: 720px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.age-overlay,
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-overlay[hidden],
.cookie-overlay[hidden] {
  display: none;
}

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

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

.age-modal p,
.cookie-modal p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

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

.btn {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
}

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

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

.page-hero {
  padding: 40px 20px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(234, 179, 8, 0.08), transparent);
}

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

.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}

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

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

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

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

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

.page-content ul {
  margin: 0 0 16px 20px;
}

.contact-form {
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 520px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text);
}

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

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 4px;
}

.field-error {
  color: #f87171;
  font-size: 12px;
  min-height: 18px;
  margin-bottom: 10px;
}

.form-success {
  padding: 24px;
  background: var(--health);
  border: 1px solid var(--accent);
  color: var(--text);
}

.narrow-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

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

.go-box {
  max-width: 480px;
}

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

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

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

@keyframes pulseSoft {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.topic-hero-strip {
  padding: 48px 20px 32px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.08), transparent 55%),
    var(--surface);
}

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

.topic-kicker {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}

.topic-layout-rail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 64px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.topic-aside {
  position: sticky;
  top: 70px;
}

.topic-toc {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  border-left: 2px solid var(--border);
}

.topic-toc li {
  padding: 8px 0 8px 14px;
  color: var(--muted);
  font-size: 13px;
}

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

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

.topic-band {
  margin: 24px 0;
  min-height: 180px;
}

.stat-band {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--health);
}

.stat-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.topic-split {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 64px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
}

.topic-split-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.topic-split-copy h2 {
  margin: 26px 0 12px;
}

.inline-decor {
  margin: 20px 0;
}

.topic-side-mosaic {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-callout {
  border: 1px solid var(--border);
  padding: 16px;
  background: var(--surface);
}

.side-callout h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.side-callout ul {
  margin: 0 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.license-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 280px;
  border-bottom: 1px solid var(--border);
}

.license-hero-copy {
  padding: 48px 32px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.license-hero-copy h1 {
  margin-bottom: 16px;
}

.pull-quote {
  font-size: 1.1rem;
  color: var(--muted);
  border-left: 3px solid var(--primary);
  padding-left: 16px;
}

.license-hero-visual {
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

.hero-collage {
  animation: fadeUp 0.7s ease both;
}

.hero-sub {
  animation: fadeUp 0.7s ease 0.15s both;
}

.offer-card {
  animation: fadeUp 0.6s ease both;
}

.trust-pulse {
  animation: pulseSoft 2.4s ease-in-out infinite;
}

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

  .burger {
    display: flex;
  }

  .split-row,
  .metric-row,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 320px;
    justify-content: center;
    overflow: hidden;
  }

  .hero-collage {
    position: absolute;
    inset: 0;
    height: auto;
    max-width: none;
    margin: 0;
    z-index: 0;
    overflow: hidden;
  }

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

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

  .hero-collage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.88));
    z-index: 2;
  }

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

  .hero-inner {
    text-align: center;
    position: relative;
    z-index: 3;
  }

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

  .icon-led {
    grid-template-columns: 1fr;
  }

  .topic-layout-rail,
  .topic-split,
  .license-hero,
  .stat-band-inner {
    grid-template-columns: 1fr;
  }

  .topic-aside {
    position: static;
  }

  .offer-logo {
    width: 96px;
    height: 96px;
    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 img {
    max-width: 100%;
    max-height: 220px;
  }

  .bg-rail,
  .license-hero-visual,
  .topic-band {
    max-width: 100%;
    overflow: hidden;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .hero-collage .c1,
  .decor-wrap img,
  .bg-rail,
  .license-hero-visual {
    max-width: 100%;
  }

  .offer-logo {
    width: 88px;
    height: 88px;
  }

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