/* =====================================================
   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); }

.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__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__ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: 8px;
}

/* === Hero trust band === */
.hero-trust {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: var(--space-3);
  background: #E8DFCD;
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  margin-top: var(--space-2);
  margin-bottom: var(--space-5);
}
@media (max-width: 860px) {
  .hero-trust {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--space-3);
  }
}
@media (max-width: 460px) {
  .hero-trust { grid-template-columns: 1fr auto 1fr auto 1fr; }
}
.hero-trust__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.hero-trust__stat {
  font-family: var(--ff-display);
  font-size: 40px;
  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: 20px;
  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: 30px; height: 30px; }
.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: 13px;
  line-height: 1.4;
  color: var(--fg-muted);
  max-width: 24ch;
  text-wrap: balance;
}
.hero-trust__divider {
  width: 1px;
  height: 38px;
  background: rgba(68,46,125,0.20);
  justify-self: center;
}

/* Desktop: tuck the trust band up under the CTA, beside the hero image */
@media (min-width: 1161px) {
  .hero-trust {
    width: 55%;
    margin-top: -24px;
    margin-bottom: 0;
    padding: var(--space-2) var(--space-4);
    gap: var(--space-2);
  }
  .hero-trust__stat { font-size: 21px !important; }
  .hero-trust__stat-sub { font-size: 13px; }
  .hero-trust__label { font-size: 11.5px !important; max-width: 22ch; width: auto !important; }
  .hero-trust__divider { height: 30px; }
}

.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__points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}
.reframe__points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--fg);
}
.reframe__points li strong { font-weight: 600; color: var(--holi-ink); }
.reframe__points-ic {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  margin-top: 1px;
  border-radius: var(--radius-pill);
  background: #e3f3e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reframe__points-ic svg,
.reframe__points-ic svg path { stroke: #1f8a5b !important; }
.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;
}

/* =====================================================
   Compare: stacjonarnie vs online
   ===================================================== */
.compare {
  background: var(--bg);
}
.compare__head {
  max-width: 760px;
  margin-bottom: var(--space-6);
}
.compare h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 400;
  margin-bottom: var(--space-3);
}
.compare h2 em {
  font-family: var(--ff-accent);
  font-style: italic;
  color: var(--holi-plum-700);
}
.compare__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  max-width: 60ch;
  margin: 0;
}
.compare__panel {
  border: 1px solid rgba(27,31,41,0.10);
  border-radius: var(--radius-lg);
  background: var(--holi-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.25fr;
  align-items: stretch;
}
.compare__row + .compare__row { border-top: 1px solid rgba(27,31,41,0.08); }
.compare__row--head { border-bottom: 1px solid rgba(27,31,41,0.10); }
.compare__col-head {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--holi-sand-700);
  padding: 18px 22px;
  display: flex;
  align-items: center;
}
.compare__col-head--holi {
  background: var(--holi-plum-700);
  color: var(--holi-on-dark);
}
.compare__feat {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--holi-ink);
  letter-spacing: -0.005em;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  background: var(--holi-bone);
}
.compare__cell {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 22px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--fg);
}
.compare__cell--holi {
  background: color-mix(in oklab, var(--holi-plum-700) 8%, white);
  color: var(--holi-ink);
  font-weight: 500;
}
.compare__cell-tag { display: none; }
.compare__short { display: none; }
.compare__ic { flex: 0 0 auto; margin-top: 1px; }
.compare__ic--yes { color: var(--holi-plum-700); }
.compare__ic--no { color: #b9b1a3; }
.compare__cell-text { flex: 1 1 auto; }
.compare__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}

@media (max-width: 768px) {
  .compare__full { display: none; }
  .compare__short { display: inline; }

  .compare__panel {
    border: 1px solid rgba(27,31,41,0.10);
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
  }
  .compare__row--head,
  .compare__row {
    display: grid;
    grid-template-columns: 76px 1fr 1fr;
    border-radius: 0;
    background: transparent;
  }
  .compare__row--head { border-bottom: 1px solid rgba(27,31,41,0.10); }
  .compare__row + .compare__row { border-top: 1px solid rgba(27,31,41,0.08); }

  .compare__col-head {
    font-size: 11px;
    padding: 9px 8px;
    text-align: center;
    justify-content: center;
  }
  .compare__feat {
    background: var(--holi-bone);
    font-size: 11px;
    padding: 8px 8px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(27,31,41,0.08);
    color: var(--holi-ink);
    line-height: 1.3;
  }
  .compare__row--head .compare__feat {
    background: var(--holi-bone);
  }
  .compare__cell {
    padding: 9px 8px;
    font-size: 12px;
    gap: 5px;
  }
  .compare__cell + .compare__cell {
    border-top: none;
    border-left: 1px solid rgba(27,31,41,0.06);
  }
  .compare__cell-tag { display: none; }
  .compare__ic { width: 14px; height: 14px; flex-shrink: 0; }
  .compare__row--hide-mobile { display: none; }
}

/* =====================================================
   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: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.pillar {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: var(--space-8);
  align-items: center;
  min-height: 360px;
}
.pillar--reverse { grid-template-columns: 1fr 0.95fr; gap: var(--space-8); }
.pillar--reverse .pillar__media { order: 2; justify-self: end; }
@media (max-width: 1160px) {
  .pillar, .pillar--reverse { grid-template-columns: 1fr; gap: var(--space-4); }
  .pillar--reverse .pillar__media { order: 0; }
  .pillar > div { width: auto !important; justify-self: stretch !important; }
}
@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__grid > div:first-child .reframe__points { order: 4 !important; align-self: flex-start !important; max-width: 100% !important; width: 100% !important; margin-top: 4px !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: block;
}
@media (max-width: 768px) {
  .doctors__head-meta--v2 { grid-template-columns: 1fr; gap: var(--space-3); }
}
.doctors__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.doctors__feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 12px;
  background: var(--holi-white);
  border: 1px solid var(--holi-ink-10, rgba(28,31,41,0.08));
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.doctors__feat-ic {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: var(--radius-pill);
  background: var(--holi-violet-050);
  color: var(--holi-plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.doctors__feat-ic svg,
.doctors__feat-ic svg path { stroke: var(--holi-plum-700) !important; }
.doctors__feat-label {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--holi-ink, #1c1f29);
  line-height: 1.15;
}
@media (max-width: 768px) {
  .doctors__feats { gap: 10px; }
  .doctors__feat { flex: 1 1 100%; }
}
.doctors__head-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
  max-width: 56ch;
  margin: 0;
}
.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: repeat(3, 1fr);
  gap: var(--space-4);
  align-items: stretch;
  margin-bottom: var(--space-5);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .steps__grid { grid-template-columns: 1fr; gap: 52px; }
}
.step {
  position: relative;
  background: var(--holi-bone);
  border-radius: var(--radius-lg);
  padding: calc(var(--space-4) + 14px) var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.step__num {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 60px;
  border-radius: var(--radius-pill);
  background: var(--holi-bone);
  color: var(--holi-plum-700);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
}
.step__title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--holi-plum-700);
  max-width: 30ch;
  text-wrap: balance;
}
.step__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 38ch;
  text-wrap: pretty;
}
.step__body strong { font-weight: 500; color: var(--fg); }

.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;
}
.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; }
}

/* Modern plan cards */
.plan {
  background: var(--holi-white);
  border: 1px solid rgba(27,31,41,0.10);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.plan--featured {
  border-color: var(--holi-plum-700);
  box-shadow: 0 0 0 1px var(--holi-plum-700), 0 18px 40px -22px rgba(68,46,125,0.5);
}
.plan__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
}
.plan__name {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--holi-ink);
}
.plan__tag {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--holi-plum-700);
  background: var(--holi-violet-050);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.plan__num {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--holi-ink);
}
.plan--featured .plan__num { color: var(--holi-plum-700); }
.plan__per { font-size: 16px; color: var(--fg-muted); }
.plan__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: -6px;
}
.plan__save {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 13px;
  color: #1f8a5b;
  background: #e3f3e8;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.plan__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg);
  margin: 0;
  flex: 1;
}
.plan__cta {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.plan .btn--ghost {
  border: 1px solid rgba(27,31,41,0.18);
  color: var(--holi-ink);
}

/* Included-in-every-plan chips */
.plan-includes {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}
.plan-includes__label {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}
.plan-includes__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.plan-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--holi-ink);
  background: var(--holi-white);
  border: 1px solid rgba(27,31,41,0.10);
  border-radius: var(--radius-pill);
  padding: 8px 14px 8px 11px;
}
.plan-chip svg,
.plan-chip svg path { stroke: #1f8a5b !important; }

/* Single shared CTA under the cards */
.pricing__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}
.pricing__cta .btn { font-size: 16px; }

@media (max-width: 768px) {
  .plan { padding: var(--space-4); }
  .plan__num { font-size: 48px; }
  .plan-includes { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =====================================================
   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 (opinie pacjentów — Google reviews carousel)
   ===================================================== */
.reviews {
  background: var(--bg-warm);
  padding: var(--space-8) 0;
  overflow: hidden;
}
.reviews__inner { }
.reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.reviews__eyebrow {
  display: block;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--holi-plum-700);
  margin-bottom: 12px;
}
.reviews__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
.reviews__title em {
  font-family: var(--ff-accent);
  font-style: italic;
  color: var(--holi-plum-700);
}
.reviews__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.reviews__arrow {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--holi-ink-20);
  background: #fff;
  color: var(--holi-plum-700);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}
.reviews__arrow:hover { background: var(--holi-violet-050); border-color: var(--holi-violet-200); }
.reviews__arrow:disabled { opacity: 0.35; cursor: default; }
.reviews__arrow:disabled:hover { background: #fff; border-color: var(--holi-ink-20); }

.reviews__track {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0 8px;
  margin: 0 -4px;
}
.reviews__track::-webkit-scrollbar { display: none; }

.rev-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(320px, 40%, 460px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--holi-ink-20);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.rev-card--accent {
  background: var(--holi-plum-700);
  border-color: var(--holi-plum-700);
}
.rev-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: var(--space-3);
}
.rev-card__meta { min-width: 0; }
.rev-card__name {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--holi-ink);
}
.rev-card__when {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.rev-card--accent .rev-card__name { color: #fff; }
.rev-card--accent .rev-card__when { color: var(--holi-violet-100); }
.rev-card__badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.rev-card__stars { display: inline-flex; gap: 2px; }
.rev-card__content { display: flex; flex-direction: column; gap: 12px; }
.rev-card__headline {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--holi-ink);
  margin: 0;
}
.rev-card--accent .rev-card__headline { color: #fff; }
.rev-card__body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fg);
  margin: 0;
  white-space: pre-line;
}
.rev-card__body strong { font-weight: 600; color: var(--holi-ink); }
.rev-card--accent .rev-card__body { color: var(--holi-violet-050); }
.rev-card--accent .rev-card__body strong { color: #fff; }

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-4);
}
.reviews__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--holi-ink-20);
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, width 180ms ease;
}
.reviews__dot--on {
  width: 26px;
  border-radius: var(--radius-pill);
  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-2); margin-bottom: var(--space-4); }
  .reviews__title { font-size: 33px !important; }
  .reviews__title em { font-size: 36px; }
  .rev-card { flex: 0 0 84%; padding: var(--space-3); }
  .rev-card__headline { font-size: 17px; }
}

/* =====================================================
   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; }
  .profile__head-desc { display: none !important; }
  .cta-hint { display: none !important; }
  .container { overflow-x: clip; }

  /* Nav CTA → price-only label, no arrow; logo left, button right */
  .nav .btn--with-price { display: none !important; }
  .nav-cta-full, .btn--with-price .btn__price { display: none !important; }
  .nav .btn--with-price svg { display: none !important; }
  .nav-cta-mobile { display: inline !important; font-size: 13px; font-weight: 500; }
  .nav__inner { justify-content: space-between !important; }
  /* Comfortable touch target for the header CTA */
  .nav .btn--with-price { min-height: 44px !important; padding-top: 0 !important; padding-bottom: 0 !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; }
  .hero h1 { font-size: 33px !important; letter-spacing: -0.01em !important; }
  .hero h1 > span { font-size: 33px !important; }
  .hero h1 > em { font-size: 36px !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 3 items side-by-side, vertical dividers ---- */
  .hero-trust {
    grid-template-columns: 1fr auto 1fr auto 1fr !important;
    justify-items: center !important;
    align-items: start !important;
    text-align: center !important;
    gap: 0 !important;
    padding: var(--space-3) var(--space-2) !important;
  }
  .hero-trust__item {
    align-items: center !important;
    padding: 0 4px !important;
    min-width: 0 !important;
    width: 100% !important;
  }
  .hero-trust__stat { font-size: 22px !important; }
  .hero-trust__label { max-width: 100% !important; font-size: 11px !important; line-height: 1.3 !important; }
  .hero-trust__divider {
    display: block !important;
    justify-self: center !important;
    width: 1px !important;
    height: 40px !important;
    margin: 0 !important;
    background: rgba(68,46,125,0.20) !important;
  }

  /* ---- Reframe: hide illustration on mobile ---- */
  .reframe__render { display: none !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; }
  .pillar__title { font-size: 22px !important; width: auto !important; }
  .pillar__number { font-size: 40px !important; }
  .pillar__media {
    height: 300px !important;
    aspect-ratio: auto !important;
    max-height: 300px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .pillar__media img { height: 100% !important; width: 100% !important; object-fit: cover; }
  .pillar__body { font-size: 15px !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__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;
  }
}

/* =====================================================
   Rada medyczna (medical board — credibility)
   ===================================================== */
.rada {
  background: var(--holi-cream);
}
.rada__head {
  max-width: 760px;
}
.rada__head h2 {
  font-size: 49px;
  font-weight: 400;
  line-height: 1.1;
  margin: 12px 0 0;
}
.rada__head p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 62ch;
}
.rada__grid {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 860px) {
  .rada__grid { grid-template-columns: 1fr; gap: var(--space-4); }
}
.rada-member {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rada-member__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--holi-sand-150),
      var(--holi-sand-150) 9px,
      var(--holi-sand-100) 9px,
      var(--holi-sand-100) 18px
    );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
}
.rada-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: inherit;
}
.rada-member__photo--ph { padding: 14px; }
.rada-member__photo:has(img) { padding: 0; }
.rada-member__photo span {
  font-family: var(--ff-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--holi-sand-700);
  background: rgba(255,255,255,0.7);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
}
.rada-member__name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--holi-ink);
}
.rada-member__title {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin-top: -8px;
}
.rada-member__role {
  font-size: 13px;
  line-height: 1.55;
  color: var(--holi-ink);
}
.rada-member__role .plum {
  color: var(--holi-plum-700);
  font-weight: 500;
}
.rada__foot {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
}
.rada__foot span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--holi-ink);
}

/* =====================================================
   Charakterystyka pacjenta (who is this clinic for)
   ===================================================== */
.profile {
  background: var(--holi-bone);
}
.profile__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-6);
  align-items: start;
}
@media (max-width: 860px) {
  .profile__inner { grid-template-columns: 1fr; gap: var(--space-4); }
}
.profile__head h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.12;
  margin: 12px 0 0;
}
.profile__head p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 42ch;
}
.profile__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (max-width: 560px) {
  .profile__list { grid-template-columns: 1fr; }
}
.profile-item {
  background: var(--holi-white);
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-item__ic {
  width: 36px; height: 36px;
  border-radius: var(--radius-pill);
  background: var(--holi-violet-050);
  color: var(--holi-plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.profile-item__lead {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--holi-ink);
}
.profile-item__body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted);
}
.profile__note {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.profile__note strong { color: var(--holi-ink); font-weight: 500; }

/* =====================================================
   CTA groups — button + "2 min" hint
   ===================================================== */
.cta-group {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.cta-group--full {
  display: flex;
  width: 100%;
  align-items: center;
}
.cta-hint {
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--fg-muted);
}
.cta-hint--light { color: rgba(255,255,255,0.82); }
