
:root {
  --bg: #efefee;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-solid: #ffffff;
  --milk: #fbfaf8;
  --brown: #23201f;
  --muted: #746d69;
  --line: rgba(35, 32, 31, 0.07);
  --red: #d68782;
  --red-dark: #b96f69;
  --gold: #f0d089;
  --shadow: 0 24px 60px rgba(27, 24, 23, 0.06);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--brown);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.48), transparent 22%),
    radial-gradient(circle at 84% 10%, rgba(255,255,255,0.6), transparent 24%),
    linear-gradient(180deg, #eeeeee 0%, #f5f5f4 50%, #f0f0ef 100%);
}
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { position: relative; padding: 104px 0; background: transparent; }
.section::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35,32,31,.05), transparent);
}
.hero::before, .stats-section::before { display: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 239, 239, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(35, 32, 31, 0.05);
  transition: background .25s ease, box-shadow .25s ease;
}
.header.scrolled { background: rgba(248,248,247,.92); box-shadow: 0 12px 30px rgba(27,24,23,.04); }
.header__inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  line-height: 1;
  color: #b89d77;
}
.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}
.logo__text {
  display: inline-block;
  color: #b89d77;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 14px; font-weight: 700; }
.nav a { position: relative; transition: color .25s ease; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; border-radius: 999px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav a:hover { color: var(--brown); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 20px; border-radius: 999px; background: #1f1d1c; color: #fff; font-size: 14px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.header__cta:hover { transform: translateY(-2px); background: var(--gold); color: var(--brown); box-shadow: 0 16px 32px rgba(240,208,137,.34); }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.9); cursor: pointer; position: relative; }
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--brown); border-radius: 999px; transition: transform .25s ease, top .25s ease; }
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 27px; }
body.nav-open .burger span:first-child { top: 22px; transform: rotate(45deg); }
body.nav-open .burger span:last-child { top: 22px; transform: rotate(-45deg); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 700; line-height: .96; letter-spacing: -.045em; }
h1 { margin-bottom: 26px; max-width: 700px; font-size: clamp(48px, 6.4vw, 84px); }
h2 { margin-bottom: 22px; font-size: clamp(36px, 5vw, 66px); }
h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.18; letter-spacing: -.03em; }
.accent, .accent-card, .accent--strong, .accent-inline { color: var(--red); }
.accent-card { font-weight: 800; }
.eyebrow { margin: 0 0 14px; display: inline-flex; align-items: center; gap: 9px; color: #857d79; font-size: 13px; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .7; }

.hero { min-height: calc(100vh - 78px); display: flex; align-items: center; padding-top: 66px; padding-bottom: 86px; }
.hero-meta { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 24px; align-items: center; margin-bottom: 36px; color: var(--muted); }
.hero-meta__person, .hero-meta__item { display: flex; align-items: center; gap: 14px; }
.hero-meta__person img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; box-shadow: 0 12px 28px rgba(67,52,44,.08); }
.hero-meta__person strong, .hero-meta__item strong { display: block; color: var(--brown); font-size: 14px; font-weight: 800; }
.hero-meta__person span, .hero-meta__item span { display: block; margin-top: 3px; color: var(--muted); font-size: 14px; }
.hero-meta__item em { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; background: #1f1d1c; box-shadow: 0 10px 24px rgba(0,0,0,.1); font-style: normal; font-size: 20px; line-height: 1; }
.hero__panel { padding: 34px; border-radius: 42px; background: rgba(255,255,255,.68); border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(67,52,44,.07); backdrop-filter: blur(18px); }
.hero__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: center; }
.hero__text { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: 18px; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 26px; border-radius: 999px; font-weight: 800; font-size: 15px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--gold); color: var(--brown); box-shadow: 0 18px 34px rgba(240,208,137,.28); }
.btn--primary:hover { background: #ebc870; box-shadow: 0 22px 38px rgba(240,208,137,.34); }
.btn--secondary { border: 1px solid rgba(35,32,31,.08); background: rgba(255,255,255,.9); color: var(--brown); }
.btn--secondary:hover { background: #fff; border-color: rgba(35,32,31,.12); }
.btn--full { width: 100%; }
.hero__micro { max-width: 560px; margin: -18px 0 24px; color: var(--muted); font-size: 14px; font-weight: 700; }
.hero__points { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__points span { padding: 9px 13px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.88); border: 1px solid rgba(35,32,31,.06); font-size: 13px; font-weight: 700; transition: transform .28s ease, box-shadow .28s ease; }
.hero__visual { position: relative; min-height: 640px; display: flex; align-items: center; justify-content: center; }
.hero__visual-backdrop { position: absolute; inset: 54px 34px; border-radius: 30px; background: rgba(255,255,255,.58); box-shadow: inset 0 0 0 1px rgba(255,255,255,.85); backdrop-filter: blur(12px); }
.hero__image-wrap { position: relative; width: min(100%,430px); margin: 0 auto; padding: 10px; border-radius: 34px; background: rgba(255,255,255,.94); border: 1px solid rgba(35,32,31,.05); box-shadow: 0 26px 64px rgba(27,24,23,.08); z-index: 2; }
.hero__panel.is-visible .hero__image-wrap { animation: float-soft 8s ease-in-out infinite; }
.hero__image-wrap::before { content: ""; position: absolute; inset: auto auto -36px -34px; width: 120px; height: 120px; border-radius: 28px; background: linear-gradient(180deg, rgba(243,176,184,.34), rgba(243,176,184,.03)); filter: blur(2px); transform: rotate(34deg); z-index: -1; }
.hero__image-wrap img { width: 100%; height: 620px; object-fit: cover; object-position: center; border-radius: 26px; filter: saturate(.94) contrast(1.02) brightness(1.02); }
.hero__badge { position: absolute; min-width: 132px; padding: 16px 18px; border-radius: 22px; background: rgba(255,255,255,.92); border: 1px solid rgba(35,32,31,.05); box-shadow: 0 14px 34px rgba(27,24,23,.08); backdrop-filter: blur(16px); }
.hero__panel.is-visible .hero__badge { animation: badge-float 7s ease-in-out infinite; }
.hero__panel.is-visible .hero__badge--bottom { animation-delay: -3s; }
.hero__badge strong { display: block; font-size: 28px; line-height: 1; letter-spacing: -.06em; }
.hero__badge span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; font-weight: 700; }
.hero__badge--top { top: 44px; left: -44px; }
.hero__badge--bottom { right: -30px; bottom: 52px; }

.stats-section { padding-top: 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 18px; border-radius: 28px; background: rgba(255,255,255,.76); border: 1px solid var(--line); box-shadow: 0 18px 42px rgba(67,52,44,.05); }
.stat { padding: 24px; border-radius: 24px; background: rgba(255,255,255,.58); border: 1px solid var(--line); transition: transform .28s ease, box-shadow .28s ease; }
.stat strong { display: block; margin-bottom: 8px; font-size: 32px; line-height: 1; letter-spacing: -.06em; }
.stat span { display: block; color: var(--muted); font-size: 14px; font-weight: 700; }

.section-head { max-width: 850px; margin-bottom: 42px; }
.section-head--center { max-width: 820px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 17px; }

.approach__grid, .about__grid, .offer__grid, .faq__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.approach__photo, .about__photo { position: relative; padding: 12px; border-radius: 40px; background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); }
.approach__photo img, .about__photo img { width: 100%; height: 570px; object-fit: cover; object-position: center; border-radius: 30px; filter: saturate(.94) contrast(1.02) brightness(1.02); }
.approach__content p, .offer__content p, .about__content p { color: var(--muted); font-size: 18px; }
.check-list, .price-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.check-list li, .price-list li { position: relative; padding-left: 30px; color: var(--muted); font-weight: 700; }
.check-list li::before, .price-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(214,135,130,.12); }

.pain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain-card { position: relative; isolation: isolate; overflow: hidden; min-height: 210px; padding: 26px 24px 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(93,61,48,.08); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(93,61,48,.10); border-color: rgba(214,135,130,.28); }
.pain-card::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 52%, rgba(255,255,255,.44) 100%), linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.64)); }
.pain-card__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .72; filter: saturate(.86) contrast(.96) brightness(1.06); transform: scale(1.04); transition: transform .7s ease, opacity .35s ease; }
.pain-card:hover .pain-card__bg { transform: scale(1.08); opacity: .82; }
.pain-card:nth-child(1) .pain-card__bg, .pain-card:nth-child(2) .pain-card__bg, .pain-card:nth-child(5) .pain-card__bg { object-position: center right; }
.pain-card > span { position: absolute; top: 22px; left: 22px; z-index: 2; display: inline-flex; width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid rgba(214,135,130,.42); background: rgba(255,255,255,.92); box-shadow: inset 0 0 0 3px rgba(255,255,255,1); }
.pain-card h3 { position: relative; z-index: 2; margin: 28px 0 0; max-width: none; padding-right: 4px; font-size: clamp(18px,1.55vw,22px); line-height: 1.18; }

.includes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.include { min-height: 132px; display: flex; align-items: center; gap: 16px; padding: 22px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--panel); color: var(--muted); font-weight: 800; box-shadow: var(--shadow); transition: transform .28s ease, box-shadow .28s ease; }
.include span { flex: 0 0 12px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 8px rgba(214,135,130,.12); }

.offer__grid { grid-template-columns: .94fr 1.06fr; }
.offer__note { display: block; max-width: 620px; margin-top: 30px; padding: 18px 20px 18px 22px; border-radius: 22px; background: rgba(255,255,255,.72); border: 1px solid rgba(35,32,31,.06); border-left: 4px solid var(--red); color: var(--brown); font-size: 15px; font-weight: 800; line-height: 1.45; box-shadow: 0 12px 28px rgba(27,24,23,.03); }
.price-card { padding: 34px; border-radius: var(--radius-xl); background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); }
.price-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.price-card__top span { font-size: 18px; font-weight: 900; }
.price-card__top b { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 0; border-radius: 0; background: transparent; color: #d90000; border: 0; box-shadow: none; font-size: 15px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.price-card__top b::before { content: ""; width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: #d90000; }
.price-card__top b::after { content: none; }
.price { margin-bottom: 24px; font-size: clamp(46px,6vw,72px); line-height: .9; font-weight: 900; letter-spacing: -.08em; }
.price span { display: inline-block; margin-left: 8px; color: var(--muted); font-size: 16px; letter-spacing: 0; font-weight: 800; }
.price-list { margin-bottom: 30px; }

.formats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.format-card { overflow: hidden; min-height: 100%; display: flex; flex-direction: column; border-radius: var(--radius-xl); background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .28s ease, box-shadow .28s ease; }
.format-card img { width: 100%; height: 310px; object-fit: cover; filter: saturate(.94) contrast(1.02) brightness(1.02); }
.format-card > div { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.tag { align-self: flex-start; margin-bottom: 16px; padding: 8px 12px; border-radius: 999px; background: #1f1d1c; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.format-card p { color: var(--muted); }
.format-card strong { margin-top: auto; display: block; font-size: 22px; letter-spacing: -.04em; }
.format-card a { position: relative; align-self: flex-start; margin-top: 22px; padding: 13px 18px; border-radius: 999px; background: #1f1d1c; color: #fff; font-weight: 900; box-shadow: 0 12px 28px rgba(27,24,23,.10); transition: transform .28s ease, box-shadow .28s ease, background .28s ease; overflow: hidden; }
.format-card a::after { content: "→"; margin-left: 10px; transition: transform .28s ease; }
.format-card a:hover { transform: translateY(-2px); background: var(--gold); color: var(--brown); box-shadow: 0 16px 34px rgba(240,208,137,.34); }
.format-card a:hover::after { transform: translateX(3px); }

.results__grid, .testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.result-card, .testimonial-card { min-height: 255px; padding: 30px; border-radius: var(--radius-lg); background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .28s ease, box-shadow .28s ease; }
.result-card span { display: block; margin-bottom: 18px; color: var(--red); font-weight: 900; }
.result-card strong { display: block; margin-bottom: 16px; font-size: 28px; line-height: 1.05; letter-spacing: -.06em; }
.result-card p { color: var(--muted); }
.testimonial-card { position: relative; min-height: 250px; }
.testimonial-card::before { content: "“"; position: absolute; top: 18px; left: 24px; color: rgba(214,135,130,.42); font-family: "Playfair Display", serif; font-size: 56px; line-height: 1; }
.testimonial-card__text { position: relative; margin: 24px 0 22px; color: var(--brown); font-size: 18px; line-height: 1.55; }
.testimonial-card__author { display: grid; gap: 3px; }
.testimonial-card__author strong { font-size: 17px; }
.testimonial-card__author span { color: var(--muted); font-size: 14px; font-weight: 700; }

.about__grid { grid-template-columns: 1.05fr .95fr; }
.about__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.about__facts div { padding: 18px; border-radius: 20px; background: var(--panel); border: 1px solid var(--line); }
.about__facts strong { display: block; margin-bottom: 8px; font-size: 26px; letter-spacing: -.06em; }
.about__facts span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; }

.free-session__box, .final-cta__box { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: clamp(32px,5vw,58px); border-radius: 42px; background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); }
.free-session__box p, .final-cta__box p { color: var(--muted); }
.final-cta__box { text-align: center; grid-template-columns: 1fr; justify-items: center; }
.final-cta__box .eyebrow { justify-content: center; }

.faq__intro { align-self: start; position: sticky; top: 110px; }
.faq__intro p { color: var(--muted); }
.faq__list { overflow: hidden; border-radius: var(--radius-xl); background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 24px 26px; border: 0; background: transparent; color: var(--brown); text-align: left; font-weight: 900; cursor: pointer; position: relative; }
.faq-item button::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); color: var(--red); font-size: 24px; }
.faq-item.active button::after { content: "−"; }
.faq-item p { max-height: 0; overflow: hidden; margin: 0; padding: 0 26px; color: var(--muted); transition: max-height .3s ease, padding .3s ease; }
.faq-item.active p { max-height: 220px; padding: 0 26px 24px; }

.footer { padding: 38px 0 46px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 28px; border-top: 1px solid rgba(35,32,31,.06); }
.footer p { margin: 10px 0 0; color: var(--muted); font-size: 14px; font-weight: 700; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 24px; color: var(--muted); font-size: 14px; font-weight: 800; }
.footer__links a:hover { color: var(--red); }

@media (hover:hover) {
  .stat:hover, .include:hover, .format-card:hover, .result-card:hover, .testimonial-card:hover, .free-session__box:hover, .final-cta__box:hover { transform: translateY(-4px); box-shadow: 0 22px 54px rgba(27,24,23,.10); }
}
@keyframes float-soft { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes badge-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.reveal { opacity: 0; transform: translateY(24px) scale(.985); transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal--delay { transition-delay: .12s; }

@media (max-width: 1040px) {
  .section { padding: 78px 0; }
  .hero-meta, .hero__grid, .approach__grid, .about__grid, .offer__grid, .faq__grid { grid-template-columns: 1fr; gap: 26px; }
  .hero { min-height: auto; }
  .hero__panel { padding: 24px; border-radius: 34px; }
  .hero__image-wrap { max-width: 430px; margin: 0 auto; }
  .stats, .pain__grid, .includes__grid { grid-template-columns: repeat(2, 1fr); }
  .formats__grid, .results__grid, .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .faq__intro { position: static; }
}
@media (max-width: 820px) {
  .header__inner { height: 70px; }
  .burger { display: inline-flex; }
  .header__cta { display: none; }
  .nav { position: fixed; left: 20px; right: 20px; top: 82px; z-index: 60; display: grid; gap: 0; padding: 12px; border-radius: 26px; background: rgba(255,255,255,.96); border: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-14px); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
  body.nav-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 15px 14px; border-radius: 16px; }
  .nav a:hover { background: var(--bg); }
  .nav a::after { display: none; }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(45px,13vw,72px); }
  h2 { font-size: clamp(34px,11vw,54px); }
  .hero__text { font-size: 16px; }
  .hero__image-wrap img { height: 540px; }
  .hero__badge--top { left: -8px; }
  .hero__badge--bottom { right: -8px; }
}
@media (max-width: 640px) {
  .logo__mark { width: 40px; height: 40px; }
  .logo__text { font-size: 12px; letter-spacing: .18em; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 42px; padding-bottom: 54px; }
  .hero-meta__person img { width: 54px; height: 54px; }
  .hero-meta__item em { width: 38px; height: 38px; flex-basis: 38px; }
  .hero__panel { padding: 16px; border-radius: 28px; }
  .hero__actions, .btn { width: 100%; }
  .hero__points span { flex: 1 1 auto; text-align: center; }
  .hero__visual { min-height: 520px; }
  .hero__visual-backdrop { inset: 36px 16px; border-radius: 22px; }
  .hero__image-wrap { padding: 9px; border-radius: 28px; }
  .hero__image-wrap img { height: 470px; border-radius: 24px; }
  .hero__badge { min-width: 110px; padding: 13px 14px; border-radius: 18px; }
  .hero__badge strong { font-size: 23px; }
  .hero__badge span { font-size: 12px; }
  .stats, .pain__grid, .includes__grid, .formats__grid, .results__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .stat, .pain-card, .result-card, .price-card, .format-card > div, .testimonial-card { padding: 23px; }
  .pain-card { min-height: 190px; }
  .pain-card::after { background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 58%, rgba(255,255,255,.56) 100%), linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.72)); }
  .pain-card h3 { margin-top: 26px; font-size: 18px; line-height: 1.2; }
  .approach__photo, .about__photo { padding: 9px; border-radius: 30px; }
  .approach__photo img, .about__photo img { height: 460px; border-radius: 22px; }
  .format-card img { height: 260px; }
  .format-card a { width: 100%; justify-content: center; }
  .free-session__box, .final-cta__box { grid-template-columns: 1fr; justify-items: start; border-radius: 30px; }
  .final-cta__box { justify-items: center; }
  .faq-item button { padding: 20px; padding-right: 50px; }
  .faq-item p, .faq-item.active p { padding-left: 20px; padding-right: 20px; }
  .footer__inner { display: grid; }
  .footer__links { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Testimonials carousel + lead form ===== */
.testimonials {
  background: transparent;
}

.reviews-carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 72px 48px;
}

.reviews-carousel__viewport {
  overflow: hidden;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(35, 32, 31, 0.06);
  box-shadow: var(--shadow);
}

.reviews-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 430px;
  background: rgba(255, 255, 255, 0.72);
}

.review-slide__photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.review-slide__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.18));
}

.review-slide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02) brightness(1.03);
}

.review-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.review-slide__text {
  margin: 18px 0 28px;
  color: var(--brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.review-slide__author {
  display: grid;
  gap: 6px;
}

.review-slide__author strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.review-slide__author span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.reviews-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #1f1d1c;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(27, 24, 23, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.reviews-carousel__btn:hover {
  background: #131211;
  box-shadow: 0 20px 42px rgba(27, 24, 23, 0.2);
}

.reviews-carousel__btn--prev {
  left: 0;
}

.reviews-carousel__btn--next {
  right: 0;
}

.reviews-carousel__btn--prev:hover {
  transform: translate(-3px, -50%);
}

.reviews-carousel__btn--next:hover {
  transform: translate(3px, -50%);
}

.reviews-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.reviews-carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(35, 32, 31, 0.18);
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, width 0.28s ease;
}

.reviews-carousel__dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--red);
}

.lead-section {
  background: transparent;
}

.lead-section__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(35, 32, 31, 0.06);
  box-shadow: var(--shadow);
}

.lead-section__content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.lead-section__note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 32, 31, 0.06);
  box-shadow: 0 18px 44px rgba(27, 24, 23, 0.04);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label > span {
  color: var(--brown);
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 18px;
  background: rgba(250, 250, 249, 0.92);
  color: var(--brown);
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lead-form textarea {
  min-height: 116px;
  padding-top: 16px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(214, 135, 130, 0.58);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(214, 135, 130, 0.1);
}

.lead-form__agree {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lead-form__agree input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.lead-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lead-form__status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.lead-form__status.is-success {
  color: #4f7a54;
}

.lead-form__status.is-error {
  color: var(--red-dark);
}

@media (max-width: 1040px) {
  .reviews-carousel {
    padding-left: 60px;
    padding-right: 60px;
  }

  .review-slide {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .lead-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .reviews-carousel {
    padding: 0 0 46px;
  }

  .review-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .review-slide__photo {
    min-height: 330px;
  }

  .review-slide__content {
    padding: 26px 22px 30px;
  }

  .review-slide__text {
    font-size: 28px;
  }

  .reviews-carousel__btn {
    top: auto;
    bottom: -4px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .reviews-carousel__btn--prev {
    left: 0;
  }

  .reviews-carousel__btn--next {
    right: 0;
  }

  .reviews-carousel__btn--prev:hover,
  .reviews-carousel__btn--next:hover {
    transform: translateY(-2px);
  }

  .reviews-carousel__dots {
    bottom: 12px;
  }

  .lead-section__grid {
    padding: 22px;
    border-radius: 30px;
  }

  .lead-form {
    padding: 22px;
    border-radius: 24px;
  }
}


/* ===== Final legal pages and smoother reviews carousel ===== */
.reviews-carousel__track {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
  opacity: 0.64;
  transform: scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.review-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.review-slide__photo img {
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s ease;
}

.review-slide.is-active .review-slide__photo img {
  transform: scale(1.025);
}

.lead-form__agree a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  background: var(--bg);
}

.legal-header {
  padding: 30px 0;
}

.legal-shell {
  padding: 54px 0 86px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 38px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 72px);
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
}

.legal-card ul {
  margin: 0;
  padding-left: 22px;
}

.legal-card a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card__date {
  margin-bottom: 30px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 640px) {
  .reviews-carousel__track {
    transition-duration: 0.78s;
  }

  .review-slide {
    opacity: 1;
    transform: none;
  }

  .legal-shell {
    padding: 34px 0 64px;
  }

  .legal-card {
    border-radius: 28px;
  }
}


/* Results cards with photos */
.result-card--photo {
  padding: 0;
  overflow: hidden;
}

.result-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.result-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 46%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
}

.result-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.result-card__body {
  padding: 24px 24px 26px;
}

.result-card--photo:hover .result-card__media img {
  transform: scale(1.03);
}

.result-card--photo .result-card__body strong {
  font-size: 26px;
}

@media (max-width: 640px) {
  .result-card__body {
    padding: 20px 20px 22px;
  }

  .result-card--photo .result-card__body strong {
    font-size: 24px;
  }
}


/* ===== Extra smooth testimonials carousel ===== */
.reviews-carousel__viewport {
  transform: translateZ(0);
}

.reviews-carousel__track {
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.review-slide {
  opacity: 0.52;
  transform: scale(0.972);
  transition: opacity 1.05s cubic-bezier(0.19, 1, 0.22, 1), transform 1.05s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

.review-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.review-slide__photo img {
  transition: transform 1.55s cubic-bezier(0.19, 1, 0.22, 1), filter 1.05s ease;
  will-change: transform;
}

.review-slide.is-active .review-slide__photo img {
  transform: scale(1.018);
}

.review-slide__content {
  transition: opacity 0.95s ease, transform 0.95s cubic-bezier(0.19, 1, 0.22, 1);
}

.review-slide:not(.is-active) .review-slide__content {
  opacity: 0.72;
  transform: translateX(10px);
}

.reviews-carousel__btn,
.reviews-carousel__dots button {
  transition-duration: 0.45s;
}


/* Social links */
.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1f1d1c;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--brown);
  box-shadow: 0 16px 32px rgba(240,208,137,.34);
}

.social-links svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.footer__socials {
  margin-left: auto;
}

@media (max-width: 1040px) {
  .header__socials {
    gap: 8px;
  }

  .header__socials a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 820px) {
  .header__socials {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .social-links a {
    width: 42px;
    height: 42px;
  }

  .footer__socials {
    margin-left: 0;
    margin-top: 2px;
  }
}


/* Logo harmony override */
.logo:hover .logo__text,
.logo:hover {
  color: #a98a61;
}

@media (max-width: 640px) {
  .logo { gap: 7px; }
  .logo__mark { width: 38px; height: 38px; }
  .logo__text { font-size: 11px; letter-spacing: .16em; }
}


.hero__text strong {
  color: var(--brown);
  font-weight: 900;
}


/* Marketing blocks inspired by clear personalization / included / process structure */
.uniqueness__grid,
.inside-program__grid,
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.method-card,
.inside-card,
.process-step {
  min-height: 245px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.method-card:hover,
.inside-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(27,24,23,.10);
  border-color: rgba(214,135,130,.22);
}

.method-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--red-dark);
  background: rgba(214,135,130,.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.method-card p,
.inside-card p,
.process-step p,
.personalization__content p {
  color: var(--muted);
}

.personalization__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.personalization__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.personalization__items div {
  min-height: 104px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(27,24,23,.04);
  color: var(--brown);
  font-size: 14px;
  font-weight: 850;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.personalization__items div::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(214,135,130,.12);
}

.inside-program__grid {
  grid-template-columns: repeat(4, 1fr);
}

.inside-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.inside-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.inside-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.process__grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1040px) {
  .uniqueness__grid,
  .inside-program__grid,
  .process__grid,
  .personalization__grid {
    grid-template-columns: 1fr 1fr;
  }

  .personalization__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .uniqueness__grid,
  .inside-program__grid,
  .process__grid,
  .personalization__grid,
  .personalization__items {
    grid-template-columns: 1fr;
  }

  .method-card,
  .inside-card,
  .process-step {
    min-height: auto;
    padding: 24px;
  }

  .personalization__items div {
    min-height: 92px;
  }
}


/* About lead text */
.about__lead {
  max-width: 760px;
  font-size: 16px !important;
  line-height: 1.72;
  color: var(--muted);
}


/* ===== Custom reviews gallery update ===== */
.about__photo img {
  object-position: center top;
}

.reviews-carousel {
  max-width: 1120px;
}

.review-slide--multi {
  grid-template-columns: 1.08fr .92fr;
  min-height: 560px;
}

.review-slide__gallery {
  min-height: 560px;
  padding: 16px;
  display: grid;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(244,231,221,.36));
}

.review-slide__gallery::after {
  display: none;
}

.review-slide__gallery a {
  display: block;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #f7f2ec;
  border: 1px solid rgba(35,32,31,.06);
  box-shadow: 0 14px 30px rgba(27,24,23,.05);
}

.review-slide__gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.review-slide__gallery--2 {
  grid-template-columns: 1fr 1fr;
}

.review-slide__gallery--2 a {
  min-height: 520px;
}

.review-slide__gallery--4 {
  grid-template-columns: 1fr 1fr;
}

.review-slide__gallery--4 a {
  min-height: 250px;
}

.review-slide__text {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.review-slide__content {
  padding: clamp(26px, 4vw, 46px);
}

@media (max-width: 860px) {
  .reviews-carousel {
    padding: 0 0 46px;
  }
  .review-slide--multi {
    grid-template-columns: 1fr;
  }
  .review-slide__gallery {
    min-height: auto;
  }
  .review-slide__gallery--2 a,
  .review-slide__gallery--4 a {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .review-slide__gallery {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 8px;
  }
  .review-slide__gallery--2,
  .review-slide__gallery--4 {
    grid-template-columns: 1fr;
  }
  .review-slide__gallery--2 a,
  .review-slide__gallery--4 a {
    min-height: 220px;
    max-height: 420px;
  }
  .review-slide__content {
    padding: 22px;
  }
}


/* ===== Reviews: one result photo + one text-proof image ===== */
.reviews-carousel {
  max-width: 1120px;
}

.review-slide--proof {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 610px;
}

.review-slide__visual {
  min-height: 610px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(244,231,221,.36));
}

.review-slide__person,
.review-slide__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 26px;
  background: #f7f2ec;
  border: 1px solid rgba(35,32,31,.06);
  box-shadow: 0 14px 30px rgba(27,24,23,.055);
}

.review-slide__person {
  height: 100%;
}

.review-slide__person img,
.review-slide__proof img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.review-slide__content--proof {
  justify-content: flex-start;
  gap: 16px;
  padding: clamp(24px, 3.5vw, 40px);
}

.review-slide__proof {
  width: 100%;
  height: 470px;
}

.review-slide__content--proof .review-slide__author {
  margin-top: 2px;
}

@media (max-width: 900px) {
  .review-slide--proof {
    grid-template-columns: 1fr;
  }

  .review-slide__visual {
    min-height: 420px;
  }

  .review-slide__person {
    height: 420px;
  }

  .review-slide__proof {
    height: 460px;
  }
}

@media (max-width: 560px) {
  .review-slide__visual {
    min-height: 320px;
    padding: 10px;
  }

  .review-slide__person {
    height: 320px;
    border-radius: 20px;
  }

  .review-slide__content--proof {
    padding: 20px;
  }

  .review-slide__proof {
    height: 390px;
    border-radius: 20px;
  }
}

/* ===== Mobile final polish ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

@media (max-width: 560px) {
  .review-slide__proof {
    height: auto;
    min-height: 0;
    align-items: flex-start;
    background: #ffffff;
  }

  .review-slide__proof img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* ===== Tariffs page ===== */
.nav a.is-active {
  color: var(--brown);
}
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.price-card__more {
  margin-top: 12px;
}
.tariffs-hero {
  min-height: auto;
  padding: 82px 0 54px;
}
.tariffs-hero::before {
  display: none;
}
.tariffs-hero__panel {
  padding: clamp(30px, 6vw, 70px);
  border-radius: 42px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(67,52,44,.07);
  overflow: hidden;
  position: relative;
}
.tariffs-hero__panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,135,130,.22), transparent 64%);
  pointer-events: none;
}
.tariffs-hero h1 {
  max-width: 860px;
}
.tariffs-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}
.tariffs-hero__actions {
  margin: 30px 0 0;
}
.tariffs-section {
  padding-top: 64px;
}
.tariffs-section--compact {
  padding-top: 82px;
}
.tariff-feature {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 42px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.tariff-feature__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.tariff-feature__head h2 {
  margin-bottom: 0;
}
.tariff-feature__price {
  min-width: 280px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(27,24,23,.04);
}
.tariff-feature__price span,
.tariff-feature__price em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-style: normal;
}
.tariff-feature__price strong {
  display: block;
  margin: 9px 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.07em;
}
.tariff-feature__body {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 42px;
  padding-top: 34px;
}
.tariff-feature__text p,
.tariff-result p,
.tariff-card p {
  color: var(--muted);
  font-size: 17px;
}
.tariff-feature__text strong {
  color: var(--brown);
}
.tariff-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.tariff-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 750;
}
.tariff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(214,135,130,.12);
}
.tariff-list--large {
  gap: 14px;
}
.tariff-result {
  margin: 34px 0 28px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
}
.tariff-result h3 {
  margin-bottom: 8px;
}
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.tariff-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.2vw, 34px);
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.tariff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(27,24,23,.10);
}
.tariff-card--accent {
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(244,231,221,.72));
  border-color: rgba(214,135,130,.22);
}
.tariff-card--wide {
  grid-column: 1 / -1;
}
.tariff-price {
  margin: 10px 0 18px;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: .95;
  letter-spacing: -.08em;
  font-weight: 900;
}
.tariff-price span {
  display: inline-block;
  max-width: 230px;
  margin-left: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 800;
}
.tariff-card__subprice {
  margin-top: -8px;
  font-weight: 900;
  color: var(--red-dark) !important;
}
.tariff-note {
  margin: 20px 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  color: var(--brown);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}
.tariff-card blockquote {
  margin: 20px 0 24px;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--red);
  color: var(--brown);
  font-weight: 800;
  line-height: 1.55;
}
.tariff-card .btn {
  margin-top: auto;
}
.tariff-cta {
  padding-top: 70px;
}

@media (max-width: 1040px) {
  .tariff-feature__head,
  .tariff-feature__body {
    grid-template-columns: 1fr;
  }
  .tariff-feature__price {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .tariffs-hero {
    padding: 54px 0 30px;
  }
  .tariffs-hero__panel {
    border-radius: 30px;
  }
  .tariff-grid {
    grid-template-columns: 1fr;
  }
  .tariff-card--wide {
    grid-column: auto;
  }
  .tariff-feature,
  .tariff-result {
    border-radius: 28px;
  }
}

@media (max-width: 520px) {
  .tariff-feature__price {
    padding: 20px;
    border-radius: 22px;
  }
  .tariff-price span {
    display: block;
    max-width: none;
    margin: 8px 0 0;
  }
}


/* Inline tariffs on main page */
.tariffs-subhead {
  margin-top: clamp(38px, 5vw, 68px);
}

.tariff-inline-cta {
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(123, 86, 70, 0.14);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(244, 231, 221, 0.72));
  box-shadow: var(--shadow-soft);
}

.tariff-inline-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.tariff-inline-cta p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  margin-bottom: 22px;
}

/* Submit button reliability fix */
.lead-form .btn[type="submit"] {
  position: relative;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
}
.lead-form .btn[type="submit"]:disabled {
  opacity: .72;
  cursor: wait;
  transform: none;
}
