:root {
  --radius: 1rem;
  --background: #f7f9f5;
  --foreground: #131e11;
  --brand: #55624e;
  --brand-icon: #647356;
  --primary: #0f172b;
  --primary-foreground: #f8fafc;
  --gradient-hero: linear-gradient(160deg, #f2f7ee 0%, #e4efdf 50%, #d1e5cc 100%);
  --gradient-card: linear-gradient(145deg, #ffffffe0, #f2f7efa6);
  --gradient-btn: linear-gradient(135deg, #55624e, #677b62);
  --shadow-soft: 0 10px 40px -10px #55624e4d;
  --shadow-card: 0 20px 60px -20px #28312447;
  --muted-foreground: #62748e;
  --border: #e2e8f0;
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-poppins: "Poppins", var(--font-sans);
  --highlight: #55624e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--gradient-hero);
  color: var(--foreground);
  min-height: 100vh;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  text-align: center;
  margin-bottom: 16px;
}

.eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand);
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.75rem;
  margin: 0 0 16px;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

.subtitle {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}

.card {
  background: var(--gradient-card);
  border: 1px solid #ffffff80;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  padding: 32px;
}

.doctor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.doctor-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
}

.specialty-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.doctor-card h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.bio {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 380px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.product-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--gradient-btn);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 16px;
}

.section-title.plain {
  font-family: var(--font-serif);
}

.section-title .icon.leaf {
  color: var(--brand-icon);
}

.about-text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
}

.about-text strong {
  color: var(--foreground);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0f172b1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.list-icon .icon {
  color: var(--primary);
}

.list-title {
  font-weight: 600;
  margin: 0 0 4px;
}

.list-desc {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.credential-line {
  margin: -4px 0 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brand);
}

.doctor-focus-list {
  width: 100%;
  max-width: 380px;
  gap: 12px;
  margin: 0 0 24px;
  text-align: left;
}

.doctor-focus-list .list-icon {
  width: 24px;
  height: 24px;
}

.doctor-focus-list .list-title {
  font-weight: 500;
  margin: 0;
  font-size: 0.95rem;
}

.footnote {
  margin: 20px 0 0;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon.small {
  width: 16px;
  height: 16px;
}

.page-footer {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.85rem;
  margin-top: 16px;
}

h1.vsl-headline {
  font-family: var(--font-poppins);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.vsl-headline .highlight-green {
  color: #3d6b45;
  font-weight: 800;
}

.vsl-headline .highlight-red {
  color: #b3261e;
  font-weight: 800;
}

.vsl-subheadline {
  font-family: var(--font-poppins);
  color: #000;
  font-size: 0.925rem;
  line-height: 1.35;
  max-width: 540px;
}

.vsl-page .page {
  padding-top: 28px;
}

.vsl-hero {
  margin-bottom: 0;
}

.vsl-hero + .video-card {
  margin-top: -12px;
}

.video-card {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 1.25rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172b;
}

.video-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #f8fafc;
  background: linear-gradient(160deg, #1c2b1f 0%, #0f172b 100%);
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-left: 3px;
}

.video-placeholder p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
}

.specialists-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.3;
  color: var(--foreground);
  margin: 0 0 4px;
  text-align: center;
}

.about-clinic-dark {
  background: linear-gradient(160deg, #14213d 0%, #0f172b 55%, #16241c 100%);
  border-radius: 1.5rem;
  padding: 36px 28px;
  color: #f8fafc;
  box-shadow: var(--shadow-card);
}

.eyebrow-caps {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d4a355;
  margin: 0 0 12px;
}

.eyebrow-caps::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #d4a355;
  display: inline-block;
}

.about-clinic-dark h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 14px;
  color: #fff;
}

.about-clinic-dark p {
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 14px;
}

.about-clinic-dark p:last-of-type {
  margin-bottom: 22px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.pill {
  border: 1px solid #ffffff33;
  color: #e2e8f0;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
}

.about-clinic-photo {
  width: 100%;
  max-height: 520px;
  border-radius: 1rem;
  display: block;
  object-fit: contain;
}

.section-intro {
  margin: -8px 0 20px;
}

.section-plain {
  padding: 0 4px;
  margin-top: 16px;
  text-align: center;
}

.section-plain .section-title {
  justify-content: center;
  margin: 0 0 8px;
}

.section-plain .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-plain .steps-flow,
.section-plain .block-grid {
  text-align: left;
  margin-top: 28px;
}

.steps-flow {
  display: flex;
  flex-direction: column;
}

.step-card {
  background: var(--gradient-card);
  border: 1px solid #ffffff80;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
  padding: 22px 24px;
}

.step-card .step-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: #c98a3e;
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.step-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.55;
}

.step-arrow {
  display: flex;
  justify-content: center;
  margin: 6px 0;
  color: var(--brand-icon);
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.block-card {
  background: var(--gradient-card);
  border: 1px solid #ffffff80;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.block-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: #e9f1e4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.block-icon .icon {
  color: var(--brand-icon);
  width: 20px;
  height: 20px;
}

.block-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 2px 0 8px;
  color: var(--foreground);
}

.block-desc {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.list-tag {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 4px;
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  h1.vsl-headline {
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .vsl-page .page {
    padding-top: 20px;
  }

  .video-card {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
  }

  .card {
    padding: 24px;
  }

  .about-clinic-dark {
    padding: 28px 22px;
  }

  .specialists-heading {
    font-size: 1.4rem;
  }

  .block-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .block-card {
    padding: 20px;
  }
}
