/* Protocolo Retratutida — landing page styles (Pep Master DS) */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--grad-page-wash);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

/* ---------- layout ---------- */
.lp {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px 120px;
}
.section { padding: 56px 0; }
.section + .section { border-top: 1px solid var(--border-subtle); }

.eyebrow {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  font-weight: var(--fw-semibold);
  color: var(--lilac-700);
  margin: 0 0 16px;
}
.headline {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: clamp(2.1rem, 8vw, 2.9rem);
  line-height: var(--lh-tight);
  color: var(--text-strong);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.subhead {
  font-size: var(--fs-lead);
  font-weight: var(--fw-regular);
  line-height: var(--lh-snug);
  color: var(--text-body);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.subhead strong { font-weight: var(--fw-bold); color: var(--lilac-800); }
.note {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-normal);
}
.subhead-tag {
  margin: -16px 0 24px;
  text-align: right;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: var(--lilac-800);
}

/* ---------- hero ---------- */
.brandbar {
  display: flex;
  justify-content: center;
  padding: 22px 0 4px;
}
.brandbar img { height: 92px; width: auto; }

.benefits {
  display: grid;
  gap: 10px;
  margin: 4px 0 26px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(142,104,177,0.06);
}
.benefit .chip {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-rose-lilac);
  color: #fff;
  flex-shrink: 0;
}
.benefit .chip svg { width: 20px; height: 20px; }
.benefit span { font-weight: var(--fw-medium); color: var(--text-strong); font-size: 1.02rem; }

/* hero pillars — o que resolve / como resolve / em quanto tempo */
.pillars { display: grid; gap: 12px; margin: 4px 0 26px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 6px 18px rgba(142,104,177,0.07);
}
.pillar .chip {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--grad-rose-lilac);
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.4);
}
.pillar .chip svg { width: 21px; height: 21px; }
.pillar__text { display: flex; flex-direction: column; gap: 4px; }
.pillar__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: var(--fw-bold);
  color: var(--lilac-700);
}
.pillar__text p {
  margin: 0;
  font-size: 0.98rem;
  line-height: var(--lh-snug);
  color: var(--text-strong);
  font-weight: var(--fw-medium);
  text-wrap: pretty;
}

.lead-card {
  background: var(--surface-tint-lilac);
  border: 1px solid var(--lilac-200);
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 1.02rem;
  line-height: var(--lh-normal);
  color: var(--lilac-900);
  text-wrap: pretty;
  margin-bottom: 30px;
}

/* ---------- brand logo overlay on all photos ---------- */
.team { position: relative; }
.team__photo { position: relative; overflow: hidden; }
.hero-photo::before,
.expert-card__photo::before,
.team__photo::before {
  content: "";
  position: absolute;
  top: 16px; left: 16px;
  width: 74px; height: 74px;
  background: url('assets/logo-symbol-transparent.png') center/contain no-repeat;
  filter: drop-shadow(0 3px 8px rgba(75,69,75,0.28));
  opacity: 0.45;
  z-index: 3;
  pointer-events: none;
}

/* ---------- hero photo ---------- */
.hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin: 8px 0 26px;
  box-shadow: 0 26px 54px -22px rgba(142,104,177,0.55);
  border: 1px solid var(--border-subtle);
}
.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform .7s cubic-bezier(0.4,0,0.2,1);
}
/* moving frame on hover — shared across photos */
.hero-photo::after,
.expert-card__photo::after,
.team__photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: inset .5s cubic-bezier(0.4,0,0.2,1), opacity .4s ease, border-color .4s ease;
}
.hero-photo img,
.expert-card__photo img,
.team__photo img {
  transition: transform .7s cubic-bezier(0.4,0,0.2,1);
}
.hero-photo:hover img,
.expert-card__photo:hover img,
.team__photo:hover img { transform: scale(1.05); }
.hero-photo:hover::after,
.expert-card__photo:hover::after,
.team__photo:hover::after { inset: 22px; opacity: 1; border-color: rgba(255,255,255,0.95); }
.hero-photo__badge {
  position: absolute;
  left: 14px; bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 9px 15px; border-radius: 999px;
  font-size: 0.8rem; font-weight: var(--fw-semibold);
  color: var(--lilac-800);
  box-shadow: 0 6px 16px rgba(142,104,177,0.2);
}
.hero-photo__badge svg { width: 16px; height: 16px; color: var(--rose-600); }

/* ---------- product mockup ---------- */
.mockup-wrap {
  display: grid;
  place-items: center;
  padding: 8px 0 22px;
}
.mockup {
  position: relative;
  width: 230px;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  background: var(--grad-rose-lilac-deep);
  box-shadow: 0 30px 60px -22px rgba(142,104,177,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
  transform: rotate(-2deg);
}
.mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(255,255,255,0.35), transparent 60%);
  pointer-events: none;
}
.mockup__sym {
  position: absolute;
  right: -34px; bottom: -30px;
  width: 180px; opacity: 0.22;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
}
.mockup__eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: var(--fw-semibold);
  opacity: 0.9;
}
.mockup__title {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 2rem;
  line-height: 1.0;
  margin-top: auto;
}
.mockup__sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.92;
}
.mockup__rule { height: 1px; background: rgba(255,255,255,0.4); margin: 14px 0 0; }

/* ---------- price ---------- */
.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 6px 0 18px;
}
.price__old {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--rose-400);
}
.price__now {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 3.4rem;
  line-height: 1;
  background: var(--grad-rose-lilac-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price__now small { font-size: 1.4rem; font-weight: var(--fw-bold); }

.cta-block { display: grid; gap: 12px; }
.cta-sub {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
}

/* ---------- receptors ---------- */
.receptors { display: grid; gap: 12px; margin: 8px 0 26px; }
.receptor {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(142,104,177,0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.receptor .dot {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: var(--fw-bold);
  font-size: 0.72rem; letter-spacing: 0.04em;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.45), 0 6px 14px rgba(142,104,177,0.25);
}
.receptor .dot.r1 { background: var(--grad-rose-lilac); }
.receptor .dot.r2 { background: linear-gradient(135deg,#B99AD8,#8E68B1); }
.receptor .dot.r3 { background: linear-gradient(135deg,#EFA3C4,#C96596); }
.receptor h3 { margin: 0 0 4px; font-size: 1.1rem; color: var(--text-strong); font-weight: var(--fw-bold); }
.receptor p { margin: 0; font-size: 0.95rem; color: var(--text-body); line-height: var(--lh-normal); }

.highlight {
  background: var(--grad-rose-lilac-deep);
  border-radius: 22px;
  padding: 30px 26px;
  text-align: center;
  color: #fff;
  margin: 4px 0 26px;
  box-shadow: 0 22px 44px -18px rgba(142,104,177,0.55);
}
.highlight p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  font-size: 1.7rem;
  line-height: var(--lh-snug);
  text-wrap: balance;
}

/* ---------- comparison ---------- */
.compare {
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface-card);
  box-shadow: 0 4px 16px rgba(142,104,177,0.06);
  margin-bottom: 18px;
}
.compare__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare__head > div {
  padding: 14px 16px;
  text-align: center;
  font-weight: var(--fw-bold);
  font-size: 0.95rem;
}
.compare__head .a { background: var(--grad-rose-lilac); color: #fff; }
.compare__head .b { background: var(--surface-sunken); color: var(--text-body); }
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-subtle);
}
.compare__row > div {
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: var(--lh-snug);
  display: flex; align-items: center; gap: 8px;
}
.compare__row > div:first-child { border-right: 1px solid var(--border-subtle); color: var(--text-strong); font-weight: var(--fw-medium); }
.compare__row > div:last-child { color: var(--text-muted); }
.compare__row svg { width: 16px; height: 16px; flex-shrink: 0; }
.compare__row .ok { color: var(--rose-700); }
.compare__row .mid { color: var(--silver-400); }

.diff-line {
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
  color: var(--lilac-800);
  margin: 0 0 18px;
}

/* ---------- expert ---------- */
.expert-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px -20px rgba(142,104,177,0.4);
  margin: 8px 0 18px;
}
.expert-card__photo {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}
.expert-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 22%;
  display: block;
}
.expert-card__badge {
  position: absolute;
  left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: var(--fw-semibold);
  color: var(--lilac-800);
  box-shadow: 0 6px 16px rgba(142,104,177,0.2);
}
.expert-card__badge svg { width: 15px; height: 15px; color: var(--rose-600); }
.expert-card__body { padding: 22px 22px 24px; }
.expert-card__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.5rem; color: var(--text-strong);
  margin: 0 0 4px;
}
.expert-card__role {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: var(--fw-semibold); color: var(--lilac-700);
  margin: 0 0 14px;
}
.expert-card__text { margin: 0; font-size: 0.98rem; line-height: var(--lh-relaxed); color: var(--text-body); text-wrap: pretty; }

.team {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(142,104,177,0.06);
}
.team img { width: 100%; display: block; }
.team__cap {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
}
.team__cap .ico {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--surface-tint-lilac); color: var(--lilac-700);
}
.team__cap .ico svg { width: 20px; height: 20px; }
.team__cap b { display: block; color: var(--text-strong); font-size: 1.02rem; }
.team__cap span { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- social proof / reviews ---------- */
.stars { display: inline-flex; gap: 2px; color: #E6A700; }
.stars svg { width: 17px; height: 17px; fill: currentColor; stroke: currentColor; }

.rating-summary {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  background: var(--surface-tint-rose);
  border: 1px solid var(--rose-200);
  border-radius: 999px;
  padding: 12px 22px;
  margin: 4px 0 22px;
}
.rating-summary > div { display: flex; flex-direction: column; line-height: 1.25; }
.rating-summary b { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.15rem; color: var(--text-strong); }
.rating-summary span { font-size: 0.8rem; color: var(--text-muted); }

.reviews { display: grid; gap: 14px; }
.review {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(142,104,177,0.07);
}
.review__text {
  margin: 12px 0 16px;
  font-size: 1rem;
  line-height: var(--lh-normal);
  color: var(--text-body);
  text-wrap: pretty;
}
.review__foot { display: flex; align-items: center; gap: 11px; }
.review__av {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-rose-lilac);
  color: #fff; font-weight: var(--fw-bold); font-size: 1rem;
  flex-shrink: 0;
}
.review__id { display: flex; flex-direction: column; line-height: 1.2; margin-right: auto; }
.review__id b { color: var(--text-strong); font-size: 0.96rem; }
.review__id span { font-size: 0.82rem; color: var(--text-muted); }
.review__tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: var(--fw-semibold);
  color: var(--success);
}
.review__tag svg { width: 14px; height: 14px; }

/* ---------- proof screenshots carousel ---------- */
.proof {
  flex: 0 0 78%;
  max-width: 300px;
  scroll-snap-align: center;
  margin: 0;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(142,104,177,0.1);
}
.proof__img {
  position: relative;
  overflow: hidden;
  background: var(--surface-sunken);
}
.proof__img img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.4;
  object-fit: contain;
  object-position: 50% 50%;
  transition: transform .7s cubic-bezier(0.4,0,0.2,1);
}
.proof:hover .proof__img img { transform: scale(1.04); }
.proof__cap {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px 16px;
}
.proof__tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: var(--fw-bold); color: var(--success);
}
.proof__tag svg { width: 14px; height: 14px; }
.proof__cap b { font-size: 0.98rem; color: var(--text-strong); font-weight: var(--fw-semibold); }

/* ---------- deliverables carousel ---------- */
.carousel { margin: 8px 0 26px; }
.carousel__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 4px 10px;
  margin: 0 -4px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel .deliv {
  flex: 0 0 76%;
  max-width: 280px;
  scroll-snap-align: center;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(142,104,177,0.08);
}
.deliv__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.deliv__icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--surface-tint-rose);
  color: var(--rose-700);
  flex-shrink: 0;
}
.deliv__icon svg { width: 21px; height: 21px; }
.deliv__top h3 { margin: 0; font-size: 1.08rem; color: var(--text-strong); font-weight: var(--fw-bold); line-height: 1.2; }
.deliv ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.deliv li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.94rem; color: var(--text-body);
}
.deliv li svg { width: 16px; height: 16px; color: var(--lilac-600); flex-shrink: 0; }

.carousel__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin-top: 6px;
}
.carousel__btn {
  width: 42px; height: 42px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  color: var(--lilac-700);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(142,104,177,0.1);
  transition: transform .15s ease, background .15s ease;
}
.carousel__btn:hover { background: var(--surface-tint-lilac); transform: translateY(-1px); }
.carousel__btn:active { transform: scale(0.96); }
.carousel__btn svg { width: 20px; height: 20px; }
.carousel__hint {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: var(--fw-semibold); color: var(--text-muted);
}
.carousel__hint svg { width: 16px; height: 16px; color: var(--rose-500); }

.suppliers { display: flex; flex-wrap: wrap; gap: 8px; }
.deliv__note {
  margin: 0;
  font-size: 0.95rem;
  line-height: var(--lh-normal);
  color: var(--text-body);
  text-wrap: pretty;
}
.supplier {
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-sunken);
  border: 1px dashed var(--border-default);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

/* bonus */
.bonus {
  background: var(--grad-rose-lilac-deep);
  border-radius: 22px;
  padding: 28px 24px;
  color: #fff;
  box-shadow: 0 22px 44px -18px rgba(142,104,177,0.55);
  position: relative;
  overflow: hidden;
}
.bonus__tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: var(--fw-bold);
  background: rgba(255,255,255,0.2);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.bonus h3 { display:none; }
.bonus ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.bonus li { display: flex; align-items: center; gap: 11px; font-size: 1.02rem; font-weight: var(--fw-medium); }
.bonus li svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ---------- value stack ---------- */
.stack {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 12px 20px;
  box-shadow: 0 4px 16px rgba(142,104,177,0.06);
  margin-bottom: 22px;
}
.stack li {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 0;
  font-size: 0.98rem; color: var(--text-strong); font-weight: var(--fw-medium);
}
.stack ul { margin: 0; padding: 0; list-style: none; }
.stack li + li { border-top: 1px solid var(--border-subtle); }
.stack li svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

.value-ladder { text-align: center; margin-bottom: 8px; display: grid; gap: 6px; }
.value-ladder .vl { font-size: 1.05rem; color: var(--text-muted); }
.value-ladder .vl s { text-decoration-color: var(--rose-400); }
.value-ladder .vl strong { color: var(--text-body); }

/* ---------- guarantee ---------- */
.guarantee {
  text-align: center;
  background: var(--surface-tint-rose);
  border: 1px solid var(--rose-200);
  border-radius: 22px;
  padding: 32px 26px;
  margin: 8px 0 30px;
}
.seal {
  width: 124px; height: 124px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  color: #fff;
  background: var(--grad-rose-lilac-deep);
  box-shadow: 0 18px 36px -14px rgba(201,101,150,0.6), inset 0 2px 4px rgba(255,255,255,0.4);
  border: 3px solid rgba(255,255,255,0.7);
}
.seal b { display: block; font-family: var(--font-display); font-weight: var(--fw-display); font-size: 2.6rem; line-height: 0.9; }
.seal span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: var(--fw-semibold); margin-top: 4px; }
.guarantee p { margin: 0; font-size: 1rem; line-height: var(--lh-normal); color: var(--text-body); text-wrap: pretty; }
.guarantee h3 { margin: 0 0 12px; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.5rem; color: var(--text-strong); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; margin: 8px 0 34px; }
.faq__item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(142,104,177,0.05);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: none; border: none; cursor: pointer;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 1.02rem; font-weight: var(--fw-semibold);
  color: var(--text-strong); text-align: left;
}
.faq__q svg { width: 20px; height: 20px; color: var(--lilac-600); transition: transform .25s ease; flex-shrink: 0; }
.faq__item.open .faq__q svg { transform: rotate(180deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq__a > div { padding: 0 20px 18px; font-size: 0.96rem; line-height: var(--lh-relaxed); color: var(--text-body); }
.faq__item.open .faq__a { max-height: 320px; }

.finalcta { text-align: center; }
.finalcta .headline { margin-bottom: 24px; }

/* ---------- fixed mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -8px 24px rgba(142,104,177,0.12);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 14px;
}
.mobile-cta__price { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.mobile-cta__price s { font-size: 0.72rem; color: var(--text-muted); }
.mobile-cta__price b {
  font-family: var(--font-display); font-weight: var(--fw-display); font-size: 1.5rem;
  background: var(--grad-rose-lilac-deep); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mobile-cta .pm-btn { flex: 1; }

@media (min-width: 600px) {
  .mobile-cta { display: none; }
  .lp { padding-bottom: 60px; }
}

/* ---------- footer ---------- */
.site-footer {
  text-align: center;
  padding: 36px 0 8px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 8px;
}
.site-footer__logo {
  width: 46px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
  opacity: 0.85;
}
.site-footer__url {
  margin: 0 0 4px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  color: var(--lilac-800);
}
.site-footer__rights {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* small helpers */
.center { text-align: center; }
.mt-s { margin-top: 18px; }
