/* =====================================================
   Holi · Landing Page · hi-fi styles
   Uses tokens from lp/holi-tokens.css
   ===================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* DM Sans display — override DS default of 84px h1 since LP needs scaled */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--fg);
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

/* Sfizia accent — replaces DS em.holi pattern */
em, .italic {
  font-family: var(--ff-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--holi-plum-700);
  letter-spacing: -0.005em;
  /* per brand book: 2pt larger optical correction */
}

/* =====================================================
   Layout primitives
   ===================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (max-width: 768px) {
  .container { padding: 0 var(--space-3); }
}

section {
  position: relative;
}

.section-pad {
  padding: var(--space-8) 0;
}
@media (max-width: 768px) {
  .section-pad { padding: var(--space-6) 0; }
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  transition: transform 200ms cubic-bezier(0.22, 0.61, 0.36, 1),
              background 200ms ease,
              opacity 200ms ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn--primary {
  background: #6C46D0;
  color: #fff;
}
.btn--primary:hover {
  background: #442E7D;
  color: #fff;
}
.btn--primary svg,
.btn--primary svg path { stroke: #fff !important; }
.btn--primary:active { transform: translateY(1px); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--fg);
  padding: 14.5px 24px;
}
.btn--ghost:hover { background: rgba(27,31,41,0.04); }

/* Soft secondary "qualify" button — thin tinted border, transparent */
.btn--qualify {
  background: transparent;
  color: var(--holi-plum-900);
  border: 1.5px solid rgba(68, 46, 125, 0.32);
  font-weight: 500;
}
.btn--qualify:hover {
  background: rgba(68, 46, 125, 0.05);
  border-color: var(--holi-plum-700);
}
.btn--qualify svg, .btn--qualify svg path { stroke: var(--holi-plum-700); }

.btn--white {
  background: var(--holi-white);
  color: var(--holi-plum-700);
}
.btn--white:hover { background: rgba(255,255,255,0.88); }

/* Featured pricing card button — distinct hover */
.price-card--featured .btn--white {
  background: #fff !important;
  color: #442E7D !important;
}
.price-card--featured .btn--white:hover {
  background: #f7f3ff !important;
  color: #442E7D !important;
}
.price-card--featured .btn--white:hover svg,
.price-card--featured .btn--white:hover svg path { stroke: #442E7D !important; }

.btn--lg { font-size: 16px; padding: 18px 32px; }
.btn--sm { font-size: 13px; padding: 11px 18px; }

.btn .arrow { transition: transform 200ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.btn:hover .arrow { transform: translateX(3px); }

/* =====================================================
   Eyebrow & dividers
   ===================================================== */
.eyebrow {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--holi-plum-700);
}
.eyebrow--muted { color: var(--fg-muted); }
.eyebrow--on-dark { color: var(--holi-violet-200); }

/* =====================================================
   Navigation
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid rgba(27,31,41,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-cta-mobile { display: none; }
.nav__cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__reassure {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.nav__reassure::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1F8A5B;
  flex: 0 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  color: #412E79;
}
.nav__logo svg,
.nav__logo img {
  height: 22px;
  width: auto;
  display: block;
}
.btn--with-price {
  gap: 10px;
}
.btn__price {
  background: var(--holi-violet-200);
  color: var(--holi-plum-700);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
}
.btn--white .btn__price {
  background: var(--holi-violet-050);
  color: var(--holi-plum-700);
}
.btn--primary .btn__price {
  background: rgba(255,255,255,0.18);
  color: var(--holi-on-dark);
}
@media (max-width: 540px) {
  .btn__price { display: none; }
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
  padding: var(--space-7) 0 var(--space-8);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-5); }
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-size: 1.04em;
  display: inline-block;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  max-width: 56ch;
  margin-top: 2px;
}
.hero__bullets {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 460px;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--fg);
  padding: 15px 0;
  border-bottom: 1px solid rgba(68, 46, 125, 0.12);
}
.hero__bullets li:first-child { padding-top: 0; }
.hero__bullets li:last-child { border-bottom: none; padding-bottom: 0; }
.hero__bullet-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-top: -2px;
  border-radius: 50%;
  background: var(--holi-plum-700);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(68, 46, 125, 0.22);
}
@media (max-width: 768px) {
  .hero__copy .hero__bullets { order: 3; align-self: flex-start; max-width: 100%; }
  .hero__bullets li { font-size: 16px; padding: 13px 0; }
}

.hero__ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: 8px;
}

/* === For whom === */
.forwhom__head { margin-bottom: var(--space-5); }
.forwhom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (max-width: 768px) {
  .forwhom__grid { grid-template-columns: 1fr; }
}
.forwhom__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--holi-bone);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}
.forwhom__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-pill);
  background: var(--holi-violet-050);
  color: var(--holi-plum-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.forwhom__icon svg, .forwhom__icon svg path { stroke: var(--holi-plum-700); }
.forwhom__text {
  font-size: 16px;
  line-height: 1.45;
  color: var(--fg);
  margin: 0;
}
@media (max-width: 768px) {
  .forwhom__text { font-size: 15px; }
  .forwhom__dot { display: none; }
}
.forwhom__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: var(--space-5);
}
.forwhom__cta-text {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--holi-plum-900);
}
.faq__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: var(--space-6);
}

/* === Hero trust band === */
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--space-4);
  background: #E8DFCD;
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-5);
}
@media (max-width: 860px) {
  .hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4) var(--space-3);
  }
  .hero-trust__divider { display: none; }
}
@media (max-width: 460px) {
  .hero-trust { gap: 0; }
}
.hero-trust__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  flex: 0 1 240px;
  justify-content: center;
}
.hero-trust__stat {
  font-family: var(--ff-display);
  font-size: 28px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--holi-plum-700);
  display: inline-flex;
  align-items: baseline;
}
.hero-trust__stat-sub {
  font-size: 15px;
  opacity: 0.5;
  letter-spacing: -0.01em;
}
.hero-trust__stat--icon {
  align-items: center;
  color: var(--holi-plum-700);
}
.hero-trust__stat--icon svg { width: 22px; height: 22px; }
.hero-trust__stat--icon svg,
.hero-trust__stat--icon svg path { stroke: var(--holi-plum-700) !important; stroke-width: 1.7 !important; }
.hero-trust__label {
  font-family: var(--ff-body);
  font-size: 12px;
  line-height: 1.35;
  color: var(--fg-muted);
  max-width: 22ch;
}
.hero-trust__divider {
  width: 1px;
  align-self: center;
  height: 34px;
  background: rgba(68,46,125,0.20);
  justify-self: center;
}

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  background: var(--holi-sand-150);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.hero__badge {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--holi-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
}
@media (max-width: 768px) {
  .hero__badge {
    left: 50%; bottom: 16px; right: auto;
    transform: translateX(-50%);
    padding: 12px 22px;
    min-width: 0;
    width: max-content;
    max-width: calc(100% - 24px);
    text-align: center;
  }
  .hero__badge-stat { white-space: nowrap; font-size: 26px !important; }
}
.hero__badge-stat {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--holi-plum-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__badge-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
}

.trust-pas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: var(--space-2);
}
.trust-pas .sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--holi-ink-40);
}

/* =====================================================
   Reframe
   ===================================================== */
.reframe {
  background: var(--holi-bone);
}
.reframe-br { display: none; }
.reframe__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 768px) {
  .reframe__grid { grid-template-columns: 1fr; gap: var(--space-4); }
}
.reframe h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: var(--space-3);
}
.reframe p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  max-width: 56ch;
}
.reframe__box {
  margin-top: var(--space-3);
  max-width: 56ch;
  background: var(--holi-white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border-left: 3px solid var(--holi-plum-700);
  box-shadow: var(--shadow-sm);
}
.reframe__box-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: var(--holi-plum-700);
  margin-bottom: 8px;
}
.reframe__box-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg);
  margin: 0;
  max-width: none;
}
.reframe__render {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reframe__render img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
}

/* =====================================================
   Pillars
   ===================================================== */
.pillars {
  background: var(--bg);
}
.pillars__intro {
  max-width: 760px;
  margin-bottom: var(--space-6);
}
.pillars__intro h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  margin-bottom: var(--space-3);
}
.pillars__lead {
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  font-weight: 400;
  max-width: 64ch;
}
.pillars__lead em {
  font-family: var(--ff-accent);
  font-style: italic;
  font-weight: 400;
}
.pillars__lead strong {
  font-weight: 500;
  color: var(--fg);
}
.pillars__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.pillar {
  display: flex;
  flex-direction: column;
  background: var(--holi-white);
  border: 1px solid rgba(27,31,41,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 320ms cubic-bezier(0.22,0.61,0.36,1), box-shadow 320ms ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(27,31,41,0.10);
}
.pillar__media {
  position: relative;
  border-radius: 0 !important;
}
.pillar__icon-chip {
  position: absolute;
  left: 16px; bottom: 16px;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--holi-plum-700);
  box-shadow: 0 4px 12px rgba(27,31,41,0.12);
}
.pillar__text {
  padding: var(--space-3) var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pillar__number {
  font-size: 34px;
  color: var(--holi-plum-700);
  line-height: 0.9;
}
.pillar__eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(27,31,41,0.12);
}
.pillar__title {
  font-size: 22px !important;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.pillar--reverse { }
@media (max-width: 768px) {
  .pillars__list { grid-template-columns: 1fr; gap: var(--space-4); }
}
@media (max-width: 768px) {
  .pillar, .pillar--reverse { grid-template-columns: 1fr; gap: var(--space-3); }
  .pillar--reverse .pillar__media { order: 0; }
}
.pillar__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--holi-sand-150);
  position: relative;
}
.pillar__media-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  background: var(--holi-violet-050);
  color: var(--holi-plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pillar__media img { width: 100%; height: 100%; object-fit: cover; }
.pillar__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--space-3);
}
.pillar__number {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--holi-plum-700);
}
.pillar__divider {
  flex: 1;
  height: 1px;
  background: var(--holi-ink-20);
}
.pillar__icon-tag {
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  background: var(--holi-violet-050);
  color: var(--holi-plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar__title {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  margin-bottom: var(--space-2);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.pillar__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg);
  max-width: 56ch;
}
.pillar__body strong {
  font-weight: 500;
  color: var(--fg);
}

.pillars__cta-card {
  background: var(--holi-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
@media (max-width: 768px) {
  .pillars__cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-3);
  }
}
.pillars__cta-card p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 520px;
}
.pillars__cta-card strong {
  font-weight: 500;
  color: var(--fg);
}

/* =====================================================
   Results
   ===================================================== */
.results {
  background: var(--holi-bone);
}
.results__top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-7);
  align-items: start;
  margin-bottom: var(--space-5);
}
@media (max-width: 768px) {
  .results__top { grid-template-columns: 1fr; gap: var(--space-4); }
}
@media (min-width: 769px) and (max-width: 1160px) {
  .results__top { grid-template-columns: 1.15fr 0.85fr !important; gap: var(--space-4) !important; height: auto !important; align-items: center !important; }
  .results__top > div:last-child { max-width: 100%; min-width: 0; width: 100%; height: auto !important; margin: 0 !important; }
  .results__top > div:first-child { max-width: 100%; }
  .results__chart { padding: var(--space-2); max-width: 100%; overflow: hidden; }
  .results__chart svg { width: 100%; height: auto; display: block; }
}

/* ---- Tablet (769–1160px): widen hero image, slightly smaller titles ---- */
@media (min-width: 769px) and (max-width: 1160px) {
  .hero__grid { display: flex !important; flex-direction: column !important; gap: var(--space-4) !important; height: auto !important; }
  .hero__copy { display: contents !important; }
  .hero__copy h1 { order: 1; align-self: flex-start !important; text-align: left !important; width: 100% !important; margin: 0 !important; }
  .hero__media { order: 2; height: 300px !important; width: 100% !important; }
  .hero__media img { height: 100% !important; object-position: center 32% !important; }
  .hero__copy .hero__sub { order: 3; width: 500px !important; max-width: 100% !important; align-self: flex-start !important; margin-left: 0 !important; margin-right: auto !important; text-align: left !important; }
  .hero__copy .hero__ctas { order: 4; justify-content: flex-start !important; align-self: flex-start !important; margin-left: 0 !important; margin-right: auto !important; width: auto !important; }
  .hero h1 { font-size: 45px !important; }
  .hero h1 > span { font-size: 45px !important; }
  .hero h1 > em { font-size: 48px !important; }
  .doctors h2 > span { font-size: 45px !important; }
  .reframe h2, .pillars__intro h2, .doctors h2, .steps h2,
  .pricing h2, .faq__head h2, .final h2, .kamila h2 { font-size: 45px !important; }
  .reframe h2 em, .pillars__intro h2 em, .doctors h2 em, .steps h2 em,
  .pricing h2 em, .faq__head h2 em, .final h2 em, .kamila h2 em,
  .results h2 em, .results h2 span:not(.__om-t), .results__why h3 em { font-size: 48px !important; }
  .results h2 { font-size: 45px !important; }
  .results__why h3 { font-size: 45px !important; }
  .faq__grid { grid-template-columns: 1fr !important; gap: var(--space-5) !important; }
  .faq__sub { width: auto !important; max-width: 100% !important; }
  .faq__head h2 { white-space: nowrap !important; }
  .steps__cta { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: var(--space-3) !important; }
  .steps__highlight { justify-content: center !important; }
  .pricing h2 em { display: block !important; }
  /* Hero trust band: structured 2×2 with separators */
  .hero-trust {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 1fr !important;
    gap: 0 !important;
    padding: var(--space-3) var(--space-5) !important;
    align-items: stretch !important;
  }
  .hero-trust__divider { display: none !important; }
  .hero-trust__item {
    padding: var(--space-3) var(--space-4) !important;
    justify-content: flex-start !important;
  }
  .hero-trust__item .hero-trust__stat,
  .hero-trust__item .hero-trust__stat--icon {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
  }
  .hero-trust__item:nth-of-type(odd) { border-right: 1px solid rgba(27,31,41,0.12) !important; }
  .hero-trust__item:nth-of-type(3), .hero-trust__item:nth-of-type(4) { border-top: 1px solid rgba(27,31,41,0.12) !important; }
  /* Reframe: title, image, body order — like hero */
  .reframe__grid { grid-template-columns: 1fr !important; gap: var(--space-4) !important; display: flex !important; flex-direction: column !important; }
  .reframe__grid > div:first-child { display: contents !important; }
  .reframe__grid > div:first-child h2 { order: 1 !important; align-self: flex-start !important; text-align: left !important; width: 100% !important; }
  .reframe__render { order: 2 !important; width: 100% !important; }
  .reframe__grid > div:first-child p { order: 3 !important; align-self: flex-start !important; margin-left: 0 !important; margin-top: 0 !important; max-width: 100% !important; width: 500px !important; }
  .reframe h2 { width: auto !important; margin-bottom: 0 !important; }
  .reframe-br { display: inline !important; }
  .reframe__render img { height: 300px !important; aspect-ratio: auto !important; width: 100% !important; object-fit: cover !important; object-position: center 15% !important; }
  .pillar__media { height: 300px !important; }
  .pillar__media img { height: 300px !important; object-fit: cover !important; }
  .pillars__list .pillar:nth-of-type(1) .pillar__media img { object-position: center 30% !important; }
  .pillars__list .pillar:nth-of-type(2) .pillar__media img { object-position: center 42% !important; }
  .pillars__list .pillar:nth-of-type(3) .pillar__media img { object-position: center 40% !important; }
  .pillars__list .pillar:nth-of-type(4) .pillar__media img { object-position: center 38% !important; }
}
.results h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.022em;
}
.results h2 em { font-family: var(--ff-accent); font-style: italic; }
.results__intro-p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  margin-top: var(--space-2);
}
.results__intro-p strong { font-weight: 500; }
.results__chart {
  background: var(--holi-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.results__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-1);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.results__chart svg { width: 100%; height: auto; display: block; }
.results__legend {
  display: flex;
  gap: var(--space-3);
  margin-top: 18px;
  font-size: 13px;
  color: var(--fg-muted);
}
.results__legend > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.results__quote {
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  max-width: 900px;
  padding-left: var(--space-3);
  border-left: 3px solid var(--holi-plum-700);
  color: var(--fg);
  margin: var(--space-6) 0;
}
.results__why h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.results__why h3 em { font-family: var(--ff-accent); font-style: italic; }
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  border-top: 1px solid var(--holi-ink-20);
  padding-top: var(--space-4);
}
@media (max-width: 768px) {
  .results__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .results__grid { grid-template-columns: 1fr; }
}
.result-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-item .num {
  width: 32px; height: 32px;
  border-radius: var(--radius-pill);
  background: var(--holi-plum-700);
  color: var(--holi-white);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 14px; font-weight: 500;
}
.result-item .lead {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.result-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}
.results__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--holi-ink-20);
}
@media (max-width: 768px) {
  .results__footer { flex-direction: column; align-items: center; text-align: center; }
}
.results__source {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 60ch;
}

/* =====================================================
   Doctors
   ===================================================== */
.doctors {
  background: var(--bg);
}
.doctors__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.doctors h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  max-width: 22ch;
}
.doctors__head-meta--v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 768px) {
  .doctors__head-meta--v2 { grid-template-columns: 1fr; gap: var(--space-3); }
}
.doctors__trust-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.doctors__head-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  max-width: 56ch;
  margin: 0;
}
.doctors__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.doctors__features--2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
.doctors__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: var(--space-4);
  background: var(--holi-bone);
  border-radius: var(--radius-lg);
}
.doctors__feature-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: var(--holi-plum-700);
}
.doctors__feature-text {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--fg);
}
@media (max-width: 768px) {
  .doctors__features { grid-template-columns: 1fr; gap: var(--space-3); }
  .doctors__feature {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: var(--space-3);
  }
  .doctors__feature-icon { width: 40px; height: 40px; }
  .doctors__feature-text { font-size: 16px; }
}
.doctors__track { display: flex; width: max-content; gap: var(--space-2); animation: doctors-marquee 38s linear infinite; }
.doctors__strip {
  overflow: hidden;
  margin-bottom: var(--space-4);
}
.doctors__strip .doctor { flex: 0 0 220px; width: 220px; height: auto; }
.doctors__note { margin-top: 64px; }
@keyframes doctors-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .doctors__strip { grid-template-columns: none; }
}
@media (max-width: 540px) {
  .doctors__strip { grid-template-columns: none; }
}
.doctor {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doctor__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/6;
  background: var(--holi-sand-150);
}
.doctor__photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor__name {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.doctor__info {
  font-size: 11px;
  line-height: 1.4;
  color: var(--fg-muted);
  margin-top: -6px;
}

.doctors__trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--holi-plum-700);
  background: var(--holi-violet-050);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
  white-space: nowrap;
}

.doctors__note {
  background: var(--holi-bone);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3);
  margin-top: var(--space-3);
  border-left: 3px solid var(--holi-plum-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.doctors__note .tag {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--holi-plum-700);
  line-height: 1.3;
}
.doctors__note-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg);
  margin: 8px 0 0;
  max-width: 70ch;
}

.council--compact {
  grid-template-columns: 1fr !important;
  padding: var(--space-3) !important;
}
.council--compact .council__board {
  border-left: 0;
  padding-left: 0;
}

.council {
  background: var(--holi-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
  margin-top: var(--space-4);
}
@media (max-width: 768px) {
  .council { grid-template-columns: 1fr; gap: var(--space-3); }
}
.council__cert strong { font-weight: 500; color: var(--fg); }
.council__cert .plum { color: var(--holi-plum-700); font-weight: 500; }
.council__board {
  border-left: 1px solid var(--holi-ink-20);
  padding-left: var(--space-4);
}
@media (max-width: 768px) {
  .council__board { border-left: 0; border-top: 1px solid var(--holi-ink-20); padding-left: 0; padding-top: var(--space-3); }
}
.council__label {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.council__board p { font-size: 13px; line-height: 1.55; }
.council__board em { color: var(--fg-muted); font-style: italic; font-family: var(--ff-accent); }

/* =====================================================
   Kamila (patient story)
   ===================================================== */
.kamila {
  background: var(--holi-cream);
}
.kamila h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: var(--space-5);
}
.kamila__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 768px) {
  .kamila__grid { grid-template-columns: 1fr; }
}
.kamila__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--holi-sand-150);
}
.kamila__media img { width: 100%; height: 100%; object-fit: cover; }
.kamila__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.kamila__lead {
  font-family: var(--ff-display);
  font-size: 17px;
  line-height: 1.7;
}
.kamila__lead strong { font-weight: 500; }
.kamila__byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: var(--space-2);
  border-top: 1px solid var(--holi-ink-20);
}
.kamila__byline-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--holi-sand-300);
  overflow: hidden;
}
.kamila__byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.kamila__byline-name {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 500;
}
.kamila__byline-info {
  font-size: 13px;
  color: var(--fg-muted);
}
.kamila__byline-info .plum { color: var(--holi-plum-700); font-weight: 500; }
.kamila__link {
  color: var(--holi-plum-700);
  font-size: 14px;
  font-weight: 500;
}
.kamila__link:hover { color: var(--holi-violet-500); }

/* =====================================================
   Steps
   ===================================================== */
.steps {
  background: var(--bg);
}
.steps__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: var(--space-7);
}
.steps h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
}
.steps__sub {
  font-family: var(--ff-display);
  font-style: normal;
  font-size: 22px;
  color: var(--holi-plum-700);
}
.steps__grid {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: stretch;
  margin-bottom: var(--space-5);
}
@media (max-width: 768px) {
  .steps__grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .steps__arrow { display: none; }
}
.step {
  background: var(--holi-bone);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step__num {
  width: 28px; height: 28px;
  border-radius: var(--radius-pill);
  background: var(--holi-plum-700);
  color: var(--holi-white);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 500;
}
.step__label {
  font-family: var(--ff-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  font-weight: 500;
}
.step__title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.step__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg);
  margin-top: 8px;
}
.step__body strong { font-weight: 500; color: var(--fg); }
.steps__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--holi-plum-700);
}

.steps__cta {
  display: flex;
  align-items: stretch;
  gap: var(--space-3);
  background: var(--holi-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}
@media (max-width: 768px) {
  .steps__cta { flex-direction: column; align-items: flex-start; }
}
.steps__highlight {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
}
.steps__big {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.steps__big-num {
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 500;
  color: var(--holi-plum-700);
  letter-spacing: -0.04em;
}
.steps__big-unit {
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: 28px;
  color: var(--holi-plum-700);
}
.steps__big-cap {
  border-left: 1px solid var(--holi-ink-20);
  padding-left: var(--space-3);
  max-width: 380px;
}
.steps__big-cap-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}
.steps__big-cap-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* =====================================================
   Pricing
   ===================================================== */
.pricing {
  background: var(--holi-bone);
}
.pricing__head {
  max-width: 800px;
  margin-bottom: var(--space-5);
}
.pricing h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  margin-bottom: var(--space-2);
}
.pricing__intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg);
  max-width: 64ch;
}
/* === Split pricing card (plum left + white right) === */
.pricing__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--holi-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(27,31,41,0.10);
}
@media (max-width: 768px) {
  .pricing__split { grid-template-columns: 1fr; }
}
.pricing__left {
  background: var(--holi-plum-700);
  color: #fff;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pricing__promo-sticker {
  position: absolute;
  top: 26px;
  right: -42px;
  transform: rotate(45deg);
  background: var(--holi-violet-050);
  color: var(--holi-plum-900);
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 56px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.pricing__kicker-pill {
  align-self: flex-start;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}
.pricing__promo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing__promo-pill {
  align-self: flex-start;
  background: var(--holi-violet-050);
  color: var(--holi-plum-900);
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pricing__promo-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--holi-plum-700);
}
.pricing__bigprice {
  font-family: var(--ff-display);
  font-size: 84px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.03em;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.pricing__cur { font-size: 28px; margin-top: 10px; }
.pricing__per { font-size: 15px; opacity: 0.8; margin-top: 10px; }
.pricing__left-divider {
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: var(--space-4) 0;
}
.pricing__left-list {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing__left-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
}
.pricing__left-list svg { flex-shrink: 0; stroke: var(--holi-violet-200); }
.pricing__cta {
  width: 100%;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}
.pricing__cta-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--holi-plum-700);
}
.pricing__cta-go svg, .pricing__cta-go svg path { stroke: #fff !important; }
.pricing__note {
  font-size: 12px;
  opacity: 0.78;
  text-align: center;
  margin-top: var(--space-2);
}
.pricing__right {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
}
.pricing__right-label {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(27,31,41,0.10);
}
.pricing__incl {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing__incl li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(27,31,41,0.08);
}
.pricing__incl li:last-child { border-bottom: none; }
.pricing__incl-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: var(--holi-violet-050);
  color: var(--holi-plum-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing__incl-icon svg, .pricing__incl-icon svg path { stroke: var(--holi-plum-700); }
.pricing__incl-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pricing__incl-title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
}
.pricing__incl-sub { font-size: 13px; color: var(--fg-muted); line-height: 1.4; }
.pricing__incl-badge {
  flex-shrink: 0;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--holi-plum-700);
  background: var(--holi-violet-050);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
@media (max-width: 768px) {
  .pricing__bigprice { font-size: 64px; }
  .pricing__incl-sub { font-size: 12px; }
  .pricing__incl-badge { font-size: 10px; padding: 5px 9px; }
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  align-items: stretch;
}
@media (max-width: 768px) {
  .pricing__grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--holi-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  border: 1px solid rgba(27,31,41,0.06);
}
.price-card--featured {
  background: var(--holi-plum-700);
  color: var(--holi-on-dark);
  border: none;
}
.price-card__badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--holi-sand-300);
  color: var(--holi-ink);
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.price-card__kicker {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.75;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-card__price-num {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card__price-sub {
  font-size: 14px;
  opacity: 0.78;
}
.price-card__extra {
  font-size: 13px;
  opacity: 0.7;
  margin-top: -8px;
}
.price-card__body {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.92;
  margin: 4px 0 8px;
}
.price-card__body strong { font-weight: 500; }

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  background: var(--bg);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-7);
}
@media (max-width: 768px) {
  .faq__grid { grid-template-columns: 1fr; gap: var(--space-3); }
}
.faq__head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  margin-bottom: var(--space-3);
}
.faq__sub {
  font-size: 15px;
  color: var(--fg-muted);
}
.faq__list { }
.faq-item {
  border-bottom: 1px solid var(--holi-ink-20);
  padding: 18px 0;
  cursor: pointer;
  transition: background 200ms ease;
}
.faq-item--first {
  background: var(--holi-cream);
  margin: 0 -20px 8px;
  padding: 20px;
  border-radius: var(--radius-md);
  border-bottom: none;
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.faq-item__icon {
  width: 20px; height: 20px;
  display: flex;
  align-items: center; justify-content: center;
  color: var(--fg-muted);
  flex-shrink: 0;
  transition: transform 250ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq-item--open .faq-item__icon { transform: rotate(45deg); color: var(--holi-plum-700); }
.faq-item__a {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg);
  margin-top: 12px;
  max-width: 70ch;
}
.faq-item__a strong { font-weight: 500; color: var(--fg); }

/* =====================================================
   Reviews / Pacjenci — swipeable carousel
   ===================================================== */
.reviews {
  background: var(--holi-bone);
  padding: var(--space-8) 0;
}
.reviews__inner { display: flex; flex-direction: column; gap: var(--space-5); }
.reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
}
.reviews__eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--holi-plum-700);
  margin-bottom: 10px;
}
.reviews__title {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.reviews__title em {
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: 48px;
  color: var(--holi-plum-700);
}
.reviews__nav { display: flex; gap: 10px; flex: 0 0 auto; }
.reviews__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--holi-plum-700);
  background: transparent;
  color: var(--holi-plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}
.reviews__arrow:hover { background: var(--holi-plum-700); color: #fff; }
.reviews__arrow:disabled { opacity: 0.25; cursor: default; }
.reviews__arrow:disabled:hover { background: transparent; color: var(--holi-plum-700); }

.reviews__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 420px);
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 var(--space-2);
  margin: 0 -4px;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }

.rev-card {
  scroll-snap-align: start;
  background: var(--holi-sand-150);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}
.rev-card--accent {
  background: var(--holi-plum-700);
  color: #fff;
}
.rev-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.rev-card__name {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.rev-card__when {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 2px;
}
.rev-card__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.rev-card__stars { display: inline-flex; gap: 1px; }
.rev-card--accent .rev-card__when { opacity: 0.75; }
.rev-card__headline {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--holi-plum-900);
}
.rev-card--accent .rev-card__headline { color: #fff; }
.rev-card__body {
  font-family: var(--ff-body);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  white-space: pre-line;
  color: var(--fg-muted);
}
.rev-card__body strong { font-weight: 600; color: var(--holi-plum-900); }
.rev-card--accent .rev-card__body { color: rgba(255,255,255,0.85); }
.rev-card--accent .rev-card__body strong { color: #fff; }

.reviews__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(68,46,125,0.22);
  cursor: pointer;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}
.reviews__dot--on {
  width: 26px;
  border-radius: 999px;
  background: var(--holi-plum-700);
}

@media (max-width: 768px) {
  .reviews { padding: var(--space-6) 0; }
  .reviews__head { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .reviews__nav { display: none; }
  .reviews__title { font-size: 33px; }
  .reviews__title em { font-size: 36px; }
  .reviews__track {
    grid-auto-columns: 86%;
    gap: var(--space-3);
    padding-left: 0;
    padding-right: 0;
  }
}

/* =====================================================
   Final CTA + Footer
   ===================================================== */
.final {
  background: var(--holi-plum-700);
  color: var(--holi-on-dark);
}
.final__inner {
  padding: var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.final h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--holi-on-dark);
  max-width: 18ch;
}
.final h2 em {
  color: var(--holi-violet-200);
  font-family: var(--ff-accent);
}
.final p {
  font-size: 17px;
  opacity: 0.85;
  max-width: 60ch;
}
.final__ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}
.final .btn--ghost {
  color: var(--holi-on-dark);
  border-color: rgba(255,255,255,0.4);
}
.final .btn--white {
  background: #fff !important;
  color: #442E7D !important;
}
.final .btn--white:hover {
  background: #f7f3ff !important;
  color: #442E7D !important;
}
.final .btn--white:hover svg,
.final .btn--white:hover svg path { stroke: #442E7D !important; }
.final .btn--ghost:hover { background: rgba(255,255,255,0.08); }
.final__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  font-size: 14px;
  opacity: 0.85;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: var(--space-3);
}
.final__trust .sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

footer.site-footer {
  background: var(--holi-blue-700);
  color: var(--holi-on-dark);
}
.site-footer__inner {
  padding: var(--space-5) 0 var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.site-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.site-footer__col {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
}
.site-footer__col strong {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.site-footer__col a { opacity: 0.8; }
.site-footer__col a:hover { opacity: 1; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-2);
  font-size: 12px;
  opacity: 0.6;
}

/* =====================================================
   Sticky mobile CTA
   ===================================================== */
.sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    background: var(--holi-plum-700);
    color: var(--holi-on-dark);
    border-radius: 16px;
    padding: 12px 12px 12px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(68,46,125,0.4);
    z-index: 40;
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 320ms ease;
  }
  .sticky-cta--show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .sticky-cta--alt { background: #7E5CD7 !important; }
  .sticky-cta__main {
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 15px;
  }
  .sticky-cta__small {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
    font-weight: 400;
  }
  .sticky-cta__go {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sticky-cta__go svg,
  .sticky-cta__go svg path { stroke: var(--holi-plum-700) !important; }
  body { padding-bottom: 0 !important; } /* dark footer fills behind sticky cta */
  .site-footer { padding-bottom: 48px !important; }
}

/* =====================================================
   Mobile fixes (≤720px) — override inline fixed sizes
   ===================================================== */
@media (max-width: 768px) {
  /* Kill any horizontal overflow from inline fixed widths */
  html, body { overflow-x: hidden !important; }
  .container { overflow-x: clip; }

  /* Nav CTA removed on mobile — sticky CTA handles conversion */
  .nav__cta-group { display: none !important; }
  .nav__inner { justify-content: flex-start !important; }
  .nav__reassure { display: none !important; }

  /* ---- Type scale: DM Sans titles 33px, Sfizia accents 36px ---- */
  .reframe h2, .pillars h2, .pillars__intro h2, .doctors h2,
  .results h2, .steps h2, .pricing h2, .faq__head h2, .final h2,
  .kamila h2, .results__why h3 {
    font-size: 33px !important;
    width: auto !important;
    line-height: 1.12 !important;
  }
  .reframe h2 em, .pillars__intro h2 em, .doctors h2 em,
  .results h2 em, .results h2 span:not(.__om-t), .steps h2 em, .pricing h2 em,
  .faq__head h2 em, .final h2 em, .final h2 span:not(.__om-t),
  .kamila h2 em, .results__why h3 em, .pillars__intro-accent {
    font-size: 36px !important;
    white-space: normal !important;
  }
  .pricing h2 em { display: block !important; }
  .reframe p, .pillar__body, .doctors__head-body, .results__intro-p,
  .step__body, .pricing__intro, .faq-item__a, .final p,
  .kamila__lead, .pillars__cta-card p, .hero__sub {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
  .doctor__info {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }
  .hero-trust__label {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  /* ---- Hero ---- */
  .hero .hero__grid { height: auto !important; }
  .hero .hero__copy { height: auto !important; gap: 18px !important; }
  /* Reorder on mobile: copy → trust band → image */
  .hero { display: flex !important; flex-direction: column !important; gap: var(--space-4) !important; }
  .hero > .hero__grid { display: contents !important; }
  .hero__copy { order: 1 !important; padding: 0 var(--space-3) !important; }
  .hero > .container:not(.hero__grid) { order: 2 !important; }
  .hero-trust { margin-top: 0 !important; }
  .hero__media { order: 3 !important; margin: 0 var(--space-3) !important; }
  .hero h1 { font-size: 32px !important; letter-spacing: -0.01em !important; line-height: 1.12 !important; text-wrap: balance !important; }
  .hero h1 > span { font-size: 32px !important; }
  .hero h1 > em { font-size: 32px !important; display: inline !important; }
  .hero__sub { width: auto !important; max-width: 100% !important; font-size: 15px !important; }
  .hero__media { height: auto !important; aspect-ratio: 4/5 !important; max-height: 520px !important; }
  .hero__media img { height: 100% !important; }

  /* ---- Hero trust band: keep items side-by-side on mobile ---- */
  .hero-trust {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: var(--space-3) var(--space-2) !important;
  }
  .hero-trust__item {
    flex: 1 1 0 !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: flex-start !important;
    padding: 0 6px !important;
    gap: 4px !important;
  }
  .hero-trust__stat,
  .hero-trust__stat--icon {
    font-size: 21px !important;
    height: 26px !important;
    min-height: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }
  .hero-trust__stat-sub { font-size: 12px !important; }
  .hero-trust__stat--icon svg { width: 22px !important; height: 22px !important; }
  .hero-trust__label {
    font-size: 11px !important;
    line-height: 1.3 !important;
    width: auto !important;
    max-width: 100% !important;
  }
  .hero-trust__divider {
    display: block !important;
    width: 1px !important;
    height: auto !important;
    align-self: stretch !important;
    margin: var(--space-1) 0 !important;
    background: rgba(68,46,125,0.20) !important;
  }

  /* ---- Pillars CTA card: center text on mobile ---- */
  .pillars__cta-card { text-align: center !important; align-items: center !important; }
  .pillars__intro-accent { display: block !important; }
  /* ---- Compact pillar cards on mobile ---- */
  .pillars__list { gap: var(--space-3) !important; }
  .pillar__title { font-size: 19px !important; width: auto !important; }
  .pillar__number { font-size: 30px !important; }
  .pillar__text { padding: var(--space-3) !important; gap: 6px !important; }
  .pillar__eyebrow { gap: 10px !important; }
  .pillar__media {
    height: 168px !important;
    aspect-ratio: auto !important;
    max-height: 168px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .pillar__icon-chip { left: 12px !important; bottom: 12px !important; }
  .pillar__media img { height: 100% !important; width: 100% !important; object-fit: cover; }
  .pillar__body { font-size: 14px !important; line-height: 1.5 !important; }
  .pillar > div[style] { width: auto !important; justify-self: stretch !important; }

  /* ---- Doctors ---- */
  .doctors h2 > span { font-size: 33px !important; }
  .doctors h2 > em { font-size: 36px !important; }
  .doctors__head-body { width: auto !important; max-width: 100% !important; }
  .doctor { width: auto !important; height: auto !important; }
  /* ---- Doctors: auto-scrolling marquee, one row off the right edge ---- */
  .doctors__strip {
    display: block !important;
    grid-template-columns: none !important;
    overflow: hidden !important;
    margin-left: calc(-1 * var(--space-3)) !important;
    margin-right: calc(-1 * var(--space-3)) !important;
  }
  .doctors__track {
    display: flex !important;
    width: max-content !important;
    gap: 14px !important;
    padding-left: var(--space-3) !important;
    animation: doctors-marquee 38s linear infinite;
  }
  .doctors__track .doctor {
    flex: 0 0 200px !important;
    width: 200px !important;
  }
  .doctors__strip .doctor--dup { display: flex !important; }
  .doctors__track .doctor__photo { aspect-ratio: 5/6 !important; }
  @keyframes doctors-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ---- Results: stack, no fixed heights, no overlap ---- */
  .results__top { display: block !important; height: auto !important; margin-bottom: var(--space-5) !important; }
  .results__top > div:last-child { height: auto !important; width: 100% !important; max-width: 100% !important; margin-top: var(--space-4) !important; overflow: hidden !important; }
  .results__chart { padding: 16px !important; max-width: 100% !important; overflow: hidden !important; }
  .results__chart svg { width: 100% !important; height: auto !important; display: block !important; }
  .results__legend { flex-wrap: wrap !important; font-size: 12px !important; gap: 8px 16px !important; margin: 14px 0 0 !important; }
  .results__quote { font-size: 21px !important; }
  .results__quotebox { margin-bottom: 48px !important; }
  .results__why h3 { font-size: 33px !important; }
  .results__why h3 em { font-size: 36px !important; display: block !important; }

  /* ---- Steps: 14-dni box stacks cleanly, centered ---- */
  .steps__arrow { display: flex !important; transform: rotate(90deg); }
  .steps__cta { align-items: center !important; text-align: center !important; }
  .steps__highlight { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 12px !important; width: 100% !important; }
  .steps__big { justify-content: center !important; }
  .steps__big-num { font-size: 52px !important; }
  .steps__big-cap { border-left: 0 !important; padding-left: 0 !important; max-width: 100% !important; text-align: center !important; }
  .steps__big-cap-sub { max-width: 100% !important; }

  /* ---- FAQ: wrap text, no overflow, left-aligned ---- */
  .faq__grid { grid-template-columns: 1fr !important; gap: var(--space-7) !important; }
  .faq__head h2 { margin-bottom: var(--space-3) !important; }
  .faq__sub { width: auto !important; max-width: 100% !important; }
  /* identical horizontal inset for open & closed so questions + icons align */
  .faq-item { padding: 18px 16px !important; }
  .faq-item--first { margin-left: 0 !important; margin-right: 0 !important; padding: 18px 16px !important; text-align: left !important; }
  .faq-item__q { font-size: 16px !important; gap: 12px !important; }
  .faq-item__q > span:first-child { min-width: 0 !important; overflow-wrap: anywhere; }
  .faq-item__a { max-width: 100% !important; font-size: 15px !important; }
  /* hide the divider line directly above an opened answer */
  .faq-item:has(+ .faq-item--open) { border-bottom-color: transparent !important; }

  /* ---- Kamila ---- */
  .kamila h2 { font-size: 33px !important; }
  .kamila h2 em { font-size: 36px !important; }
  .kamila__media { height: 300px !important; aspect-ratio: auto !important; }

  /* ---- Final ---- */
  .final h2 { white-space: normal !important; }
  .final h2 em { white-space: normal !important; display: inline !important; }
  .final p { max-width: 100% !important; }
  .final__ctas { justify-content: center !important; }
  .final__trust {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
  }
  .final__trust > span { padding: 10px 0 !important; }
  .final__trust .sep {
    width: 3px !important;
    height: 3px !important;
    border-radius: 50% !important;
    align-self: center !important;
    margin: 0 !important;
    background: rgba(255,255,255,0.4) !important;
  }
}
