:root {
  --font-heading: "Cormorant Infant", "Cormorant Garamond", Georgia, serif;
  --font-body: "Onest", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Onest", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --navy: #17283f;
  --navy-deep: #0a1830;
  --ink: #1d2d40;
  --muted: #687386;
  --gold: #a98467;
  --gold-light: #dbb778;
  --rose: #e978b7;
  --rose-deep: #c95599;
  --cream: #fff8ef;
  --paper: rgba(255,255,255,.74);
  --paper-strong: rgba(255,255,255,.9);
  --line: rgba(23,40,63,.12);
  --line-gold: rgba(169,132,103,.28);
  --shadow: 0 28px 90px rgba(23,40,63,.14);
  --shadow-soft: 0 16px 44px rgba(23,40,63,.09);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--cream);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(233,120,183,.22); }
.background {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 76% 8%, rgba(255,255,255,.74), transparent 24%),
    radial-gradient(circle at 4% 2%, rgba(255,255,255,.58), transparent 30%),
    linear-gradient(106deg, rgba(255,248,170,.92) 0%, rgba(255,227,211,.94) 43%, rgba(248,159,230,.75) 100%),
    url("img/pastel-gradient.webp") center / cover no-repeat;
}
.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
  opacity: .16;
}
.container { width: min(var(--container), calc(100% - 42px)); margin: 0 auto; }
.header {
  position: sticky;
  top: 14px;
  z-index: 50;
  margin-bottom: -88px;
  padding: 0;
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 44px rgba(23,40,63,.08);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.header.is-scrolled .header-inner {
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 52px rgba(23,40,63,.13);
}
.brand { display: flex; flex: 0 0 auto; width: clamp(206px, 24vw, 315px); }
.brand img { width: 100%; height: auto; }
.nav { display: flex; align-items: center; gap: 6px; color: rgba(23,40,63,.76); font-size: 13px; font-weight: 800; }
.nav a { padding: 12px 14px; border-radius: 999px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.nav a:hover { transform: translateY(-1px); color: var(--navy); background: rgba(255,255,255,.62); }
.nav .nav-cta { margin-left: 4px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); box-shadow: 0 12px 28px rgba(23,40,63,.20); }
.burger { display: none; width: 46px; height: 46px; border: 1px solid rgba(23,40,63,.15); border-radius: 50%; background: rgba(255,255,255,.68); padding: 0; cursor: pointer; }
.burger span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 999px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hero { position: relative; padding: 148px 0 58px; }
.hero::after { content: ""; position: absolute; left: 50%; bottom: 0; width: min(var(--container), calc(100% - 42px)); height: 1px; transform: translateX(-50%); background: linear-gradient(90deg, transparent, rgba(23,40,63,.16), transparent); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr); align-items: center; gap: clamp(28px, 4vw, 62px); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 15px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; opacity: .7; }
h1, h2 { margin: 0; font-family: var(--font-heading); color: var(--navy-deep); font-weight: 700; letter-spacing: -.04em; }
h1 { max-width: 760px; font-size: clamp(66px, 8.4vw, 124px); line-height: .83; }
h2 { font-size: clamp(42px, 5vw, 72px); line-height: .92; }
h3 { margin: 0; color: var(--navy); font-size: 22px; line-height: 1.18; }
p { color: var(--muted); line-height: 1.72; }
.hero-titleline { max-width: 690px; margin: 20px 0 0; color: var(--navy); font-family: var(--font-heading); font-size: clamp(34px, 4vw, 54px); line-height: 1.02; letter-spacing: -.03em; }
.hero-lead { max-width: 680px; margin: 22px 0 0; color: rgba(29,45,64,.82); font-size: 18px; line-height: 1.7; }
.hero-credentials { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; }
.hero-credentials span { display: inline-flex; align-items: center; min-height: 42px; padding: 10px 14px; border: 1px solid var(--line-gold); border-radius: 999px; background: rgba(255,255,255,.52); color: rgba(23,40,63,.78); font-size: 13px; font-weight: 800; box-shadow: 0 10px 26px rgba(23,40,63,.05); backdrop-filter: blur(12px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 0; }
.button { min-height: 62px; display: inline-flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; padding: 14px 24px; border: 0; border-radius: 999px; cursor: pointer; text-align: center; font-weight: 800; line-height: 1.15; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button small { font-size: 12px; opacity: .76; font-weight: 700; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--navy), #0c1a32 58%, var(--rose-deep)); box-shadow: 0 18px 48px rgba(23,40,63,.22), 0 18px 50px rgba(233,120,183,.20); }
.button-secondary, .button-plan { color: var(--navy); border: 1px solid rgba(23,40,63,.14); background: rgba(255,255,255,.64); box-shadow: 0 12px 32px rgba(23,40,63,.08); }
.button-gold { color: var(--navy-deep); background: linear-gradient(135deg, #ffe6ad, #c99954); box-shadow: 0 18px 46px rgba(201,153,84,.26); }
.hero-media { min-height: 660px; display: flex; align-items: flex-end; justify-content: center; }
.portrait-card { position: relative; width: min(100%, 545px); min-height: 640px; display: flex; align-items: flex-end; justify-content: center; }
.portrait-card::before { content: ""; position: absolute; inset: 32px 8px 0; border-radius: 50% 50% 38px 38px / 43% 43% 38px 38px; background: linear-gradient(150deg, rgba(255,255,255,.72), rgba(255,255,255,.22)); border: 1px solid rgba(255,255,255,.78); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 35px 90px rgba(23,40,63,.13); backdrop-filter: blur(18px); }
.portrait-halo { position: absolute; width: 435px; aspect-ratio: 1; top: 36px; border-radius: 50%; border: 1px solid rgba(169,132,103,.32); }
.portrait-halo::before, .portrait-halo::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.72); }
.portrait-halo::before { inset: 28px; }
.portrait-halo::after { inset: -24px 44px 40px -22px; transform: rotate(-12deg); }
.hero-photo { position: relative; z-index: 2; width: min(465px, 92%); filter: drop-shadow(0 26px 42px rgba(23,40,63,.18)); }
.float-badge { position: absolute; z-index: 3; width: 184px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.76); border-radius: 22px; background: rgba(255,255,255,.72); box-shadow: 0 18px 44px rgba(23,40,63,.12); backdrop-filter: blur(16px); }
.float-badge strong { display: block; color: var(--navy); font-family: var(--font-heading); font-size: 34px; line-height: .9; }
.float-badge span { display: block; margin-top: 7px; color: rgba(23,40,63,.68); font-size: 12px; font-weight: 800; line-height: 1.35; }
.float-badge-top { top: 86px; right: 0; }
.float-badge-bottom { bottom: 84px; left: -8px; }
.intro-panel { margin-top: 10px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 10px; border: 1px solid rgba(255,255,255,.72); border-radius: 32px; background: rgba(255,255,255,.52); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px); }
.intro-panel div { padding: 24px; border-radius: 24px; background: rgba(255,255,255,.38); }
.intro-panel span { color: var(--gold); font-weight: 900; letter-spacing: .12em; font-size: 12px; }
.intro-panel strong { display: block; margin: 8px 0 6px; color: var(--navy); font-size: 18px; }
.intro-panel p { margin: 0; color: rgba(29,45,64,.68); font-size: 14px; }
.section { padding: 92px 0; position: relative; }
.section.compact { padding: 72px 0; }
.section-white { background: linear-gradient(180deg, rgba(255,255,255,.54), rgba(255,255,255,.30)); }
.section-head { max-width: 860px; text-align: center; }
.section-head p:not(.eyebrow) { max-width: 720px; margin: 20px auto 0; font-size: 18px; color: rgba(29,45,64,.72); }
.section-head .eyebrow { justify-content: center; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 38px; }
.soft-card { border: 1px solid rgba(255,255,255,.76); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px); }
.problem-card { min-height: 248px; padding: 28px; }
.icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 22px; border-radius: 20px; color: var(--navy); font-family: Georgia, serif; font-size: 31px; background: linear-gradient(135deg, rgba(255,245,173,.88), rgba(242,162,220,.72)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.75); }
.problem-card h3 { margin-bottom: 12px; font-size: 24px; }
.problem-card p { margin: 0; font-size: 15px; color: rgba(29,45,64,.68); }
.expert-grid { display: grid; grid-template-columns: minmax(310px, .86fr) minmax(0, 1.14fr); align-items: center; gap: clamp(42px, 6vw, 86px); }
.expert-photo { position: relative; min-height: 660px; display: flex; align-items: flex-end; justify-content: center; }
.photo-plate { position: absolute; inset: 18px 0 0; border-radius: 42px; background: linear-gradient(150deg, rgba(255,255,255,.72), rgba(255,255,255,.28)); border: 1px solid rgba(255,255,255,.76); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.photo-plate::before { content: ""; position: absolute; inset: 38px; border: 1px solid rgba(169,132,103,.28); border-radius: 34px; }
.expert-photo img { position: relative; z-index: 1; width: min(430px, 92%); filter: drop-shadow(0 26px 42px rgba(23,40,63,.16)); }
.expert-copy h2 { margin-bottom: 22px; }
.large { max-width: 720px; margin: 0 0 28px; color: rgba(29,45,64,.75); font-size: 18px; }
.credential-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.credential-list div { padding: 18px; border: 1px solid rgba(255,255,255,.74); border-radius: 22px; background: rgba(255,255,255,.62); box-shadow: 0 12px 30px rgba(23,40,63,.07); }
.credential-list strong { display: block; margin-bottom: 6px; color: var(--navy); font-family: var(--font-heading); font-size: 33px; line-height: .92; }
.credential-list span { color: rgba(29,45,64,.66); font-size: 14px; line-height: 1.45; }
.compare-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 34px; align-items: center; padding: clamp(28px, 5vw, 56px); border: 1px solid rgba(255,255,255,.76); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.44)); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.compare-card p { font-size: 17px; }
.compare-points { display: grid; gap: 14px; }
.compare-points div { position: relative; min-height: 112px; padding: 23px 24px 22px 90px; border-radius: 26px; background: rgba(255,255,255,.62); border: 1px solid rgba(23,40,63,.09); }
.compare-points span { position: absolute; left: 24px; top: 24px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; background: var(--navy); font-family: var(--font-heading); font-size: 24px; }
.compare-points strong { display: block; color: var(--navy); font-size: 18px; }
.compare-points p { margin: 5px 0 0; font-size: 14px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 38px; counter-reset: weeks; }
.timeline article { position: relative; min-height: 268px; padding: 26px 24px 28px; border: 1px solid rgba(255,255,255,.76); border-radius: 28px; background: rgba(255,255,255,.70); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px); overflow: hidden; }
.timeline article::after { counter-increment: weeks; content: "0" counter(weeks); position: absolute; right: -8px; bottom: -22px; color: rgba(169,132,103,.12); font-family: var(--font-heading); font-size: 110px; font-weight: 700; line-height: 1; }
.timeline span { display: inline-flex; margin-bottom: 54px; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; font-size: 12px; }
.timeline span::after { content: ""; position: absolute; left: 24px; top: 68px; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #fff3b4, #ef8ac8); border: 7px solid rgba(255,255,255,.72); box-shadow: 0 12px 28px rgba(23,40,63,.10); }
.timeline h3 { margin-bottom: 12px; font-size: 25px; }
.timeline p { position: relative; z-index: 1; margin: 0; color: rgba(29,45,64,.68); font-size: 15px; }
.guide-panel { display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); gap: 30px; align-items: center; padding: clamp(28px, 5vw, 54px); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(23,40,63,.96), rgba(10,24,48,.98)); box-shadow: 0 30px 90px rgba(23,40,63,.22); color: #fff; }
.guide-panel h2, .guide-panel .eyebrow { color: #fff; }
.guide-panel .eyebrow { color: var(--gold-light); }
.guide-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.guide-tags span { padding: 12px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); font-size: 14px; font-weight: 800; }
.tariffs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 44px;
}
.tariff {
  isolation: isolate;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.78);
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62)),
    radial-gradient(circle at 92% 0%, rgba(233,120,183,.15), transparent 34%);
  box-shadow: 0 26px 74px rgba(23,40,63,.12);
  backdrop-filter: blur(22px);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.tariff:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 92px rgba(23,40,63,.16);
  border-color: rgba(169,132,103,.34);
}
.tariff::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 12% 96%, rgba(255,239,176,.38), transparent 36%);
}
.tariff-glow {
  position: absolute;
  right: -70px;
  top: -80px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(233,120,183,.18);
  filter: blur(5px);
}
.tariff-featured {
  transform: translateY(-16px);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background:
    radial-gradient(circle at 88% 0%, rgba(233,120,183,.34), transparent 38%),
    radial-gradient(circle at 8% 100%, rgba(219,183,120,.26), transparent 42%),
    linear-gradient(145deg, #1a2d48 0%, #0a1830 78%);
  box-shadow: 0 36px 105px rgba(10,24,48,.32);
}
.tariff-featured:hover { transform: translateY(-20px); }
.tariff-featured::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,0) 50%),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: auto, 26px 26px;
  opacity: .8;
}
.popular {
  position: absolute;
  left: 50%;
  top: -15px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 34px);
  padding: 10px 17px;
  border-radius: 999px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff4c4, #d5a45c);
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .105em;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(23,40,63,.20);
}
.popular::before { content: "★"; font-size: 11px; }
.tariff-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}
.tariff-kicker {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10.5px;
  font-weight: 900;
}
.tariff-featured .tariff-kicker { color: var(--gold-light); }
.tariff h3 {
  margin: 10px 0 0;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.035em;
}
.tariff-featured h3 { color: #fff; }
.tariff-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 56px;
  height: 56px;
  padding: 0 12px;
  border: 1px solid rgba(169,132,103,.32);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 12px 26px rgba(23,40,63,.07);
}
.tariff-featured .tariff-mark {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
}
.price {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.tariff-featured .price { color: #fff; }
.tariff-price-row {
  display: grid;
  gap: 7px;
  margin: 20px 0 18px;
  padding: 20px 0 18px;
  border-top: 1px solid rgba(23,40,63,.10);
  border-bottom: 1px solid rgba(23,40,63,.10);
}
.tariff-price-row span {
  color: rgba(29,45,64,.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tariff-featured .tariff-price-row { border-color: rgba(255,255,255,.16); }
.tariff-featured .tariff-price-row span { color: rgba(255,255,255,.60); }
.tariff-desc {
  min-height: 94px;
  margin: 0;
  color: rgba(29,45,64,.72);
  font-size: 15px;
  line-height: 1.68;
}
.tariff-featured .tariff-desc { color: rgba(255,255,255,.74); }
.tariff-fit {
  margin: 0 0 20px;
  padding: 15px 16px;
  border: 1px solid rgba(169,132,103,.22);
  border-radius: 20px;
  background: rgba(255,255,255,.48);
  color: rgba(29,45,64,.70);
  font-size: 14px;
  line-height: 1.55;
}
.tariff-fit strong { display: block; margin-bottom: 3px; color: var(--navy); }
.tariff-featured .tariff-fit {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.70);
}
.tariff-featured .tariff-fit strong { color: #fff; }
.tariff ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
}
.tariff li {
  position: relative;
  padding-left: 31px;
  color: rgba(29,45,64,.80);
  line-height: 1.45;
  font-size: 15px;
}
.tariff-featured li { color: rgba(255,255,255,.83); }
.tariff li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .05em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.42)),
    var(--rose);
  box-shadow: 0 8px 18px rgba(233,120,183,.18);
}
.tariff li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: .04em;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 900;
}
.tariff-featured li::before {
  background: linear-gradient(135deg, #fff4c4, #d5a45c);
  box-shadow: 0 8px 18px rgba(219,183,120,.20);
}
.tariff-featured li::after { color: var(--navy-deep); }
.tariff .button { margin-top: auto; width: 100%; }
.tariff-button {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 70px;
}
.tariff-button::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .75;
  font-size: 20px;
  transition: transform .18s ease;
}
.tariff-button:hover::after { transform: translate(4px, -50%); }
.tariff-button-light {
  padding-right: 48px;
  color: var(--navy-deep);
  border: 1px solid rgba(23,40,63,.14);
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 36px rgba(23,40,63,.10);
}
.tariff-button-gold {
  padding-right: 48px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff1bd 0%, #d5a45c 100%);
  box-shadow: 0 22px 54px rgba(219,183,120,.24);
}
.tariff-button-dark {
  padding-right: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0a1830 68%, var(--rose-deep));
  box-shadow: 0 18px 48px rgba(23,40,63,.22);
}
.lead-card { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 32px; padding: clamp(28px, 5vw, 58px); border: 1px solid rgba(255,255,255,.76); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,.48)); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.lead-copy p:not(.eyebrow) { max-width: 500px; font-size: 17px; color: rgba(29,45,64,.74); }
.lead-mini { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.lead-mini span { padding: 10px 12px; border-radius: 999px; background: rgba(255,255,255,.58); color: var(--navy); font-size: 13px; font-weight: 800; }
.lead-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hidden-field { display: none; }
.lead-form label { display: grid; gap: 8px; color: rgba(29,45,64,.66); font-size: 12px; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; }
.lead-form .wide, .lead-form .form-submit { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid rgba(23,40,63,.13); border-radius: 18px; outline: none; background: rgba(255,255,255,.78); color: var(--navy); padding: 16px 17px; box-shadow: inset 0 1px 0 rgba(255,255,255,.8); transition: background .18s ease, border-color .18s ease, box-shadow .18s ease; }
textarea { min-height: 118px; resize: vertical; }
input:focus, select:focus, textarea:focus { background: rgba(255,255,255,.96); border-color: rgba(233,120,183,.62); box-shadow: 0 0 0 4px rgba(233,120,183,.14); }
.faq-list { max-width: 880px; display: grid; gap: 14px; }
.faq-list details { overflow: hidden; border: 1px solid rgba(255,255,255,.76); border-radius: 24px; background: rgba(255,255,255,.70); box-shadow: var(--shadow-soft); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 23px 26px; color: var(--navy); font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; color: #fff; background: var(--navy); font-size: 20px; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 26px 24px; color: rgba(29,45,64,.72); }
.footer { padding: 38px 0 110px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px; border: 1px solid rgba(255,255,255,.76); border-radius: 28px; background: rgba(255,255,255,.58); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px); }
.footer img { width: 230px; margin-bottom: 8px; }
.footer p { margin: 0; color: rgba(29,45,64,.64); font-size: 14px; }
.footer a { color: var(--navy); font-weight: 800; }
.mobile-cta { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s ease; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .2s; }
.reveal.is-visible { opacity: 1; transform: none; }
.thanks-page { min-height: 100svh; display: grid; place-items: center; padding: 24px; }
.thanks-card { width: min(760px, 100%); padding: clamp(30px, 6vw, 62px); text-align: center; border: 1px solid rgba(255,255,255,.78); border-radius: 42px; background: rgba(255,255,255,.72); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.thanks-card img { width: min(330px, 86%); margin: 0 auto 30px; }
.thanks-card h1 { font-size: clamp(46px, 7vw, 78px); }
.thanks-card p { max-width: 560px; margin: 20px auto 30px; color: rgba(29,45,64,.72); }

/* Typography refinement: premium serif for emotional hierarchy + clean modern Cyrillic UI */
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-weight: 400; letter-spacing: -0.006em; }
.nav, .button, .hero-credentials span, .eyebrow, .tariff-label, .tariff-kicker, .tariff-mark, .popular, .tariff-price-row span, .tariff-fit, .lead-form label, input, select, textarea, .guide-tags span, .lead-mini span, .intro-panel span { font-family: var(--font-ui); }
h1, h2, .hero-titleline, .price, .float-badge strong, .credential-list strong, .timeline article::after, .compare-points span, .tariff h3, .thanks-card h1 { font-family: var(--font-heading); }
h1 { font-weight: 600; line-height: .88; letter-spacing: -.035em; text-wrap: balance; }
h2 { font-weight: 600; line-height: .96; letter-spacing: -.032em; text-wrap: balance; }
h3 { font-family: var(--font-ui); font-weight: 800; letter-spacing: -.018em; }
p { font-weight: 400; letter-spacing: -.003em; }
.hero-titleline { font-weight: 600; line-height: 1.06; letter-spacing: -.026em; text-wrap: balance; }
.hero-lead, .section-head p:not(.eyebrow), .large, .compare-card p, .lead-copy p:not(.eyebrow) { line-height: 1.78; }
.eyebrow { font-weight: 800; letter-spacing: .135em; }
.nav { font-weight: 700; letter-spacing: .005em; }
.button { font-weight: 800; letter-spacing: -.004em; }
.button small { font-weight: 500; letter-spacing: .002em; }
.hero-credentials span, .lead-mini span, .guide-tags span { font-weight: 700; letter-spacing: -.004em; }
.intro-panel strong, .compare-points strong, .faq-list summary { font-weight: 700; letter-spacing: -.014em; }
.tariff h3 { font-family: var(--font-heading); font-weight: 600; letter-spacing: -.025em; }
.price { font-weight: 700; letter-spacing: -.035em; }
.tariff li, .tariff-desc, .problem-card p, .timeline p, .credential-list span { font-weight: 400; }
input, select, textarea { font-weight: 500; letter-spacing: -.006em; }

@media (max-width: 1080px) {
  .nav { gap: 2px; font-size: 12px; }
  .nav a { padding: 11px 10px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy, .hero-lead, .hero-titleline { margin-left: auto; margin-right: auto; }
  .hero-credentials, .hero-actions { justify-content: center; }
  .hero-media { min-height: 560px; max-width: 650px; margin: 0 auto; }
  .intro-panel, .problem-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .expert-grid, .compare-card, .guide-panel, .lead-card { grid-template-columns: 1fr; }
  .expert-copy { text-align: center; }
  .credential-list { text-align: left; }
  .tariffs { grid-template-columns: 1fr; max-width: 680px; }
  .tariff-featured { transform: none; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 22px, var(--container)); }
  .header { top: 8px; margin-bottom: -72px; }
  .header-inner { min-height: 64px; padding: 9px 10px 9px 12px; border-radius: 24px; }
  .brand { width: min(226px, calc(100vw - 90px)); }
  .burger { display: block; flex: 0 0 auto; }
  .nav { position: fixed; top: 84px; left: 10px; right: 10px; display: grid; gap: 8px; padding: 14px; border: 1px solid rgba(255,255,255,.78); border-radius: 24px; background: rgba(255,255,255,.90); box-shadow: var(--shadow); backdrop-filter: blur(24px); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease; }
  .nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav a { width: 100%; text-align: center; padding: 15px; background: rgba(255,255,255,.62); }
  .nav .nav-cta { margin-left: 0; }
  .hero { padding: 112px 0 44px; }
  h1 { font-size: clamp(58px, 17vw, 76px); }
  h2 { font-size: clamp(38px, 11vw, 50px); }
  .eyebrow { font-size: 11px; letter-spacing: .13em; }
  .eyebrow::before { width: 28px; }
  .hero-titleline { font-size: clamp(30px, 9vw, 40px); }
  .hero-lead, .section-head p:not(.eyebrow), .large, .compare-card p, .lead-copy p:not(.eyebrow) { font-size: 16px; }
  .hero-credentials, .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; min-height: 58px; }
  .hero-media { min-height: 448px; }
  .portrait-card { min-height: 430px; }
  .portrait-card::before { inset: 22px 0 0; border-radius: 48% 48% 28px 28px / 38% 38% 28px 28px; }
  .portrait-halo { width: 310px; top: 26px; }
  .hero-photo { width: min(345px, 91%); }
  .float-badge { width: 154px; padding: 12px 14px; border-radius: 18px; }
  .float-badge strong { font-size: 27px; }
  .float-badge span { font-size: 11px; }
  .float-badge-top { top: 42px; right: -4px; }
  .float-badge-bottom { bottom: 38px; left: -2px; }
  .intro-panel, .problem-grid, .timeline, .credential-list, .lead-form { grid-template-columns: 1fr; }
  .section, .section.compact { padding: 58px 0; }
  .problem-card { min-height: auto; padding: 24px; }
  .expert-photo { min-height: 520px; }
  .expert-photo img { width: min(342px, 92%); }
  .expert-copy { text-align: left; }
  .compare-card, .guide-panel, .lead-card { padding: 24px; border-radius: 30px; }
  .compare-points div { padding: 20px 18px 20px 76px; }
  .compare-points span { left: 18px; top: 20px; }
  .timeline article { min-height: auto; }
  .timeline span { margin-bottom: 50px; }
  .tariff { padding: 26px 24px; }
  .tariff-desc { min-height: auto; }
  .popular { max-width: calc(100% - 30px); white-space: normal; text-align: center; }
  .lead-form .wide, .lead-form .form-submit { grid-column: auto; }
  .footer { padding-bottom: 96px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer img { width: 200px; }
  .mobile-cta { position: fixed; z-index: 60; left: 10px; right: 10px; bottom: 10px; display: block; }
  .mobile-cta .button { min-height: 54px; box-shadow: 0 18px 46px rgba(23,40,63,.26); }
}
@media (max-width: 420px) {
  .float-badge { width: 142px; }
  .float-badge-top { right: -8px; }
  .float-badge-bottom { left: -8px; }
  .hero-media { min-height: 420px; }
}

@media (max-width: 760px) {
  body { letter-spacing: -0.004em; }
  h1 { font-size: clamp(52px, 15vw, 70px); line-height: .92; letter-spacing: -.03em; }
  h2 { font-size: clamp(36px, 10.5vw, 48px); line-height: 1; letter-spacing: -.028em; }
  h3 { letter-spacing: -.012em; }
  .hero-titleline { font-size: clamp(29px, 8.4vw, 38px); line-height: 1.08; }
  .hero-lead, .section-head p:not(.eyebrow), .large, .compare-card p, .lead-copy p:not(.eyebrow) { line-height: 1.68; }
  .button { font-weight: 800; }
  .price { font-size: clamp(46px, 14vw, 58px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .tariffs { gap: 18px; }
  .tariff-featured:hover { transform: none; }
}
@media (max-width: 760px) {
  .tariffs { margin-top: 32px; }
  .tariff, .tariff:hover, .tariff-featured, .tariff-featured:hover { transform: none; }
  .tariff { padding: 24px 20px 22px; border-radius: 28px; }
  .tariff-head { gap: 12px; margin-bottom: 12px; }
  .tariff h3 { font-size: 36px; }
  .tariff-mark { min-width: 50px; height: 50px; font-size: 10px; }
  .tariff-desc { min-height: auto; }
  .tariff-price-row { margin: 16px 0; padding: 18px 0 16px; }
  .tariff-fit { padding: 14px; border-radius: 18px; }
  .tariff-button { min-height: 66px; border-radius: 17px; }
}

/* Updated tariff block: payment links + cleaner premium cards */
.tariff-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.tariff-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(169,132,103,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: rgba(23,40,63,.74);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(23,40,63,.055);
  backdrop-filter: blur(16px);
}
.tariff-trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--gold-light));
  box-shadow: 0 0 0 4px rgba(233,120,183,.10);
}
.tariff-self {
  background:
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.64)),
    radial-gradient(circle at 100% 0%, rgba(255,248,170,.28), transparent 34%);
}
.tariff-vip {
  border-color: rgba(169,132,103,.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,248,239,.68)),
    radial-gradient(circle at 100% 0%, rgba(219,183,120,.24), transparent 38%);
}
.tariff-featured {
  border-color: rgba(219,183,120,.50);
}
.tariff-price-row {
  border-radius: 22px;
  padding: 19px 18px 17px;
  border: 1px solid rgba(169,132,103,.18);
  background: rgba(255,255,255,.42);
}
.tariff-featured .tariff-price-row {
  border-color: rgba(219,183,120,.28);
  background: rgba(255,255,255,.08);
}
.tariff-fit {
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.34));
}
.tariff-featured .tariff-fit {
  background: rgba(255,255,255,.09);
}
.tariff-button {
  margin-top: auto;
  border-radius: 20px;
  min-height: 72px;
  transform: translateZ(0);
}
.tariff-button span,
.tariff-button small {
  padding-right: 24px;
}
.tariff-button-light:hover,
.tariff-button-gold:hover,
.tariff-button-dark:hover {
  filter: saturate(1.04) contrast(1.01);
}
.tariff-button-light {
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,248,239,.72));
}
.tariff-button-gold {
  background: linear-gradient(135deg, #fff4c4 0%, #d6a35b 100%);
}
.tariff-button-dark {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1830 68%, #b45c99 100%);
}

@media (max-width: 1080px) {
  .tariff-trust-row { max-width: 710px; }
}
@media (max-width: 760px) {
  .tariff-trust-row {
    justify-content: flex-start;
    margin-top: 18px;
  }
  .tariff-trust-row span {
    width: 100%;
    justify-content: flex-start;
  }
  .tariff-price-row {
    padding: 17px 16px 15px;
  }
  .tariff-button {
    min-height: 68px;
  }
}

/* Final tariff checkout polish */
.tariffs {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.08fr) minmax(0, .98fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 30px;
}
.tariff-trust-row span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff1bd, #d5a45c);
  font-size: 11px;
  box-shadow: none;
}
.tariff {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
}
.tariff-calm,
.tariff-vip {
  border: 1px solid rgba(255,255,255,.74);
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
  box-shadow: 0 24px 70px rgba(23,40,63,.095);
  backdrop-filter: blur(20px);
}
.tariff-vip {
  border-color: rgba(169,132,103,.36);
  background:
    radial-gradient(circle at top right, rgba(219,183,120,.20), transparent 33%),
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,248,239,.72));
}
.tariff-featured {
  padding: 0;
  transform: translateY(-12px);
  border: 1px solid rgba(219,183,120,.54);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(219,183,120,.35), transparent 34%),
    radial-gradient(circle at 0% 20%, rgba(233,120,183,.22), transparent 30%),
    linear-gradient(150deg, #17283f 0%, #0a1830 100%);
  box-shadow: 0 36px 105px rgba(23,40,63,.30);
}
.tariff-head {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 31px 30px 24px;
}
.tariff-featured .tariff-head { padding-top: 50px; }
.plan-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(169,132,103,.28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.38));
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: .06em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.80), 0 12px 28px rgba(23,40,63,.07);
}
.tariff-featured .plan-mark {
  border-color: rgba(219,183,120,.55);
  background: rgba(255,255,255,.09);
  color: var(--gold-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 14px 30px rgba(0,0,0,.20);
}
.tariff-label {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.35;
}
.tariff-featured .tariff-label { color: var(--gold-light); }
.tariff h3 {
  margin-top: 8px;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.7vw, 44px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.03em;
}
.tariff-featured h3 { color: #fff; }
.price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 0 30px;
  margin: 0 0 16px;
}
.price-wrap .price {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(50px, 5.4vw, 70px);
  line-height: .88;
}
.tariff-featured .price-wrap .price { color: #fff; }
.currency {
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 900;
}
.tariff-featured .currency { color: var(--gold-light); }
.tariff-desc {
  min-height: 108px;
  padding: 0 30px;
  margin: 0 0 18px;
  color: rgba(29,45,64,.70);
  font-size: 15px;
  line-height: 1.65;
}
.tariff-featured .tariff-desc { color: rgba(255,255,255,.76); }
.support-level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 30px 18px;
  padding: 14px 15px;
  border: 1px solid rgba(169,132,103,.24);
  border-radius: 20px;
  background: rgba(255,255,255,.54);
}
.support-level span {
  color: rgba(29,45,64,.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.support-level strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}
.tariff-featured .support-level {
  border-color: rgba(219,183,120,.32);
  background: rgba(255,255,255,.08);
}
.tariff-featured .support-level span { color: rgba(255,255,255,.58); }
.tariff-featured .support-level strong { color: #fff; }
.muted-support strong { color: rgba(29,45,64,.55); }
.vip-support strong { color: var(--gold); }
.tariff ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px 30px 26px;
  border-top: 1px solid rgba(23,40,63,.09);
}
.tariff-featured ul { border-top-color: rgba(255,255,255,.13); }
.tariff li {
  position: relative;
  padding-left: 29px;
  color: rgba(29,45,64,.80);
  line-height: 1.45;
  font-size: 15px;
}
.tariff-featured li { color: rgba(255,255,255,.84); }
.tariff li::before {
  content: "✓" !important;
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}
.tariff li::after { content: none !important; }
.tariff-featured li::before {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff0bc, #d7a65b);
}
.tariff-buy {
  position: relative;
  width: calc(100% - 60px) !important;
  min-height: 66px;
  margin: auto 30px 30px !important;
  padding: 14px 50px 14px 22px;
  border-radius: 19px;
  overflow: hidden;
}
.tariff-buy::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  opacity: .8;
  transition: transform .18s ease;
}
.tariff-buy:hover::after { transform: translate(4px, -50%); }
.tariff-buy span { font-size: 15px; }
.tariff-buy small { opacity: .86; }
.tariff-featured .button-gold {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #ffe7ad, #c99650);
  box-shadow: 0 20px 48px rgba(219,183,120,.28);
}
.tariff-vip .button-plan {
  color: #fff;
  border-color: rgba(23,40,63,.12);
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: 0 18px 46px rgba(23,40,63,.22);
}
@media (max-width: 1080px) {
  .tariffs { grid-template-columns: 1fr; max-width: 710px; }
  .tariff-featured,
  .tariff-featured:hover,
  .tariff:hover { transform: none; }
  .tariff-desc { min-height: auto; }
}
@media (max-width: 760px) {
  .tariff-trust-row { justify-content: flex-start; margin-top: 18px; }
  .tariff-trust-row span { width: 100%; justify-content: flex-start; }
  .tariffs { margin-top: 22px; gap: 16px; }
  .tariff { border-radius: 28px; }
  .popular { top: 12px; max-width: calc(100% - 28px); white-space: normal; text-align: center; font-size: 10px; }
  .tariff-head { grid-template-columns: 44px 1fr; gap: 12px; padding: 26px 22px 20px; }
  .tariff-featured .tariff-head { padding-top: 52px; }
  .plan-mark { width: 44px; height: 44px; border-radius: 15px; }
  .tariff h3 { font-size: clamp(32px, 10vw, 40px); }
  .price-wrap { padding: 0 22px; }
  .price-wrap .price { font-size: clamp(48px, 14vw, 62px); }
  .currency { font-size: 22px; }
  .tariff-desc { padding: 0 22px; }
  .support-level { display: grid; margin: 0 22px 16px; }
  .support-level strong { text-align: left; }
  .tariff ul { padding: 20px 22px 24px; }
  .tariff-buy { width: calc(100% - 44px) !important; margin: auto 22px 24px !important; }
}


/* Personal support emphasis for tariff choice */
.section-head strong {
  color: var(--navy-deep);
  font-weight: 900;
}
.support-note {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(219,183,120,.36);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 0%, rgba(233,120,183,.12), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,248,239,.56));
  box-shadow: 0 24px 70px rgba(23,40,63,.10);
  backdrop-filter: blur(20px);
}
.support-note-main {
  min-height: 100%;
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(23,40,63,.98), rgba(10,24,48,.98));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.support-note-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.support-note-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.support-note h3 {
  max-width: 560px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.03em;
}
.support-note-main p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.7;
}
.support-note-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.support-pill {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 4px 16px;
  align-items: center;
  min-height: 92px;
  padding: 17px 18px;
  border: 1px solid rgba(169,132,103,.22);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 12px 30px rgba(23,40,63,.065);
}
.support-pill::after {
  content: "лично";
  position: absolute;
  right: 16px;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff1bd, #d5a45c);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.support-pill span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.support-pill strong {
  padding-right: 72px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}
.support-pill small {
  padding-right: 72px;
  color: rgba(29,45,64,.62);
  font-size: 13px;
  line-height: 1.45;
}
.support-pill-muted {
  opacity: .92;
  background: rgba(255,255,255,.50);
}
.support-pill-muted::after {
  content: "без ведения";
  color: rgba(29,45,64,.62);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(23,40,63,.10);
}
.support-pill-muted span { color: rgba(169,132,103,.72); }
.support-pill-vip {
  border-color: rgba(169,132,103,.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(219,183,120,.20), transparent 34%),
    rgba(255,255,255,.72);
}
.tariff-featured .support-level,
.tariff-vip .support-level {
  box-shadow: 0 12px 30px rgba(23,40,63,.08);
}
.tariff-featured .support-level strong::before,
.tariff-vip .support-level strong::before {
  content: "★ ";
  color: var(--gold-light);
}
.tariff-calm .support-level strong::before {
  content: "— ";
}
@media (max-width: 1080px) {
  .support-note { grid-template-columns: 1fr; max-width: 710px; }
}
@media (max-width: 760px) {
  .support-note {
    margin-top: 18px;
    padding: 12px;
    border-radius: 28px;
  }
  .support-note-main {
    padding: 24px 22px;
    border-radius: 22px;
  }
  .support-note h3 { font-size: clamp(32px, 9.5vw, 42px); }
  .support-note-main p { font-size: 15px; line-height: 1.64; }
  .support-pill {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 52px 16px 16px;
    border-radius: 22px;
  }
  .support-pill span { grid-row: auto; font-size: 30px; }
  .support-pill strong, .support-pill small { padding-right: 0; }
  .support-pill::after { left: 16px; right: auto; top: 16px; }
}

/* Polish pass: cleaner photo presentation, text containment, direct email form */
* { min-width: 0; }
html, body { max-width: 100%; overflow-x: hidden; }
h1, h2, h3, p, li, summary, .button span, .button small, .tariff-label, .popular, .support-pill strong, .support-pill small, .support-level strong { overflow-wrap: break-word; }
.button span, .button small { display: block; max-width: 100%; }
.nav a, .hero-credentials span, .tariff-buy, .lead-mini span, .guide-tags span, .tariff-trust-row span { white-space: normal; }
.hero-credentials span, .tariff-trust-row span { text-align: center; justify-content: center; }

/* Photos: no rough transparent edges; images are placed as premium studio portraits */
.portrait-card {
  width: min(100%, 545px);
  min-height: unset !important;
  aspect-ratio: .72;
  align-items: stretch;
  justify-content: stretch;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.80);
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.42)),
    radial-gradient(circle at 12% 0%, rgba(255,248,170,.26), transparent 36%),
    radial-gradient(circle at 100% 84%, rgba(233,120,183,.18), transparent 34%);
  box-shadow: 0 34px 105px rgba(23,40,63,.17);
  backdrop-filter: blur(22px);
}
.portrait-card::before {
  inset: 15px;
  z-index: 0;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.60);
  backdrop-filter: none;
  pointer-events: none;
}
.portrait-halo { z-index: 1; top: 24px; width: 78%; opacity: .72; }
.hero-photo {
  position: relative;
  z-index: 2;
  width: 100% !important;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  border-radius: 35px;
  filter: none !important;
  box-shadow: 0 24px 58px rgba(23,40,63,.16);
}
.float-badge {
  max-width: min(184px, calc(100% - 22px));
  overflow: hidden;
}
.float-badge-top { top: 36px; right: -18px; }
.float-badge-bottom { bottom: 34px; left: -18px; }

.expert-photo {
  min-height: unset !important;
  align-items: stretch;
  justify-content: stretch;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 46px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,248,170,.22), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.74), rgba(255,255,255,.42));
  box-shadow: 0 30px 94px rgba(23,40,63,.13);
  backdrop-filter: blur(22px);
}
.photo-plate {
  inset: 15px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.60);
  pointer-events: none;
}
.photo-plate::before { display: none; }
.expert-photo img {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: clamp(560px, 58vw, 710px);
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  filter: none !important;
  box-shadow: 0 22px 58px rgba(23,40,63,.14);
}

/* Tariffs and cards: prevent long Russian labels from leaving boundaries */
.support-note, .support-note-main, .support-note-pills, .support-pill, .tariff, .lead-card, .soft-card, .compare-card, .guide-panel, .intro-panel div { overflow: hidden; }
.support-pill { grid-template-columns: minmax(86px, 96px) minmax(0, 1fr); }
.support-pill span { white-space: normal; line-height: 1; }
.support-pill strong, .support-pill small { min-width: 0; }
.tariff-buy {
  padding-right: 44px;
  gap: 4px;
}
.tariff-buy::after { right: 18px; }
.tariff-buy span { line-height: 1.18; }
.tariff-buy small { line-height: 1.25; }
.popular {
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}
.price-wrap { flex-wrap: nowrap; min-width: 0; }
.price-wrap .price { font-variant-numeric: lining-nums; }

.form-note {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  padding: 13px 15px;
  border: 1px solid rgba(169,132,103,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  color: rgba(29,45,64,.72);
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.form-note strong { color: var(--navy); font-weight: 900; }

@media (max-width: 1080px) {
  .portrait-card { max-width: 520px; margin: 0 auto; }
  .expert-photo { max-width: 620px; margin: 0 auto; }
  .expert-photo img { height: clamp(560px, 92vw, 760px); }
}
@media (max-width: 760px) {
  h1 { font-size: clamp(48px, 14vw, 66px); }
  h2 { font-size: clamp(34px, 9.6vw, 46px); }
  .hero-grid { gap: 28px; }
  .hero-media { min-height: unset !important; }
  .portrait-card {
    width: min(100%, 365px);
    aspect-ratio: .70;
    padding: 9px;
    border-radius: 34px;
  }
  .portrait-card::before { inset: 9px; border-radius: 25px; }
  .hero-photo { border-radius: 25px; object-position: center top; }
  .portrait-halo { display: none; }
  .float-badge {
    width: auto;
    max-width: 142px;
    padding: 10px 11px;
    border-radius: 16px;
  }
  .float-badge strong { font-size: 25px; }
  .float-badge span { font-size: 10.5px; }
  .float-badge-top { top: 18px; right: -4px; }
  .float-badge-bottom { bottom: 18px; left: -4px; }
  .expert-photo {
    padding: 9px;
    border-radius: 34px;
  }
  .photo-plate { inset: 9px; border-radius: 25px; }
  .expert-photo img {
    height: min(520px, 132vw);
    border-radius: 25px;
    object-position: center top;
  }
  .support-pill { grid-template-columns: 1fr; }
  .tariff-buy {
    min-height: 70px;
    padding: 13px 34px 13px 16px;
  }
  .tariff-buy::after { right: 13px; font-size: 18px; }
  .tariff-buy span { font-size: 14px; }
  .tariff-buy small { font-size: 11px; }
  .form-note { font-size: 12.5px; padding: 12px 13px; }
}
@media (max-width: 390px) {
  .container { width: min(100% - 18px, var(--container)); }
  .brand { width: min(202px, calc(100vw - 86px)); }
  .portrait-card { width: min(100%, 340px); }
  .float-badge { max-width: 126px; }
  .float-badge strong { font-size: 22px; }
  .float-badge span { font-size: 9.8px; }
  .price-wrap .price { font-size: clamp(42px, 13vw, 54px); }
}

/* Tariff CTA animation: gentle rocking buttons */
@keyframes tariffButtonRock {
  0%, 70%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  74% { transform: translate3d(0, -1px, 0) rotate(-1.4deg); }
  78% { transform: translate3d(0, -1px, 0) rotate(1.4deg); }
  82% { transform: translate3d(0, -1px, 0) rotate(-1deg); }
  86% { transform: translate3d(0, 0, 0) rotate(.6deg); }
  90% { transform: translate3d(0, 0, 0) rotate(0deg); }
}

@keyframes tariffButtonGlow {
  0%, 100% { box-shadow: 0 18px 46px rgba(23,40,63,.16), 0 0 0 rgba(233,120,183,0); }
  50% { box-shadow: 0 22px 58px rgba(23,40,63,.20), 0 0 0 7px rgba(233,120,183,.08); }
}

.tariff-buy {
  animation: tariffButtonRock 4.4s cubic-bezier(.25,.9,.28,1) infinite, tariffButtonGlow 3.4s ease-in-out infinite;
  transform-origin: 50% 50%;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

.tariff:nth-child(1) .tariff-buy { animation-delay: .15s, .15s; }
.tariff:nth-child(2) .tariff-buy { animation-delay: .55s, .35s; }
.tariff:nth-child(3) .tariff-buy { animation-delay: .95s, .55s; }

.tariff-buy:hover,
.tariff-buy:focus-visible {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.018) !important;
}

.tariff-buy:active {
  transform: translateY(0) scale(.99) !important;
}

@media (prefers-reduced-motion: reduce) {
  .tariff-buy {
    animation: none !important;
    will-change: auto;
  }
}

/* Expanded sales sections: medical trust, age, diagnostic, guidance, cases */
.medical-card,
.personal-card,
.diagnostic-grid,
.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}
.medical-card,
.personal-card,
.diagnostic-card,
.fit-card {
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.50));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.medical-card { padding: clamp(26px, 5vw, 54px); }
.medical-copy p { max-width: 760px; margin-bottom: 0; font-size: 17px; color: rgba(29,45,64,.78); }
.medical-alert {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(23,40,63,.96), rgba(10,24,48,.98));
  color: #fff;
  box-shadow: 0 24px 70px rgba(23,40,63,.22);
}
.medical-alert::before {
  content: "!";
  position: absolute;
  right: 22px;
  top: 14px;
  color: rgba(219,183,120,.22);
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 1;
}
.medical-alert strong { position: relative; display: block; margin-bottom: 12px; color: var(--gold-light); font-family: var(--font-heading); font-size: 34px; line-height: 1; }
.medical-alert p { position: relative; margin: 0; color: rgba(255,255,255,.80); font-size: 15px; }
.age-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}
.age-grid article,
.afterpay-grid article {
  min-height: 248px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(233,120,183,.12), transparent 34%),
    rgba(255,255,255,.66);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.age-grid span,
.afterpay-grid span,
.case-age {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255,245,173,.78), rgba(242,162,220,.52));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.age-grid h3,
.afterpay-grid h3 { margin-bottom: 10px; font-size: 24px; }
.age-grid p,
.afterpay-grid p { margin: 0; color: rgba(29,45,64,.68); font-size: 14.5px; line-height: 1.58; }
.personal-card {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,248,170,.30), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(233,120,183,.18), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.44));
}
.personal-main p { max-width: 640px; margin: 18px 0 28px; color: rgba(29,45,64,.78); font-size: 17px; }
.personal-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.personal-steps article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(23,40,63,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 12px 30px rgba(23,40,63,.06);
}
.personal-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: .8;
}
.personal-steps h3 { margin-bottom: 8px; font-size: 22px; }
.personal-steps p { margin: 0; color: rgba(29,45,64,.68); font-size: 14px; line-height: 1.55; }
.diagnostic-grid { align-items: center; }
.diagnostic-copy p { max-width: 640px; font-size: 17px; color: rgba(29,45,64,.76); }
.diagnostic-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(169,132,103,.26);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  color: rgba(29,45,64,.74);
  line-height: 1.6;
}
.diagnostic-note strong { color: var(--navy); }
.diagnostic-card {
  padding: clamp(20px, 4vw, 34px);
}
.quiz-options {
  display: grid;
  gap: 10px;
}
.quiz-options label {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(23,40,63,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.62);
  color: rgba(29,45,64,.82);
  font-weight: 700;
  line-height: 1.38;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.quiz-options label:hover { transform: translateY(-1px); border-color: rgba(169,132,103,.30); background: rgba(255,255,255,.82); }
.quiz-options input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--rose-deep);
}
.quiz-result {
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  box-shadow: 0 22px 60px rgba(23,40,63,.20);
  overflow: hidden;
}
.quiz-result.is-support { background: linear-gradient(145deg, #1a2d48, #0a1830 58%, #793f78); }
.quiz-result.is-vip { background: linear-gradient(145deg, #0a1830, #17283f 56%, #9f7342); }
.quiz-result > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.quiz-result h3 { color: #fff; margin-bottom: 10px; font-family: var(--font-heading); font-size: clamp(32px, 4vw, 44px); line-height: .95; }
.quiz-result p { margin: 0 0 18px; color: rgba(255,255,255,.78); }
.quiz-result .button { width: 100%; }
.afterpay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.afterpay-grid article { min-height: 222px; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.case-card {
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 30px;
  background: rgba(255,255,255,.66);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.case-card div:not(.case-age) {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(23,40,63,.09);
}
.case-card strong { display: block; margin-bottom: 5px; color: var(--navy); font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
.case-card p { margin: 0; color: rgba(29,45,64,.70); font-size: 14.5px; line-height: 1.62; }
.fit-grid { align-items: stretch; }
.fit-card {
  padding: clamp(26px, 4vw, 44px);
}
.fit-card h2 { font-size: clamp(34px, 4vw, 55px); }
.fit-card ul { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.fit-card li {
  position: relative;
  padding-left: 30px;
  color: rgba(29,45,64,.76);
  line-height: 1.55;
  font-weight: 600;
}
.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--rose));
  box-shadow: 0 0 0 5px rgba(233,120,183,.10);
}
.fit-no {
  background: linear-gradient(145deg, rgba(23,40,63,.96), rgba(10,24,48,.98));
}
.fit-no h2,
.fit-no .eyebrow { color: #fff; }
.fit-no .eyebrow { color: var(--gold-light); }
.fit-no li { color: rgba(255,255,255,.78); }
.fit-no li::before { background: linear-gradient(135deg, #fff3b4, #c99954); box-shadow: 0 0 0 5px rgba(255,255,255,.08); }

@media (max-width: 1180px) {
  .age-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tariffs { gap: 16px; }
}
@media (max-width: 980px) {
  .medical-card,
  .personal-card,
  .diagnostic-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .personal-steps,
  .afterpay-grid,
  .cases-grid { grid-template-columns: 1fr; }
  .age-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav a[href="#diagnostic"] { display: none; }
}
@media (max-width: 760px) {
  .medical-card,
  .personal-card,
  .diagnostic-card,
  .fit-card,
  .case-card,
  .afterpay-grid article,
  .age-grid article {
    border-radius: 26px;
  }
  .medical-card,
  .personal-card,
  .diagnostic-card,
  .fit-card { padding: 22px; }
  .medical-alert { padding: 22px; border-radius: 24px; }
  .medical-alert strong { font-size: 28px; }
  .age-grid { grid-template-columns: 1fr; gap: 12px; }
  .age-grid article,
  .afterpay-grid article { min-height: auto; padding: 20px; }
  .personal-steps { grid-template-columns: 1fr; gap: 10px; }
  .personal-steps article { min-height: auto; padding: 18px; }
  .quiz-options label { grid-template-columns: 24px minmax(0, 1fr); padding: 14px; font-size: 14px; }
  .quiz-options input { width: 20px; height: 20px; }
  .quiz-result { padding: 20px; border-radius: 24px; }
  .case-card { min-height: auto; padding: 22px; }
  .fit-card h2 { font-size: clamp(34px, 10vw, 44px); }
}


/* Final conversion additions: system block, sticky CTA, help popup, safer responsive typography */
.system-section { position: relative; }
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.system-grid article {
  min-height: 236px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.76), rgba(255,255,255,.48));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.system-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--rose-deep));
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
}
.system-grid h3 { margin-bottom: 9px; color: var(--navy); }
.system-grid p { margin: 0; color: rgba(29,45,64,.70); font-size: 15px; line-height: 1.65; }

.sticky-choice {
  position: fixed;
  z-index: 75;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  width: min(920px, calc(100% - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px 12px 12px 22px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 28px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 24px 70px rgba(23,40,63,.20);
  backdrop-filter: blur(22px);
  transform: translate(-50%, 130%);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s ease, opacity .32s ease;
}
.sticky-choice.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-choice-copy { min-width: 0; }
.sticky-choice-copy strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}
.sticky-choice-copy span {
  display: block;
  margin-top: 4px;
  color: rgba(29,45,64,.66);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}
.sticky-choice .button { min-width: 220px; min-height: 58px; }

.smart-pop {
  position: fixed;
  z-index: 80;
  right: max(18px, env(safe-area-inset-right));
  bottom: 104px;
  width: min(380px, calc(100% - 28px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,.80);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(233,120,183,.18), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  box-shadow: 0 26px 76px rgba(23,40,63,.24);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  pointer-events: none;
  transition: opacity .26s ease, transform .26s ease;
}
.smart-pop.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.smart-pop-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(23,40,63,.08);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.smart-pop .eyebrow { margin-bottom: 12px; font-size: 10px; }
.smart-pop h3 {
  margin: 0 34px 10px 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
}
.smart-pop p:not(.eyebrow) { margin: 0; color: rgba(29,45,64,.72); font-size: 14.5px; line-height: 1.58; }
.smart-pop-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.smart-pop-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 16px;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
}
.smart-pop-actions a:first-child { color: #fff; background: linear-gradient(135deg, var(--rose-deep), var(--rose)); box-shadow: 0 16px 36px rgba(233,120,183,.23); }
.smart-pop-actions a:last-child { color: var(--navy); background: rgba(255,255,255,.72); border: 1px solid rgba(23,40,63,.10); }

.button, .tariff, .soft-card, .lead-card, .diagnostic-card, .smart-pop, .sticky-choice, .system-grid article { overflow-wrap: anywhere; }

@media (max-width: 980px) {
  .system-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .system-grid { grid-template-columns: 1fr; gap: 12px; }
  .system-grid article { min-height: auto; padding: 22px; border-radius: 26px; }
  .sticky-choice {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
  }
  .sticky-choice-copy { display: none; }
  .sticky-choice .button { width: 100%; min-width: 0; min-height: 56px; }
  .smart-pop {
    left: 10px;
    right: 10px;
    bottom: 86px;
    width: auto;
    padding: 20px;
    border-radius: 26px;
  }
  .smart-pop h3 { font-size: 30px; }
  .smart-pop-actions { grid-template-columns: 1fr; }
  .footer { padding-bottom: 112px; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-choice, .smart-pop { transition: none !important; }
}


/* Age section refresh: soft salad accent */
.age-section-salad {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 10%, rgba(218, 247, 154, .42), transparent 34%),
    radial-gradient(circle at 94% 20%, rgba(197, 236, 122, .30), transparent 30%),
    linear-gradient(145deg, rgba(250, 255, 238, .84), rgba(255,255,255,.54));
}
.age-section-salad::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(148, 189, 90, .18);
  border-radius: 54px;
  pointer-events: none;
}
.age-section-salad .eyebrow { color: #6f8f31; }
.age-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: stretch;
  gap: clamp(18px, 4vw, 42px);
}
.age-copy { min-width: 0; }
.age-section-salad h2 {
  max-width: 850px;
  color: var(--navy-deep);
}
.age-lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(29,45,64,.78);
  font-size: 17px;
  line-height: 1.75;
}
.age-main-card {
  position: relative;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(148, 189, 90, .24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 94% 6%, rgba(255,255,255,.92), transparent 34%),
    linear-gradient(145deg, rgba(239, 255, 202, .92), rgba(255,255,255,.68));
  box-shadow: 0 24px 70px rgba(92, 123, 46, .13);
  overflow: hidden;
}
.age-main-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(197, 236, 122, .42);
  filter: blur(4px);
}
.age-main-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(111, 143, 49, .18);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: #597521;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.age-main-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-size: clamp(70px, 8vw, 108px);
  line-height: .82;
  letter-spacing: -.06em;
}
.age-main-card p {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(29,45,64,.74);
  font-size: 15px;
  line-height: 1.55;
}
.age-grid-refined {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.age-grid-refined article {
  position: relative;
  min-height: 238px;
  padding: 26px;
  border-color: rgba(148, 189, 90, .20);
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 249, 157, .36), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.54));
  box-shadow: 0 18px 50px rgba(92, 123, 46, .09);
}
.age-grid-refined article::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(197, 236, 122, .95), rgba(255, 245, 173, .85));
}
.age-grid-refined span {
  color: #21334a;
  background: linear-gradient(135deg, rgba(232, 255, 181, .94), rgba(202, 239, 128, .62));
  border: 1px solid rgba(148, 189, 90, .18);
}
.age-grid-refined h3 {
  color: var(--navy);
  font-size: 25px;
  letter-spacing: -.02em;
}
.age-grid-refined p {
  color: rgba(29,45,64,.72);
  font-size: 15px;
  line-height: 1.62;
}
.age-note {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid rgba(148, 189, 90, .22);
  border-radius: 30px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 14px 44px rgba(92,123,46,.08);
  backdrop-filter: blur(16px);
}
.age-note strong {
  color: #597521;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.03em;
}
.age-note p {
  margin: 0;
  color: rgba(29,45,64,.72);
  font-size: 15px;
  line-height: 1.62;
}
@media (max-width: 1180px) {
  .age-grid-refined { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .age-section-salad::before { inset: 14px; border-radius: 34px; }
  .age-shell { grid-template-columns: 1fr; }
  .age-main-card { min-height: auto; }
  .age-grid-refined { grid-template-columns: 1fr; }
  .age-note { grid-template-columns: 1fr; padding: 20px; }
  .age-note strong { font-size: 28px; }
}
@media (max-width: 520px) {
  .age-main-card strong { font-size: clamp(62px, 21vw, 92px); }
  .age-grid-refined article { padding: 22px; }
  .age-grid-refined h3 { font-size: 23px; }
}

/* Promo updates: self-study discount + limited VIP slot */
.tariff-sale {
  border-color: rgba(233,120,183,.30);
  background:
    radial-gradient(circle at 8% 0%, rgba(233,120,183,.13), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(255,248,170,.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.90), rgba(255,255,255,.66));
}
.tariff-limited {
  border-color: rgba(169,132,103,.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(219,183,120,.28), transparent 34%),
    radial-gradient(circle at 6% 0%, rgba(233,120,183,.10), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.90), rgba(255,248,239,.74));
}
.tariff-promo {
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
  box-shadow: 0 14px 30px rgba(23,40,63,.10);
}
.tariff-promo-sale {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
}
.tariff-promo-vip {
  color: var(--navy-deep);
  border: 1px solid rgba(169,132,103,.26);
  background: linear-gradient(135deg, #fff2c2, #d8aa65);
}
.tariff-sale .tariff-head,
.tariff-limited .tariff-head {
  padding-top: 70px;
}
.price-stack {
  display: grid;
  gap: 7px;
  padding: 0 30px;
  margin: 0 0 16px;
}
.price-stack .price-wrap {
  padding: 0;
  margin: 0;
  align-items: flex-start;
}
.old-price {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: rgba(104,115,134,.82);
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
}
.old-price::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
  transform: rotate(-5deg);
}
.price-note {
  width: max-content;
  max-width: 100%;
  padding: 7px 11px;
  border: 1px solid rgba(233,120,183,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: rgba(23,40,63,.70);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}
.vip-note {
  border-color: rgba(169,132,103,.26);
  color: var(--navy);
  background: rgba(255,248,239,.72);
}
.tariff-sale .tariff-buy {
  background: linear-gradient(135deg, #fff7fb, #ffffff 38%, rgba(233,120,183,.24));
  border-color: rgba(233,120,183,.28);
  box-shadow: 0 18px 46px rgba(233,120,183,.16), 0 12px 34px rgba(23,40,63,.08);
}
.tariff-limited .tariff-buy {
  box-shadow: 0 18px 46px rgba(23,40,63,.22), 0 12px 36px rgba(219,183,120,.16);
}
.tariff-sale .support-level {
  border-color: rgba(233,120,183,.20);
  background: rgba(255,255,255,.62);
}
.tariff-limited .support-level {
  border-color: rgba(169,132,103,.30);
  background: rgba(255,255,255,.62);
}
.sticky-choice-copy span {
  line-height: 1.32;
}

@media (max-width: 760px) {
  .tariff-promo {
    top: 14px;
    left: 22px;
    right: 22px;
    min-height: 32px;
    padding: 7px 12px;
    font-size: 9.8px;
    letter-spacing: .08em;
  }
  .tariff-sale .tariff-head,
  .tariff-limited .tariff-head {
    padding-top: 62px;
  }
  .price-stack {
    padding: 0 22px;
    gap: 6px;
  }
  .old-price {
    font-size: 16px;
  }
  .price-note {
    width: 100%;
    border-radius: 16px;
    font-size: 11.5px;
    text-align: center;
  }
}


/* Foreign payment buttons + legal footer update */
.tariff .button-stripe,
.tariff .tariff-stripe {
  width: calc(100% - 60px);
  margin: 0 30px 30px !important;
  min-height: 60px;
  border: 1px solid rgba(23, 40, 63, .18);
  background: linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,255,255,.68));
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(23,40,63,.08);
}
.tariff .tariff-buy + .tariff-stripe {
  margin-top: -16px !important;
}
.tariff-featured .button-stripe,
.tariff-featured .tariff-stripe {
  border-color: rgba(255,255,255,.24);
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
}
.tariff-stripe span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tariff-stripe small {
  font-size: 11px;
  opacity: .72;
  text-transform: none;
  letter-spacing: 0;
}
.globe-icon {
  width: 28px;
  height: 28px;
  display: inline-grid !important;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 0 0 1px rgba(23,40,63,.08), 0 8px 18px rgba(23,40,63,.08);
  font-size: 16px;
  line-height: 1;
}
.tariff-featured .globe-icon {
  background: rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), 0 8px 18px rgba(0,0,0,.16);
}
.footer-brand-block { max-width: 760px; }
.footer-legal {
  margin-top: 8px !important;
  color: rgba(29,45,64,.72) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}
.footer-legal a {
  color: var(--navy) !important;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(169,132,103,.45);
  text-underline-offset: 4px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(23,40,63,.10);
}
@media (max-width: 980px) {
  .tariff .button-stripe,
  .tariff .tariff-stripe {
    width: calc(100% - 44px) !important;
    margin: 0 22px 24px !important;
  }
  .tariff .tariff-buy + .tariff-stripe {
    margin-top: -10px !important;
  }
}
@media (max-width: 680px) {
  .tariff-stripe span { font-size: 12px; letter-spacing: .035em; }
  .tariff-stripe small { font-size: 10.5px; }
  .globe-icon { width: 25px; height: 25px; font-size: 15px; }
  .footer-links { justify-content: flex-start; }
}

/* Bugfix pass: text containment, tariff stability, stable icons */
html, body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
.container,
.hero-grid,
.tariffs,
.tariff,
.tariff-head > div,
.support-level,
.support-note,
.age-shell,
.age-grid-refined article,
.timeline article,
.button,
.tariff-buy,
.tariff-stripe {
  min-width: 0;
}
/* Long Russian phrases must wrap inside cards, not outside them. */
h1, h2, h3, h4, p, li, span, strong, small, a, label, input, select, textarea, button {
  overflow-wrap: break-word;
  word-break: normal;
}
.price,
.price-wrap,
.old-price,
.currency,
.plan-mark,
.globe-icon,
.tariff-promo,
.popular,
.tariff-label,
.case-age,
.age-grid-refined span,
.afterpay-grid span {
  overflow-wrap: normal;
}
/* Keep hero badges inside the photo card so they cannot create horizontal scroll. */
.float-badge-top { right: 18px; }
.float-badge-bottom { left: 18px; }
.portrait-card,
.hero-media,
.expert-photo {
  max-width: 100%;
}
.hero-photo,
.expert-photo img {
  max-width: 100%;
}
/* Icons: no shifting, no accidental font fallback boxes. */
.icon,
.plan-mark,
.tariff li::before,
.tariff-trust-row span::before,
.globe-icon {
  flex: 0 0 auto;
}
.globe-icon {
  color: currentColor;
  background: rgba(255,255,255,.82);
}
.globe-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tariff-featured .globe-icon svg {
  color: #fff;
}
/* Cleaner tariff cards: prevent text overflow in the middle card and badges. */
.tariffs {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1fr);
}
.tariff {
  contain: layout paint;
}
.popular {
  top: 16px;
  left: 30px;
  right: 30px;
  transform: none;
  max-width: none;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.15;
}
.tariff-featured .tariff-head {
  padding-top: 78px;
}
.tariff h3 {
  overflow-wrap: anywhere;
}
.tariff-desc {
  min-height: 0 !important;
  line-height: 1.55;
}
.tariff-featured .tariff-desc {
  padding-right: 28px;
}
.support-level {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}
.support-level strong {
  max-width: 100%;
  line-height: 1.35;
}
.tariff ul {
  gap: 11px;
}
.tariff li {
  line-height: 1.42;
  overflow-wrap: break-word;
}
.tariff-buy,
.tariff-stripe {
  white-space: normal;
  text-align: center;
}
.tariff-buy span,
.tariff-stripe span {
  max-width: 100%;
  line-height: 1.2;
}
.tariff-buy small,
.tariff-stripe small {
  line-height: 1.2;
}
.tariff-stripe span {
  letter-spacing: .025em;
}
/* Decorative large numbers and old price should not create scroll width. */
.timeline article,
.age-main-card {
  overflow: hidden;
}
.old-price {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
}
/* Tiny layout corrections for badges and pills. */
.tariff-trust-row span,
.support-pill,
.lead-mini span,
.case-age {
  min-width: 0;
}
@media (max-width: 1180px) {
  .tariffs { grid-template-columns: 1fr; max-width: 720px; }
  .tariff-featured,
  .tariff-featured:hover,
  .tariff:hover { transform: none !important; }
}
@media (max-width: 760px) {
  html, body { overflow-x: hidden; }
  .float-badge-top { right: 10px; }
  .float-badge-bottom { left: 10px; }
  .popular {
    top: 14px;
    left: 22px;
    right: 22px;
    font-size: 9.6px;
    letter-spacing: .06em;
    padding: 8px 12px;
  }
  .tariff-featured .tariff-head { padding-top: 70px; }
  .tariff-head {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .tariff-label {
    font-size: 9.8px;
    letter-spacing: .09em;
  }
  .tariff h3 {
    font-size: clamp(30px, 9.5vw, 38px);
    line-height: 1.02;
  }
  .price-wrap .price {
    font-size: clamp(44px, 13vw, 58px);
  }
  .support-level {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .support-level strong { text-align: left; }
  .tariff .button-stripe,
  .tariff .tariff-stripe {
    min-height: 58px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .tariff-stripe span {
    font-size: 11.4px;
    letter-spacing: .01em;
    gap: 7px;
  }
  .tariff-stripe small { font-size: 10px; }
  .globe-icon { width: 24px; height: 24px; }
  .globe-icon svg { width: 15px; height: 15px; }
}
@media (max-width: 390px) {
  .container { width: min(100% - 16px, var(--container)); }
  .tariff-promo { font-size: 9px; }
  .tariff h3 { font-size: clamp(28px, 9vw, 34px); }
  .tariff-buy span { font-size: 13px; }
  .tariff-stripe span { font-size: 10.7px; }
}

/* Final micro-polish for headings and decorative overflow */
.tariff-featured h3 {
  font-size: clamp(32px, 3.05vw, 39px);
  line-height: 1.02;
}
.age-main-card strong {
  font-size: clamp(64px, 7.2vw, 96px);
  letter-spacing: -.045em;
}
.timeline article::after {
  right: 10px;
  bottom: -18px;
  font-size: 92px;
}
@media (max-width: 760px) {
  .tariff-featured h3 { font-size: clamp(32px, 8.4vw, 36px); }
  .age-main-card strong {
    font-size: clamp(56px, 17vw, 82px);
    letter-spacing: -.04em;
  }
  .timeline article::after { right: 8px; font-size: 76px; }
}
@media (max-width: 340px) {
  .tariff-featured h3 { font-size: 30px; }
  .tariff-label { letter-spacing: .07em; }
  .age-main-card strong { font-size: 54px; }
}

/* Last desktop title adjustment: keep the self-study plan title elegant and inside the card */
@media (min-width: 1081px) {
  .tariff-calm h3 { font-size: clamp(30px, 2.35vw, 34px) !important; line-height: 1.06; }
}


/* Free book CTA: night waking lead magnet + logo fit */
.button-book-mini {
  color: var(--navy-deep);
  border: 1px solid rgba(169,132,103,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,245,173,.54));
  box-shadow: 0 14px 36px rgba(23,40,63,.08), 0 14px 36px rgba(201,153,84,.12);
}
.button-book-mini span::before {
  content: "↓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  line-height: 1;
}
.free-book-section {
  padding: 46px 0 78px;
  margin-top: -1px;
  background:
    radial-gradient(circle at 7% 0%, rgba(255,245,173,.28), transparent 31%),
    radial-gradient(circle at 94% 20%, rgba(197,236,122,.22), transparent 28%);
}
.free-book-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, .86fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,248,239,.54)),
    radial-gradient(circle at 100% 0%, rgba(219,183,120,.22), transparent 34%);
  box-shadow: 0 30px 92px rgba(23,40,63,.14);
  backdrop-filter: blur(22px);
  overflow: hidden;
}
.free-book-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(169,132,103,.16);
  border-radius: calc(var(--radius-xl) - 16px);
  pointer-events: none;
}
.free-book-copy,
.free-book-visual {
  position: relative;
  z-index: 1;
}
.free-book-copy h2 {
  max-width: 780px;
  font-size: clamp(40px, 5vw, 74px);
  line-height: .92;
  letter-spacing: -.035em;
}
.free-book-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(29,45,64,.74);
  font-size: 17px;
  line-height: 1.74;
}
.free-book-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}
.free-book-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(169,132,103,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: rgba(23,40,63,.76);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(23,40,63,.055);
}
.free-book-points span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff1bd, #d5a45c);
  font-size: 11px;
}
.free-book-button {
  width: min(360px, 100%);
  min-height: 72px;
}
.free-book-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.book-cover {
  position: relative;
  width: min(300px, 88%);
  min-height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px;
  border-radius: 26px 32px 32px 26px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,245,173,.34), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(233,120,183,.30), transparent 42%),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
  box-shadow: 0 34px 78px rgba(23,40,63,.30);
  transform: rotateY(-14deg) rotateZ(-3deg);
  transform-origin: center;
}
.book-cover::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(255,255,255,.18);
}
.book-cover::after {
  content: "☾";
  position: absolute;
  right: 24px;
  top: 98px;
  color: rgba(255,245,173,.30);
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 1;
}
.book-cover span {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.book-cover strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 230px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.03em;
}
.book-cover small {
  color: rgba(255,255,255,.68);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
}
.book-shadow {
  position: absolute;
  bottom: 32px;
  width: 250px;
  height: 36px;
  border-radius: 50%;
  background: rgba(23,40,63,.20);
  filter: blur(14px);
  transform: rotate(-4deg);
}
.brand img,
.footer img {
  overflow: visible;
}
@media (max-width: 1080px) {
  .nav a[href="#free-book"] { display: none; }
  .free-book-card { grid-template-columns: 1fr; text-align: center; }
  .free-book-copy h2,
  .free-book-copy p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .free-book-points { justify-content: center; }
  .free-book-button { margin-left: auto; margin-right: auto; }
  .free-book-visual { min-height: 360px; }
  .book-cover { transform: rotateZ(-2deg); }
}
@media (max-width: 760px) {
  .free-book-section { padding: 44px 0 64px; }
  .free-book-card { padding: 26px; border-radius: 32px; }
  .free-book-card::before { inset: 10px; border-radius: 24px; }
  .free-book-copy h2 { font-size: clamp(36px, 10.4vw, 48px); line-height: 1; }
  .free-book-copy p:not(.eyebrow) { font-size: 16px; line-height: 1.68; }
  .free-book-points { justify-content: flex-start; }
  .free-book-points span { width: 100%; justify-content: flex-start; }
  .free-book-visual { min-height: 332px; }
  .book-cover { width: min(280px, 92%); min-height: 342px; padding: 26px 24px; border-radius: 24px; }
  .book-cover strong { font-size: 36px; }
}
@media (max-width: 390px) {
  .free-book-card { padding: 22px 18px; }
  .book-cover { min-height: 322px; }
  .book-cover strong { font-size: 32px; }
}

/* Online consultations block */
.consults-section {
  position: relative;
  padding-top: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(46px, 6vw, 90px);
  background:
    radial-gradient(circle at 9% 10%, rgba(255,255,255,.92), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(216,236,180,.42), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,250,245,.56));
  overflow: hidden;
}
.consults-section::before {
  content: "";
  position: absolute;
  inset: 28px auto auto -120px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(233,120,183,.20), transparent 66%);
  pointer-events: none;
}
.consults-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 90px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216,236,180,.42), transparent 64%);
  pointer-events: none;
}
.consults-hero,
.consults-grid { position: relative; z-index: 1; }
.consults-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(20px, 3.4vw, 42px);
  align-items: stretch;
  padding: clamp(26px, 4.6vw, 56px);
  border: 1px solid rgba(169,132,103,.24);
  border-radius: clamp(34px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,247,239,.72)),
    url("img/pastel-gradient.webp") center/cover no-repeat;
  box-shadow: 0 28px 80px rgba(23,40,63,.10);
  overflow: hidden;
  isolation: isolate;
}
.consults-hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: calc(clamp(34px, 4vw, 56px) - 12px);
  pointer-events: none;
  z-index: -1;
}
.consults-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.consults-copy h2 {
  max-width: 920px;
  font-size: clamp(38px, 5vw, 78px);
  line-height: .94;
  letter-spacing: -.045em;
}
.consults-lead {
  max-width: 860px;
  margin: 20px 0 0;
  color: rgba(29,45,64,.84);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
}
.consults-lead strong {
  color: var(--navy-deep);
  font-weight: 900;
}
.consults-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.consults-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 10px 13px;
  border: 1px solid rgba(23,40,63,.10);
  border-radius: 999px;
  color: rgba(29,45,64,.78);
  background: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 0 12px 28px rgba(23,40,63,.06);
  overflow-wrap: anywhere;
}
.consults-highlights strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
}
.consults-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 12%, rgba(219,183,120,.32), transparent 38%),
    linear-gradient(145deg, #0a213e, #112f52 62%, #071a32);
  box-shadow: 0 24px 62px rgba(8,28,52,.22);
  overflow: hidden;
}
.consults-panel .consults-badge-icon,
.call-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 22px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, rgba(255,239,197,.98), rgba(216,236,180,.78));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.70), 0 14px 30px rgba(23,40,63,.12);
}
.consults-panel .consults-badge-icon {
  color: #fff;
  background: linear-gradient(135deg, rgba(219,183,120,.95), rgba(233,120,183,.60));
}
.consults-badge-icon svg,
.call-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.consults-panel strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: .98;
  letter-spacing: -.035em;
}
.consults-panel small {
  color: rgba(255,255,255,.76);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.button-consult-main {
  width: 100%;
  margin-top: 8px;
  min-height: 72px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff4cf, var(--gold-light) 62%, #d2a45b);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}
.consults-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
  margin-top: clamp(24px, 3.4vw, 38px);
}
.consult-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: clamp(22px, 2.7vw, 34px);
  border: 1px solid rgba(169,132,103,.20);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72)),
    radial-gradient(circle at 100% 0%, rgba(255,230,173,.30), transparent 35%);
  box-shadow: 0 20px 54px rgba(23,40,63,.09);
  overflow: hidden;
  isolation: isolate;
}
.consult-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), rgba(233,120,183,.68), rgba(196,224,154,.72));
  z-index: -1;
}
.consult-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -54px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216,236,180,.34), transparent 68%);
  z-index: -1;
}
.consult-card-gold {
  background:
    linear-gradient(180deg, rgba(255,255,255,.89), rgba(255,247,226,.78)),
    radial-gradient(circle at 100% 0%, rgba(219,183,120,.28), transparent 38%);
  border-color: rgba(219,183,120,.42);
}
.consult-card-emerald {
  background:
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(239,249,220,.80)),
    radial-gradient(circle at 100% 0%, rgba(196,224,154,.36), transparent 40%);
  border-color: rgba(153,190,117,.46);
}
.consult-card-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
}
.consult-card-top > div { min-width: 0; }
.consult-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.consult-card h3 {
  max-width: 100%;
  font-family: var(--font-heading);
  font-size: clamp(31px, 3.1vw, 45px);
  line-height: .95;
  letter-spacing: -.04em;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.consult-card p {
  margin: 0;
  color: rgba(29,45,64,.82);
  font-size: 15px;
  line-height: 1.72;
  overflow-wrap: break-word;
}
.consult-format-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.consult-format-row span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--navy-deep);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(23,40,63,.09);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(23,40,63,.05);
  overflow-wrap: anywhere;
}
.consult-format-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(219,183,120,.16);
  flex: 0 0 auto;
}
.consult-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.consult-card li {
  position: relative;
  padding-left: 25px;
  color: rgba(29,45,64,.86);
  font-size: 14.5px;
  line-height: 1.5;
  overflow-wrap: break-word;
}
.consult-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 28%, var(--gold-light) 31% 100%);
  box-shadow: 0 0 0 3px rgba(219,183,120,.18);
}
.video-icon {
  color: #0f2740;
  background: linear-gradient(135deg, rgba(233,120,183,.24), rgba(255,230,173,.86));
}
.consult-limited {
  align-self: flex-start;
  max-width: 100%;
  margin: -4px 0 -2px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy-deep);
  background: rgba(216,236,180,.86);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.button-consult {
  margin-top: auto;
  width: 100%;
  min-height: 68px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #102444 58%, var(--gold));
  box-shadow: 0 18px 44px rgba(23,40,63,.18);
}
.button-consult span,
.button-consult small,
.button-consult-main span,
.button-consult-main small {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.button-consult-gold {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff0c9, #d2a45b);
}
.button-consult-emerald {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #eef9d3, #c6dd8c 62%, #e6c27d);
}
@media (max-width: 980px) {
  .consults-hero { grid-template-columns: 1fr; }
  .consults-panel { max-width: 560px; }
}
@media (max-width: 860px) {
  .consults-grid { grid-template-columns: 1fr; gap: 16px; }
  .consult-card { border-radius: 30px; }
}
@media (max-width: 520px) {
  .consults-section { padding-top: 42px; }
  .consults-hero { padding: 22px; border-radius: 34px; }
  .consults-hero::before { inset: 9px; border-radius: 26px; }
  .consults-copy h2 { font-size: clamp(38px, 11.6vw, 50px); }
  .consults-lead { font-size: 15.5px; line-height: 1.66; }
  .consults-highlights { gap: 8px; }
  .consults-highlights span { width: 100%; justify-content: flex-start; }
  .consults-panel { padding: 20px; border-radius: 28px; }
  .consults-panel strong { font-size: 30px; }
  .consult-card { padding: 22px 18px; border-radius: 28px; }
  .consult-card-top { gap: 12px; align-items: flex-start; }
  .call-icon, .consults-panel .consults-badge-icon { width: 52px; height: 52px; border-radius: 20px; }
  .call-icon svg, .consults-badge-icon svg { width: 28px; height: 28px; }
  .consult-card h3 { font-size: clamp(29px, 9vw, 36px); }
  .consult-card p, .consult-card li { font-size: 14px; }
  .button-consult, .button-consult-main { min-height: 68px; padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 360px) {
  .consult-card-top { grid-template-columns: 1fr; }
  .call-icon { width: 48px; height: 48px; }
}

/* --- July update: single-site service chooser + refreshed professional photos --- */
.hero-actions-choice {
  align-items: stretch;
}
.hero-actions-choice > * {
  flex: 1 1 250px;
}
.hero-actions-choice .hero-choice-button {
  min-height: 74px;
  padding: 18px 26px;
}
.hero-actions-choice .hero-choice-button span {
  font-size: 17px;
}
.hero-choice-note {
  margin: 16px 0 0;
  color: rgba(23,40,63,.74);
  font-size: 14px;
  line-height: 1.6;
}
.hero-choice-note a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.expert-photo-real {
  min-height: 720px;
  align-items: stretch;
}
.expert-photo-real .photo-plate {
  inset: 0;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.84), rgba(255,255,255,.48));
}
.expert-photo-real img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 42px;
  filter: none;
}
.expert-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(23,40,63,.14);
}
.expert-badge strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.expert-badge span {
  display: block;
  margin-top: 6px;
  color: rgba(29,45,64,.68);
  font-size: 13px;
  line-height: 1.45;
}

.medical-inline-photo {
  margin: 26px 0 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.82);
  background: rgba(255,255,255,.64);
  box-shadow: 0 18px 48px rgba(23,40,63,.12);
}
.medical-inline-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 14%;
}
.medical-inline-photo figcaption {
  padding: 14px 18px 18px;
  color: rgba(29,45,64,.66);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .hero-actions-choice {
    justify-content: center;
  }
  .expert-photo-real {
    min-height: 620px;
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .hero-choice-note {
    text-align: center;
  }
  .hero-actions-choice .hero-choice-button span {
    font-size: 16px;
  }
  .expert-photo-real {
    min-height: 520px;
  }
  .expert-photo-real img {
    border-radius: 28px;
    object-position: center top;
  }
  .expert-photo-real .photo-plate {
    border-radius: 30px;
  }
  .expert-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }
  .medical-inline-photo img {
    aspect-ratio: 3 / 4;
    object-position: center top;
  }
}

/* --- Design refinement: premium service selection and cleaner one-site layout --- */
:root {
  --sage: #dceec5;
  --sage-deep: #8da76e;
  --champagne: #f4dfba;
}

.header-inner {
  border-color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.66);
}
.nav .nav-cta {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy), #b6824d);
}

.hero { padding-bottom: 42px; }
.hero-copy { position: relative; z-index: 4; }
.hero-service-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
}
.service-choice-card {
  position: relative;
  min-height: 206px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 24px 24px 22px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.82);
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,255,255,.50)),
    radial-gradient(circle at 84% 12%, rgba(233,120,183,.18), transparent 34%);
  box-shadow: 0 22px 64px rgba(23,40,63,.13);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-choice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 82px rgba(23,40,63,.17);
  border-color: rgba(169,132,103,.40);
}
.service-choice-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -54px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(233,120,183,.12);
}
.service-choice-call {
  background:
    linear-gradient(145deg, rgba(23,40,63,.96), rgba(10,24,48,.94)),
    radial-gradient(circle at 84% 12%, rgba(219,183,120,.24), transparent 34%);
  color: #fff;
  border-color: rgba(255,255,255,.20);
}
.service-choice-call::after { background: rgba(219,183,120,.16); }
.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255,242,184,.95), rgba(238,148,202,.66));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.80), 0 12px 32px rgba(23,40,63,.10);
}
.service-choice-call .service-icon {
  color: #fff;
  background: linear-gradient(135deg, #d8aa62, #e978b7);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}
.service-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.service-choice-call .service-kicker { color: var(--gold-light); }
.service-choice-card strong {
  position: relative;
  z-index: 1;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: .98;
  letter-spacing: -.03em;
}
.service-choice-call strong { color: #fff; }
.service-choice-card small {
  position: relative;
  z-index: 1;
  max-width: 430px;
  color: rgba(29,45,64,.68);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}
.service-choice-call small { color: rgba(255,255,255,.74); }
.service-choice-card em {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--rose-deep);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}
.service-choice-call em { color: var(--gold-light); }
.hero-under-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 13px;
  margin-top: 16px;
  color: rgba(23,40,63,.62);
  font-size: 14px;
  font-weight: 700;
}
.hero-under-actions a {
  color: var(--navy);
  font-weight: 900;
  border-bottom: 1px solid rgba(23,40,63,.26);
}
.hero-under-actions .book-link {
  color: var(--rose-deep);
  border-bottom-color: rgba(201,85,153,.30);
}

.portrait-card::before {
  background:
    linear-gradient(150deg, rgba(255,255,255,.82), rgba(255,255,255,.32)),
    radial-gradient(circle at 50% 18%, rgba(255,244,186,.36), transparent 34%);
}
.float-badge {
  border-color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.80);
}
.intro-panel {
  margin-top: 24px;
  background: rgba(255,255,255,.58);
}

/* professional photo cards */
.expert-photo-real {
  border-radius: 44px;
  box-shadow: 0 34px 110px rgba(23,40,63,.18);
}
.expert-photo-real .photo-plate {
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.expert-photo-real img { box-shadow: none; }
.expert-badge {
  display: grid;
  gap: 3px;
}
.medical-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.58)),
    radial-gradient(circle at 0 100%, rgba(220,238,197,.42), transparent 34%);
}
.medical-inline-photo {
  max-width: 520px;
}
.medical-inline-photo img { filter: saturate(1.02) contrast(1.02); }
.medical-alert {
  background:
    linear-gradient(145deg, rgba(23,40,63,.98), rgba(10,24,48,.96)),
    radial-gradient(circle at 100% 0%, rgba(220,238,197,.20), transparent 30%);
}

/* Tariff polish */
.tariffs-section .section-head p {
  max-width: 820px;
}
.tariff {
  border-color: rgba(255,255,255,.86);
}
.tariff-head h3 { letter-spacing: -.02em; }
.tariff-featured {
  background:
    linear-gradient(180deg, rgba(10,24,48,.98), rgba(23,40,63,.96)),
    radial-gradient(circle at 50% 0%, rgba(219,183,120,.28), transparent 36%);
  box-shadow: 0 34px 95px rgba(23,40,63,.24);
}
.tariff-featured .button-gold {
  box-shadow: 0 18px 52px rgba(219,183,120,.32);
}
.button-stripe {
  border-style: dashed;
  border-color: rgba(23,40,63,.20);
  background: rgba(255,255,255,.72);
}
.tariff-featured .button-stripe {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
}

/* Consultation section: more expensive, clearer, less visual noise */
.consults-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,248,239,.52)),
    radial-gradient(circle at 14% 10%, rgba(220,238,197,.42), transparent 25%),
    radial-gradient(circle at 86% 24%, rgba(233,120,183,.18), transparent 26%);
}
.consults-hero {
  border-radius: 46px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.82);
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,255,255,.56)),
    radial-gradient(circle at 100% 0%, rgba(220,238,197,.56), transparent 32%);
  box-shadow: 0 34px 105px rgba(23,40,63,.14);
}
.consults-copy h2 {
  max-width: 820px;
}
.consults-panel {
  background:
    linear-gradient(145deg, rgba(23,40,63,.98), rgba(10,24,48,.96)),
    radial-gradient(circle at 80% 0%, rgba(219,183,120,.22), transparent 34%);
  border-color: rgba(255,255,255,.18);
}
.consults-badge-icon {
  background: linear-gradient(135deg, rgba(219,183,120,.96), rgba(233,120,183,.84));
}
.consults-grid {
  margin-top: 24px;
}
.consult-card {
  border-color: rgba(255,255,255,.86);
  background:
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.68)),
    radial-gradient(circle at 100% 0%, rgba(220,238,197,.30), transparent 34%);
  box-shadow: 0 20px 58px rgba(23,40,63,.10);
}
.consult-card::before {
  opacity: .9;
}
.consult-card-gold {
  background:
    linear-gradient(180deg, rgba(255,252,242,.94), rgba(255,255,255,.70)),
    radial-gradient(circle at 100% 0%, rgba(219,183,120,.34), transparent 36%);
}
.consult-card-emerald {
  background:
    linear-gradient(180deg, rgba(23,40,63,.98), rgba(10,24,48,.96)),
    radial-gradient(circle at 92% 0%, rgba(220,238,197,.24), transparent 34%);
}
.consult-card h3 {
  font-family: var(--font-heading);
  font-size: 31px;
  letter-spacing: -.03em;
}
.consult-format-row span {
  border-radius: 999px;
}
.call-icon {
  box-shadow: 0 14px 34px rgba(23,40,63,.12);
}
.button-consult, .button-consult-main {
  letter-spacing: .01em;
}

/* better sticky CTA for all services */
.sticky-choice {
  border-radius: 30px;
  border-color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.82);
}
.sticky-choice .button span { font-size: 15px; }

@media (max-width: 1140px) {
  .hero-service-panel { grid-template-columns: 1fr; }
  .service-choice-card { min-height: 176px; }
}

@media (max-width: 1024px) {
  .hero-service-panel {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-under-actions { justify-content: center; }
}

@media (max-width: 767px) {
  .hero { padding-top: 122px; }
  .hero-service-panel {
    gap: 12px;
    margin-top: 26px;
  }
  .service-choice-card {
    min-height: 0;
    padding: 20px;
    border-radius: 26px;
  }
  .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
  }
  .service-choice-card strong {
    font-size: 30px;
  }
  .service-choice-card small {
    font-size: 13px;
  }
  .hero-under-actions {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .hero-under-actions span { display: none; }
  .intro-panel { margin-top: 16px; }
  .expert-photo-real { min-height: 560px; }
  .expert-badge strong { font-size: 12px; }
  .medical-inline-photo {
    max-width: none;
    border-radius: 24px;
  }
  .consults-hero {
    border-radius: 32px;
    padding: 24px 18px;
  }
  .consult-card h3 { font-size: 28px; }
  .sticky-choice {
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 380px) {
  .service-choice-card strong { font-size: 27px; }
  .service-choice-card em { font-size: 12px; }
}

/* --- Corrections requested by Tatiana: clearer course content, feedback formats, smaller medical photo --- */
.hero-titleline span {
  color: var(--gold);
  white-space: nowrap;
}
.hero-service-panel {
  align-items: stretch;
}
.service-choice-card strong {
  overflow-wrap: anywhere;
}
.book-link {
  font-weight: 900;
}
.free-book-card h2 {
  max-width: 790px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: .98;
}
.book-cover strong {
  font-size: clamp(29px, 4.1vw, 48px);
  line-height: .95;
}

/* Program week icons: move markers away from text */
.timeline article {
  padding-top: 28px;
}
.timeline span {
  display: inline-flex;
  min-height: 36px;
  margin-bottom: 34px;
  padding-right: 56px;
}
.timeline span::after {
  left: auto;
  right: 22px;
  top: 22px;
  width: 38px;
  height: 38px;
  border-width: 5px;
  box-shadow: 0 10px 22px rgba(23,40,63,.09);
}
.timeline h3,
.timeline p {
  position: relative;
  z-index: 2;
}

/* Detailed course contents */
.inside-course-section {
  overflow: hidden;
}
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}
.inside-grid article {
  position: relative;
  min-height: 235px;
  padding: 26px 24px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.82);
  background:
    linear-gradient(160deg, rgba(255,255,255,.86), rgba(255,255,255,.62)),
    radial-gradient(circle at 95% 0%, rgba(220,238,197,.38), transparent 35%);
  box-shadow: 0 18px 48px rgba(23,40,63,.09);
  overflow: hidden;
}
.inside-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,120,183,.16), transparent 68%);
}
.inside-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(220,238,197,.95), rgba(255,239,176,.92));
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.78);
}
.inside-grid h3 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 30px;
  letter-spacing: -.03em;
}
.inside-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(29,45,64,.70);
  font-size: 15px;
}

/* Medical section readability: smaller image, more text space */
.medical-section .medical-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 300px) minmax(0, .95fr);
  gap: clamp(20px, 3.2vw, 34px);
  align-items: center;
}
.medical-section .medical-copy h2 {
  font-size: clamp(38px, 4.4vw, 64px);
}
.medical-section .medical-copy p {
  font-size: 16.5px;
  line-height: 1.72;
}
.medical-small-photo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 24px;
  align-self: center;
}
.medical-small-photo img {
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  object-position: center 9%;
}
.medical-small-photo figcaption {
  padding: 11px 14px 14px;
  font-size: 12px;
  text-align: center;
}
.medical-section .medical-alert {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tariffs: clearer feedback wording */
.tariff .support-level strong,
.support-pill strong {
  overflow-wrap: anywhere;
}
.tariff ul li {
  line-height: 1.42;
}

/* Consultations intentionally placed at the end */
.consults-section {
  margin-top: 0;
  border-top: 1px solid rgba(23,40,63,.08);
}

@media (max-width: 1100px) {
  .medical-section .medical-card {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  }
  .medical-section .medical-alert {
    grid-column: 1 / -1;
  }
  .inside-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-titleline span {
    white-space: normal;
  }
  .free-book-card h2 {
    font-size: clamp(30px, 10vw, 46px);
  }
  .timeline span {
    margin-bottom: 24px;
    padding-right: 48px;
  }
  .timeline span::after {
    width: 32px;
    height: 32px;
    right: 18px;
    top: 20px;
    border-width: 4px;
  }
  .inside-grid {
    grid-template-columns: 1fr;
  }
  .inside-grid article {
    min-height: 0;
    padding: 22px;
    border-radius: 24px;
  }
  .inside-grid h3 {
    font-size: 27px;
  }
  .medical-section .medical-card {
    grid-template-columns: 1fr;
  }
  .medical-small-photo {
    max-width: 260px;
    justify-self: center;
  }
  .medical-section .medical-alert {
    min-height: auto;
  }
}

/* --- Final spacing and text alignment pass: desktop + mobile --- */
html, body {
  max-width: 100%;
}
body, .section, .soft-card, .tariff, .consult-card, .fit-card, .personal-card, .medical-card, .free-book-card, .lead-card, .compare-card, .guide-panel, .diagnostic-card, .case-card, .inside-grid article, .timeline article, .afterpay-grid article, .system-grid article, .age-grid article, .credential-list div {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
section[id] {
  scroll-margin-top: 105px;
}
.section {
  padding-top: clamp(54px, 6.4vw, 78px);
  padding-bottom: clamp(54px, 6.4vw, 78px);
}
.section.compact {
  padding-top: clamp(44px, 5.2vw, 64px);
  padding-bottom: clamp(44px, 5.2vw, 64px);
}
.hero {
  padding-bottom: clamp(34px, 4vw, 48px);
}
.hero::after {
  opacity: .55;
}
.section + .section,
.section-white + .section-white {
  margin-top: 0;
}
.section-head {
  max-width: 840px;
}
.section-head p:not(.eyebrow) {
  margin-top: 16px;
  line-height: 1.62;
}
h1, h2, h3, p, li, a, button, small, span, strong {
  text-wrap: pretty;
}

/* Make cards visually even and keep texts inside */
.problem-card,
.timeline article,
.inside-grid article,
.system-grid article,
.case-card,
.age-grid article,
.afterpay-grid article,
.consult-card,
.tariff,
.fit-card,
.credential-list div {
  min-width: 0;
}
.problem-card,
.timeline article,
.inside-grid article,
.consult-card,
.tariff,
.fit-card,
.afterpay-grid article {
  display: flex;
  flex-direction: column;
}
.tariff p,
.tariff li,
.consult-card p,
.consult-card li,
.inside-grid p,
.timeline p,
.afterpay-grid p,
.case-card p,
.problem-card p {
  max-width: 100%;
  line-height: 1.58;
}
.tariff ul,
.consult-card ul {
  padding-left: 0;
  margin-left: 0;
}
.tariff ul li,
.consult-card ul li {
  padding-left: 24px;
}
.tariff .button,
.consult-card .button {
  width: 100%;
  margin-top: auto;
  white-space: normal;
}
.tariff .button + .button,
.consult-card .button + .button {
  margin-top: 12px;
}
.button span,
.button small {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Hero: less empty height, better text rhythm */
.hero-grid {
  align-items: center;
}
.hero-titleline {
  max-width: 720px;
  line-height: 1.04;
}
.hero-lead {
  margin-top: 18px;
  line-height: 1.62;
}
.hero-credentials {
  margin-top: 22px;
}
.hero-service-panel {
  margin-top: 26px;
  gap: 14px;
}
.service-choice-card {
  justify-content: flex-start;
  gap: 9px;
}
.service-choice-card small,
.service-choice-card em {
  line-height: 1.4;
}
.hero-under-actions {
  margin-top: 16px;
  line-height: 1.45;
}
.hero-media {
  min-height: clamp(520px, 48vw, 640px);
}
.portrait-card {
  min-height: clamp(500px, 47vw, 620px);
}
.hero-photo {
  width: min(440px, 90%);
}
.intro-panel {
  margin-top: 12px;
}

/* Program block: week icon no longer touches text */
.timeline {
  margin-top: 30px;
  gap: 14px;
}
.timeline article {
  min-height: 0;
  padding: 22px 22px 24px;
}
.timeline span {
  width: 100%;
  min-height: 40px;
  margin-bottom: 22px;
  padding: 0 54px 0 0;
  align-items: center;
  line-height: 1.25;
}
.timeline span::after {
  top: 20px;
  right: 20px;
  left: auto;
}
.timeline h3 {
  margin-bottom: 10px;
  font-size: clamp(23px, 2.2vw, 28px);
  line-height: 1.05;
}
.timeline p {
  font-size: 14.5px;
}

/* Course contents: reduce empty gaps and align text */
.inside-grid {
  margin-top: 30px;
  gap: 14px;
}
.inside-grid article {
  min-height: 0;
  padding: 23px 22px 22px;
}
.inside-grid span {
  flex: 0 0 auto;
  margin-bottom: 16px;
}
.inside-grid h3 {
  min-height: 2.1em;
  margin-bottom: 10px;
  line-height: 1.05;
}

/* Medical section: more compact and readable */
.medical-section {
  padding-top: clamp(48px, 5.5vw, 70px);
  padding-bottom: clamp(48px, 5.5vw, 70px);
}
.medical-section .medical-card {
  padding: clamp(24px, 3.6vw, 42px);
  gap: clamp(18px, 2.6vw, 28px);
  align-items: center;
}
.medical-section .medical-copy h2 {
  margin-bottom: 14px;
  line-height: .98;
}
.medical-section .medical-copy p {
  max-width: 680px;
  margin-top: 0;
}
.medical-small-photo {
  max-width: 250px;
}
.medical-small-photo img {
  aspect-ratio: 4 / 5;
}
.medical-section .medical-alert {
  padding: clamp(22px, 3vw, 30px);
}
.medical-alert strong {
  font-size: clamp(28px, 3vw, 36px);
}
.medical-alert p {
  line-height: 1.62;
}

/* Tariffs: equal rhythm, no overflowing middle card */
.tariff {
  padding: clamp(24px, 2.7vw, 30px);
}
.tariff-head {
  align-items: flex-start;
  gap: 13px;
}
.tariff-label,
.tariff-desc,
.price-note,
.support-level,
.tariff li {
  overflow-wrap: break-word;
}
.tariff-desc {
  margin-top: 14px;
  margin-bottom: 16px;
}
.support-level {
  align-items: flex-start;
  gap: 8px;
}
.support-level strong {
  line-height: 1.2;
}
.price-wrap {
  flex-wrap: wrap;
}
.tariff-featured .price,
.tariff-featured .currency,
.tariff-featured .tariff-desc,
.tariff-featured li,
.tariff-featured .support-level span,
.tariff-featured .support-level strong {
  overflow-wrap: anywhere;
}
.tariff-featured .button-gold span,
.tariff-featured .button-stripe span {
  overflow-wrap: anywhere;
}
.tariff-trust-row,
.support-note,
.support-note-pills,
.support-pill {
  min-width: 0;
}
.support-note {
  padding: clamp(20px, 3vw, 28px);
}

/* Lead / FAQ / consultations: tighter vertical rhythm */
.afterpay-grid,
.cases-grid,
.system-grid,
.age-grid,
.consults-grid,
.problem-grid,
.credential-list {
  gap: 14px;
}
.lead-section,
.consults-section {
  padding-top: clamp(50px, 5.8vw, 74px);
  padding-bottom: clamp(54px, 6.4vw, 80px);
}
.faq-list {
  margin-top: 28px;
}
.faq-list details {
  margin-bottom: 10px;
}
.consults-hero {
  gap: clamp(20px, 3vw, 30px);
  padding: clamp(24px, 4vw, 44px);
}
.consults-copy h2 {
  line-height: .98;
}
.consults-lead {
  line-height: 1.62;
}
.consult-card {
  min-height: 0;
  padding: clamp(22px, 2.6vw, 28px);
}
.consult-card-top {
  align-items: flex-start;
}
.consult-card h3 {
  line-height: 1.05;
}
.consult-format-row {
  gap: 8px;
}
.consult-format-row span {
  white-space: normal;
}

@media (max-width: 1180px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
  .tariffs {
    gap: 16px;
  }
  .tariff {
    padding: 24px 20px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .section.compact {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero-media {
    min-height: 540px;
  }
  .intro-panel {
    grid-template-columns: 1fr;
  }
  .timeline,
  .tariffs,
  .problem-grid,
  .cases-grid,
  .afterpay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tariff-featured {
    transform: none;
  }
  .tariff-featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, var(--container));
  }
  .header {
    top: 8px;
    margin-bottom: -74px;
  }
  .header-inner {
    min-height: 62px;
    padding: 9px 10px 9px 14px;
  }
  .brand {
    width: min(230px, 68vw);
  }
  .hero {
    padding-top: 106px;
    padding-bottom: 30px;
  }
  h1 {
    font-size: clamp(54px, 18vw, 76px);
    line-height: .88;
  }
  h2 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: .96;
  }
  h3 {
    line-height: 1.12;
  }
  p, li {
    line-height: 1.58;
  }
  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: .12em;
  }
  .hero-titleline {
    margin-top: 14px;
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.04;
  }
  .hero-lead {
    margin-top: 14px;
    font-size: 16px;
  }
  .hero-credentials {
    margin-top: 18px;
    gap: 8px;
  }
  .hero-credentials span {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .hero-service-panel {
    margin-top: 20px;
  }
  .service-choice-card {
    padding: 18px 16px;
    gap: 7px;
    text-align: left;
  }
  .service-choice-card strong {
    font-size: clamp(25px, 8.5vw, 34px);
    line-height: 1.02;
  }
  .service-choice-card small,
  .service-choice-card em {
    font-size: 12.5px;
  }
  .service-icon {
    width: 46px;
    height: 46px;
  }
  .hero-media {
    min-height: 400px;
    margin-top: 8px;
  }
  .portrait-card {
    min-height: 392px;
  }
  .portrait-card::before {
    inset: 20px 0 0;
  }
  .portrait-halo {
    width: min(310px, 86vw);
    top: 28px;
  }
  .hero-photo {
    width: min(310px, 86%);
  }
  .float-badge {
    width: 136px;
    padding: 11px 12px;
    border-radius: 18px;
  }
  .float-badge strong {
    font-size: 25px;
  }
  .float-badge span {
    font-size: 10.5px;
  }
  .float-badge-top { top: 46px; right: 2px; }
  .float-badge-bottom { bottom: 42px; left: 2px; }
  .intro-panel {
    margin-top: 4px;
    padding: 8px;
    border-radius: 24px;
  }
  .intro-panel div {
    padding: 18px;
    border-radius: 18px;
  }
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .section.compact {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .section-head p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 15.5px;
  }
  .free-book-card,
  .guide-panel,
  .compare-card,
  .personal-card,
  .diagnostic-grid,
  .lead-card,
  .medical-section .medical-card,
  .consults-hero {
    border-radius: 26px;
  }
  .problem-grid,
  .timeline,
  .tariffs,
  .inside-grid,
  .cases-grid,
  .afterpay-grid,
  .system-grid,
  .age-grid,
  .consults-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .problem-card,
  .timeline article,
  .inside-grid article,
  .case-card,
  .afterpay-grid article,
  .consult-card,
  .tariff,
  .fit-card {
    padding: 20px;
    border-radius: 22px;
  }
  .timeline span {
    min-height: 34px;
    margin-bottom: 16px;
  }
  .timeline span::after {
    top: 17px;
    right: 17px;
  }
  .inside-grid h3 {
    min-height: 0;
  }
  .medical-section .medical-card {
    gap: 18px;
    padding: 20px;
  }
  .medical-small-photo {
    max-width: min(220px, 72vw);
  }
  .medical-small-photo figcaption {
    padding: 9px 12px 12px;
  }
  .medical-alert::before {
    font-size: 74px;
  }
  .tariff-head h3,
  .consult-card h3 {
    font-size: 27px;
  }
  .price {
    font-size: clamp(48px, 15vw, 62px);
  }
  .currency {
    font-size: 24px;
  }
  .support-note-pills {
    grid-template-columns: 1fr;
  }
  .lead-form {
    gap: 12px;
  }
  .button {
    min-height: 58px;
    padding: 13px 18px;
  }
  .sticky-choice {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 20px, var(--container));
  }
  .brand {
    width: min(206px, 66vw);
  }
  .service-choice-card {
    padding: 16px 14px;
  }
  .hero-media {
    min-height: 370px;
  }
  .portrait-card {
    min-height: 362px;
  }
  .float-badge {
    transform: scale(.9);
    transform-origin: center;
  }
  .tariff,
  .consult-card,
  .problem-card,
  .inside-grid article,
  .timeline article {
    padding: 18px;
  }
  .button span {
    font-size: 14.5px;
  }
  .button small {
    font-size: 11px;
  }
}

/* --- Marketing upgrade: clearer sales path, support emphasis, final decision block --- */
.hero-lead-pain {
  color: rgba(23,40,63,.88);
  font-weight: 650;
}
.hero-lead-system {
  margin-top: 10px;
  font-size: 16.5px;
  color: rgba(29,45,64,.70);
}
.free-book-bridge {
  margin-top: -2px;
  padding: 14px 18px;
  border: 1px solid rgba(169,132,103,.22);
  border-radius: 20px;
  background: rgba(255,255,255,.54);
  color: rgba(23,40,63,.78) !important;
  font-weight: 650;
  line-height: 1.55;
}
.vip-inline-note {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(219,183,120,.35);
  border-radius: 20px;
  background: rgba(255,248,224,.55);
  color: rgba(23,40,63,.78);
}
.support-needed-section {
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(54px, 7vw, 82px);
}
.support-needed-card {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255,255,255,.80);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 8%, rgba(233,120,183,.12), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.55));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}
.support-needed-copy h2 { margin-bottom: 18px; }
.support-needed-copy p { margin: 0 0 24px; color: rgba(29,45,64,.72); font-size: 17px; }
.support-needed-list {
  display: grid;
  gap: 12px;
}
.support-needed-list article {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 17px 18px 17px 56px;
  border: 1px solid rgba(23,40,63,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.65);
  color: rgba(23,40,63,.82);
  font-weight: 700;
  line-height: 1.38;
  box-shadow: 0 10px 28px rgba(23,40,63,.05);
}
.support-needed-list article::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--rose-deep));
  font-weight: 900;
  font-size: 13px;
}
.tariffs-section .section-head p strong:first-of-type {
  color: var(--navy);
}
.tariff-featured {
  transform: translateY(-10px);
  border-color: rgba(219,183,120,.58) !important;
  box-shadow: 0 34px 100px rgba(23,40,63,.18), 0 20px 70px rgba(201,153,84,.22) !important;
}
.tariff-featured:hover { transform: translateY(-14px); }
.tariff-featured .popular {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  letter-spacing: .08em;
}
.tariff-featured .support-level {
  border-color: rgba(219,183,120,.46);
  background: rgba(255,249,230,.72);
}
.final-choice-section {
  padding-top: clamp(52px, 7vw, 84px);
  padding-bottom: clamp(54px, 7vw, 84px);
}
.final-choice-shell {
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,242,176,.34), transparent 36%),
    radial-gradient(circle at 100% 20%, rgba(233,120,183,.12), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,255,255,.56));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}
.final-choice-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}
.final-choice-head .eyebrow { justify-content: center; }
.final-choice-head p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 690px;
  color: rgba(29,45,64,.72);
  font-size: 17px;
}
.final-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.final-choice-card {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(23,40,63,.10);
  border-radius: 26px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 16px 40px rgba(23,40,63,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.final-choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(23,40,63,.12);
  border-color: rgba(169,132,103,.28);
}
.final-choice-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.final-choice-card strong {
  display: block;
  margin: 16px 0 12px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 31px;
  line-height: .96;
  letter-spacing: -.03em;
}
.final-choice-card small {
  color: rgba(29,45,64,.68);
  font-weight: 800;
  line-height: 1.35;
}
.final-choice-card-main {
  color: #fff;
  background: linear-gradient(145deg, rgba(23,40,63,.98), rgba(10,24,48,.98));
  border-color: rgba(219,183,120,.55);
}
.final-choice-card-main span,
.final-choice-card-main small { color: rgba(255,255,255,.76); }
.final-choice-card-main strong { color: #fff; }
.final-choice-card-call {
  background: linear-gradient(145deg, rgba(255,251,239,.86), rgba(255,255,255,.60));
}
.timeline article {
  padding-top: 26px;
}
.timeline span {
  position: relative;
  z-index: 1;
  margin-bottom: 66px;
}
.timeline span::after {
  top: 62px;
  left: 24px;
  right: auto;
}
.timeline h3,
.timeline p {
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .final-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-needed-card { grid-template-columns: 1fr; }
  .tariff-featured { transform: none; }
  .tariff-featured:hover { transform: translateY(-6px); }
}
@media (max-width: 767px) {
  .hero-lead-pain { font-size: 16px; }
  .hero-lead-system { font-size: 14.5px; }
  .support-needed-card,
  .final-choice-shell {
    padding: 22px;
    border-radius: 28px;
  }
  .support-needed-list article {
    min-height: auto;
    padding: 15px 15px 15px 50px;
    font-size: 14px;
  }
  .final-choice-grid { grid-template-columns: 1fr; }
  .final-choice-card {
    min-height: 136px;
    padding: 20px;
  }
  .final-choice-card strong { font-size: 28px; }
  .timeline span {
    margin-bottom: 52px;
  }
  .timeline span::after {
    top: 42px;
    left: 20px;
  }
  .timeline article { padding-top: 22px; }
}
@media (max-width: 380px) {
  .final-choice-card strong { font-size: 26px; }
  .support-needed-copy .button span { font-size: 14px; }
}

/* ==========================================================
   FINAL RESPONSIVE / READABILITY PASS
   Fixes: text overflow, mobile readability, section rhythm.
   ========================================================== */
html {
  width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 98px;
}
body {
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
*, *::before, *::after {
  max-width: 100%;
}
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}
.container {
  width: min(var(--container), calc(100% - 44px));
}
section[id] {
  scroll-margin-top: 104px;
}
.section {
  padding-top: clamp(46px, 5.5vw, 70px) !important;
  padding-bottom: clamp(46px, 5.5vw, 70px) !important;
}
.section.compact {
  padding-top: clamp(38px, 4.5vw, 56px) !important;
  padding-bottom: clamp(38px, 4.5vw, 56px) !important;
}
.hero {
  padding-bottom: clamp(24px, 4vw, 38px) !important;
}

/* Text rhythm */
h1, h2, h3, p, li, summary, label, .button, .service-choice-card, .tariff, .consult-card {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}
h1, h2, h3, .hero-titleline {
  text-wrap: balance;
}
p, li, summary, .tariff-desc, .consult-card p, .free-book-copy p, .section-head p:not(.eyebrow) {
  text-wrap: pretty;
}
.button span,
.button small,
.service-choice-card strong,
.service-choice-card small,
.service-choice-card em,
.tariff-label,
.popular,
.tariff-desc,
.support-level strong,
.support-pill strong,
.support-pill small,
.final-choice-card strong,
.final-choice-card small,
.consult-kicker,
.consult-format-row span {
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

/* Universal card containment */
.soft-card,
.free-book-card,
.guide-panel,
.compare-card,
.fit-card,
.expert-photo-real,
.medical-card,
.personal-card,
.diagnostic-card,
.diagnostic-grid,
.support-needed-card,
.support-note,
.tariff,
.consult-card,
.consults-hero,
.lead-card,
.final-choice-shell,
.final-choice-card,
.intro-panel,
.intro-panel div,
.timeline article,
.inside-grid article,
.system-grid article,
.age-grid article,
.age-main-card,
.case-card,
.afterpay-grid article,
.faq-list details {
  min-width: 0;
  overflow: hidden;
}

/* First screen: clearer spacing, no empty vertical pockets */
.hero-grid {
  gap: clamp(22px, 3.6vw, 52px) !important;
}
.hero-service-panel {
  gap: clamp(12px, 2vw, 16px) !important;
  margin-top: clamp(22px, 3vw, 30px) !important;
}
.service-choice-card {
  min-height: 0 !important;
  justify-content: flex-start;
  padding: clamp(18px, 2.3vw, 24px) !important;
}
.service-choice-card strong {
  font-size: clamp(27px, 2.75vw, 38px) !important;
  line-height: 1.02 !important;
}
.service-choice-card small {
  line-height: 1.48 !important;
}
.hero-under-actions {
  line-height: 1.45;
}
.hero-media {
  min-height: 0 !important;
}
.portrait-card {
  aspect-ratio: .76 !important;
  min-height: 0 !important;
}
.float-badge-top { right: 12px !important; }
.float-badge-bottom { left: 12px !important; }
.intro-panel {
  margin-top: clamp(10px, 2vw, 18px) !important;
}

/* Program cards: marker is inline, never on the text */
.timeline {
  gap: 14px !important;
  margin-top: clamp(24px, 3vw, 34px) !important;
}
.timeline article {
  min-height: 0 !important;
  padding: clamp(20px, 2.4vw, 26px) !important;
}
.timeline span {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 0 !important;
  margin-bottom: 16px !important;
  padding-right: 0 !important;
  line-height: 1.25 !important;
}
.timeline span::after {
  position: static !important;
  flex: 0 0 30px !important;
  width: 30px !important;
  height: 30px !important;
  margin-left: 2px !important;
  border-width: 4px !important;
  transform: none !important;
}
.timeline h3 {
  margin-bottom: 10px !important;
  font-size: clamp(24px, 2.6vw, 29px) !important;
  line-height: 1.08 !important;
}
.timeline p {
  line-height: 1.55 !important;
}

/* Course contents: compact and phone-readable */
.inside-grid,
.system-grid,
.age-grid-refined,
.cases-grid,
.afterpay-grid,
.problem-grid,
.credential-list,
.final-choice-grid,
.consults-grid {
  gap: 14px !important;
}
.inside-grid article,
.system-grid article,
.age-grid-refined article,
.afterpay-grid article,
.case-card {
  min-height: 0 !important;
}
.inside-grid h3,
.system-grid h3,
.age-grid-refined h3,
.afterpay-grid h3,
.case-card h3 {
  line-height: 1.08 !important;
}

/* Medical section: smaller photo, easier reading */
.medical-section .medical-card {
  align-items: center !important;
  gap: clamp(18px, 2.6vw, 28px) !important;
  padding: clamp(22px, 3.6vw, 38px) !important;
}
.medical-section .medical-copy h2 {
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 1 !important;
}
.medical-section .medical-copy p,
.medical-alert p {
  line-height: 1.62 !important;
}
.medical-small-photo {
  max-width: 230px !important;
  margin: 0 auto !important;
}
.medical-small-photo img {
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
}
.medical-alert {
  padding: clamp(20px, 3vw, 28px) !important;
}
.medical-alert strong {
  font-size: clamp(27px, 2.8vw, 34px) !important;
  line-height: 1.02 !important;
}

/* Tariffs: stable cards and buttons */
.tariffs {
  gap: clamp(14px, 2vw, 20px) !important;
  align-items: stretch !important;
}
.tariff {
  padding: clamp(22px, 2.4vw, 28px) !important;
  border-radius: clamp(26px, 3vw, 34px) !important;
}
.tariff-head {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: flex-start !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.tariff-featured .tariff-head {
  padding-top: 70px !important;
}
.plan-mark {
  width: 48px !important;
  height: 48px !important;
}
.tariff h3 {
  font-size: clamp(30px, 2.8vw, 38px) !important;
  line-height: 1.02 !important;
}
.popular,
.tariff-promo {
  left: 18px !important;
  right: 18px !important;
  max-width: calc(100% - 36px) !important;
  text-align: center !important;
  justify-content: center !important;
  line-height: 1.18 !important;
}
.tariff-featured .tariff-desc {
  padding-right: 0 !important;
}
.price-stack,
.price-wrap {
  min-width: 0 !important;
}
.price-wrap {
  flex-wrap: wrap !important;
  gap: 4px 8px !important;
}
.price-wrap .price {
  font-size: clamp(44px, 4.8vw, 62px) !important;
  line-height: .9 !important;
  white-space: normal !important;
}
.tariff ul {
  padding-left: 0 !important;
}
.tariff li {
  line-height: 1.44 !important;
}
.tariff .button {
  width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}
.tariff-buy::after {
  display: none !important;
}
.tariff-stripe span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}
.globe-icon {
  flex: 0 0 auto !important;
}

/* Forms and FAQ */
.lead-form,
.lead-form label,
.lead-form input,
.lead-form select,
.lead-form textarea {
  min-width: 0 !important;
  max-width: 100% !important;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  font-size: 16px !important;
}
.faq-list summary {
  line-height: 1.35 !important;
}

/* Consultations at the end: clean grid, no visual overflow */
.consults-section::before,
.consults-section::after {
  max-width: none;
  pointer-events: none;
}
.consults-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr) !important;
  gap: clamp(18px, 3vw, 30px) !important;
}
.consults-copy h2 {
  font-size: clamp(34px, 4.6vw, 66px) !important;
  line-height: 1 !important;
}
.consults-lead {
  line-height: 1.58 !important;
}
.consult-card-top {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: start !important;
}
.consult-card h3 {
  font-size: clamp(27px, 2.8vw, 33px) !important;
  line-height: 1.06 !important;
}
.consult-format-row {
  flex-wrap: wrap !important;
}
.consult-card ul {
  padding-left: 0 !important;
}

@media (max-width: 1180px) {
  .tariffs {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .tariff-featured,
  .tariff-featured:hover,
  .tariff:hover {
    transform: none !important;
  }
  .consults-hero {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .expert-grid,
  .compare-card,
  .guide-panel,
  .lead-card,
  .medical-section .medical-card,
  .diagnostic-grid,
  .personal-card,
  .support-needed-card,
  .fit-grid,
  .age-shell {
    grid-template-columns: 1fr !important;
  }
  .timeline,
  .inside-grid,
  .system-grid,
  .age-grid-refined,
  .problem-grid,
  .afterpay-grid,
  .cases-grid,
  .credential-list,
  .final-choice-grid,
  .consults-grid {
    grid-template-columns: 1fr !important;
  }
  .expert-photo-real {
    min-height: 500px !important;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 82px;
  }
  .container {
    width: calc(100% - 24px) !important;
  }
  section[id] {
    scroll-margin-top: 86px;
  }
  .section {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
  .section.compact {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .header {
    top: 7px !important;
    margin-bottom: -68px !important;
  }
  .header-inner {
    min-height: 60px !important;
  }
  .brand {
    width: min(218px, 66vw) !important;
  }
  .hero {
    padding-top: 96px !important;
    padding-bottom: 24px !important;
  }
  .hero-copy,
  .section-head,
  .free-book-copy,
  .expert-copy,
  .medical-copy,
  .consults-copy {
    text-align: left !important;
  }
  .section-head .eyebrow,
  .free-book-copy .eyebrow,
  .consults-copy .eyebrow {
    justify-content: flex-start !important;
  }
  h1 {
    font-size: clamp(48px, 15.4vw, 66px) !important;
    line-height: .9 !important;
  }
  h2 {
    font-size: clamp(30px, 9.4vw, 43px) !important;
    line-height: 1.02 !important;
  }
  h3 {
    font-size: clamp(22px, 6.8vw, 29px) !important;
    line-height: 1.12 !important;
  }
  p, li, summary {
    font-size: 15px !important;
    line-height: 1.56 !important;
  }
  .hero-titleline {
    font-size: clamp(29px, 9.6vw, 39px) !important;
    line-height: 1.04 !important;
  }
  .hero-lead {
    font-size: 15.5px !important;
    line-height: 1.58 !important;
  }
  .eyebrow {
    font-size: 10.5px !important;
    letter-spacing: .11em !important;
    line-height: 1.25 !important;
  }
  .hero-credentials {
    justify-content: flex-start !important;
  }
  .hero-credentials span {
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .hero-service-panel {
    grid-template-columns: 1fr !important;
    margin-top: 18px !important;
  }
  .service-choice-card {
    padding: 17px !important;
    border-radius: 22px !important;
  }
  .service-choice-card strong {
    font-size: clamp(24px, 7.6vw, 31px) !important;
  }
  .hero-under-actions {
    display: grid !important;
    justify-items: start !important;
    text-align: left !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }
  .hero-under-actions span {
    display: none !important;
  }
  .portrait-card {
    width: min(100%, 390px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 30px !important;
    padding: 10px !important;
  }
  .hero-photo {
    width: min(310px, 82%) !important;
    margin: 0 auto !important;
  }
  .float-badge {
    width: 128px !important;
    padding: 10px !important;
  }
  .float-badge strong { font-size: 23px !important; }
  .float-badge span { font-size: 10px !important; }
  .intro-panel {
    grid-template-columns: 1fr !important;
    margin-top: 8px !important;
  }
  .intro-panel div,
  .free-book-card,
  .guide-panel,
  .compare-card,
  .medical-card,
  .personal-card,
  .diagnostic-card,
  .diagnostic-grid,
  .lead-card,
  .support-needed-card,
  .final-choice-shell,
  .consults-hero {
    padding: 18px !important;
    border-radius: 24px !important;
  }
  .free-book-card::before,
  .consults-hero::before {
    display: none !important;
  }
  .free-book-copy h2 {
    font-size: clamp(28px, 8.6vw, 38px) !important;
    line-height: 1.04 !important;
  }
  .free-book-visual {
    min-height: 270px !important;
  }
  .book-cover {
    min-height: 280px !important;
    transform: none !important;
  }
  .book-cover strong {
    font-size: 30px !important;
  }
  .expert-photo-real {
    min-height: 430px !important;
    border-radius: 28px !important;
  }
  .expert-photo-real img {
    border-radius: 28px !important;
  }
  .expert-badge {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    border-radius: 18px !important;
  }
  .credential-list {
    grid-template-columns: 1fr !important;
  }
  .medical-small-photo {
    max-width: min(210px, 74vw) !important;
  }
  .medical-alert::before {
    font-size: 60px !important;
  }
  .compare-points div {
    min-height: 0 !important;
    padding: 18px !important;
  }
  .compare-points span {
    position: static !important;
    margin-bottom: 10px !important;
  }
  .timeline span::after {
    width: 24px !important;
    height: 24px !important;
    flex-basis: 24px !important;
  }
  .tariff {
    padding: 18px !important;
  }
  .tariff-head {
    grid-template-columns: 42px minmax(0, 1fr) !important;
  }
  .plan-mark {
    width: 42px !important;
    height: 42px !important;
    font-size: 10px !important;
  }
  .tariff-featured .tariff-head {
    padding-top: 62px !important;
  }
  .tariff h3,
  .tariff-featured h3 {
    font-size: clamp(27px, 8.2vw, 34px) !important;
  }
  .price-wrap .price {
    font-size: clamp(40px, 12vw, 54px) !important;
  }
  .currency {
    font-size: 22px !important;
  }
  .tariff-promo,
  .popular {
    left: 12px !important;
    right: 12px !important;
    max-width: calc(100% - 24px) !important;
    font-size: 9px !important;
    letter-spacing: .055em !important;
    padding: 8px 10px !important;
  }
  .support-level {
    grid-template-columns: 1fr !important;
  }
  .tariff .button,
  .button-consult,
  .button-consult-main,
  .form-submit,
  .free-book-button {
    min-height: 56px !important;
    padding: 12px 14px !important;
  }
  .button span {
    font-size: 14px !important;
    line-height: 1.18 !important;
  }
  .button small {
    font-size: 10.5px !important;
    line-height: 1.2 !important;
  }
  .tariff-stripe span {
    gap: 6px !important;
    font-size: 11px !important;
  }
  .globe-icon {
    width: 22px !important;
    height: 22px !important;
  }
  .final-choice-card {
    min-height: 0 !important;
    padding: 18px !important;
  }
  .final-choice-card strong {
    margin: 12px 0 8px !important;
    font-size: 26px !important;
  }
  .consults-panel,
  .consult-card {
    padding: 18px !important;
    border-radius: 22px !important;
  }
  .consult-card-top {
    grid-template-columns: 46px minmax(0, 1fr) !important;
  }
  .call-icon,
  .consults-badge-icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 16px !important;
  }
  .consult-card h3 {
    font-size: clamp(25px, 8vw, 31px) !important;
  }
  .lead-form {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .faq-list details {
    padding: 16px 18px !important;
    border-radius: 18px !important;
  }
  .sticky-choice {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 18px) !important;
  }
  .brand {
    width: min(198px, 64vw) !important;
  }
  h1 {
    font-size: 46px !important;
  }
  h2,
  .free-book-copy h2,
  .consults-copy h2 {
    font-size: 29px !important;
  }
  .hero-titleline {
    font-size: 28px !important;
  }
  .service-choice-card,
  .tariff,
  .consult-card,
  .free-book-card,
  .lead-card,
  .medical-card,
  .final-choice-shell {
    padding: 16px !important;
  }
  .button span,
  .tariff-buy span,
  .tariff-stripe span {
    overflow-wrap: anywhere !important;
  }
  .float-badge {
    transform: scale(.86) !important;
  }
}

/* --- Book mockup replacement + safer word wrapping --- */
.free-book-visual-image {
  min-height: auto !important;
  padding: clamp(10px, 2.4vw, 22px) 0;
  perspective: none !important;
  align-self: center;
}
.book-mockup {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  margin: 0 auto;
  transform: rotate(-1.4deg);
  transform-origin: center;
  filter: drop-shadow(0 32px 44px rgba(23,40,63,.20));
}
.book-mockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.free-book-visual-image .book-shadow {
  bottom: 14px;
  width: min(330px, 82%);
  height: 34px;
  opacity: .72;
  z-index: 1;
}

/* Do not auto-hyphenate Russian words. Keep blocks readable without "сло-ва" breaks. */
html,
body,
body *,
.button,
.button span,
.button small,
.nav a,
h1, h2, h3, h4,
p, li, summary, label,
.eyebrow,
.hero-titleline,
.hero-lead,
.hero-credentials span,
.service-choice-card,
.service-choice-card strong,
.service-choice-card small,
.service-choice-card em,
.free-book-copy h2,
.free-book-copy p,
.free-book-points span,
.section-head p,
.system-grid article,
.inside-grid article,
.timeline article,
.timeline h3,
.timeline p,
.tariff,
.tariff h3,
.tariff-desc,
.tariff-label,
.support-level,
.support-level strong,
.support-pill strong,
.support-pill small,
.popular,
.tariff-promo,
.tariff-buy span,
.tariff-stripe span,
.consult-card,
.consult-card h3,
.consult-card p,
.consult-kicker,
.consult-format-row span,
.faq-list details,
.faq-list summary,
.lead-form,
.lead-form input,
.lead-form textarea,
.lead-form select {
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

/* Long labels are allowed to wrap by words, not by automatic hyphenation. */
.tariff-stripe span,
.tariff-buy span,
.button span,
.button small,
.free-book-points span,
.guide-tags span,
.tariff-trust-row span,
.consult-format-row span {
  white-space: normal !important;
  line-break: auto !important;
}

@media (max-width: 760px) {
  .free-book-visual-image {
    padding-top: 2px !important;
    padding-bottom: 0 !important;
  }
  .book-mockup {
    width: min(318px, 92vw) !important;
    transform: rotate(-.8deg) !important;
  }
  .free-book-visual-image .book-shadow {
    bottom: 2px !important;
    width: 245px !important;
    height: 26px !important;
  }
  .free-book-card {
    gap: 18px !important;
  }
}

@media (max-width: 380px) {
  .book-mockup {
    width: min(290px, 90vw) !important;
  }
  .button span,
  .tariff-buy span,
  .tariff-stripe span {
    overflow-wrap: break-word !important;
    word-break: normal !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
  }
}

/* --- refinements: logo, compact expertise, highlighted difference, age puzzle, tariff age split --- */
.brand {
  width: clamp(250px, 28vw, 360px);
}

.compare-card {
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(135deg, rgba(255, 241, 244, 0.95), rgba(237, 251, 228, 0.95));
  border: 1px solid rgba(204, 99, 116, 0.18);
  box-shadow: 0 18px 46px rgba(132, 158, 119, 0.14);
}
.compare-left .eyebrow {
  color: #c65e73;
}
.compare-left h2 {
  max-width: 12ch;
}
.compare-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.compare-points div {
  min-height: 100%;
  padding: 16px 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(185, 214, 148, 0.5);
}
.compare-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e96a75, #b6d47b);
  color: #fff;
}
.compare-points strong {
  display: block;
  margin-bottom: 6px;
}
.compare-points p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.expert-grid {
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
}
.expert-photo-real {
  min-height: 540px;
}
.expert-copy .large {
  margin-bottom: 16px;
}
.credential-list {
  gap: 10px;
}
.credential-list div {
  padding: 14px 15px;
  min-height: 0;
}
.credential-list strong {
  font-size: 28px;
  margin-bottom: 4px;
}
.credential-list span {
  font-size: 13px;
  line-height: 1.4;
}

.tariff-age-strip {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.8);
  background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(248,255,238,.72));
  box-shadow: 0 14px 34px rgba(23,40,63,.08);
}
.age-strip-head {
  display: grid;
  gap: 6px;
}
.age-strip-head span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: rgba(29,45,64,.58);
}
.age-strip-head strong {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.45;
}
.age-strip-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.age-strip-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(229, 244, 214, .92), rgba(255, 239, 242, .88));
  border: 1px solid rgba(184, 210, 144, .45);
  color: var(--navy);
  font-weight: 800;
}

.age-shell {
  align-items: start;
}
.age-main-card.age-puzzle-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(248,255,242,.82));
}
.age-main-card.age-puzzle-card strong {
  font-size: clamp(54px, 7vw, 84px);
}
.age-main-card.age-puzzle-card p {
  max-width: 42ch;
}
.age-puzzle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 4px;
  padding-top: 8px;
}
.age-piece {
  position: relative;
  z-index: 1;
  min-width: 148px;
  min-height: 124px;
  padding: 18px 14px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 14px 28px rgba(23,40,63,.09);
}
.age-piece + .age-piece {
  margin-left: -18px;
}
.age-piece b {
  display: block;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: .95;
}
.age-piece small {
  margin-top: 6px;
  color: rgba(29,45,64,.72);
  font-size: 14px;
  font-weight: 800;
}
.age-piece-a {
  background: linear-gradient(135deg, #fef0f2, #ffe4e7);
}
.age-piece-b {
  background: linear-gradient(135deg, #eef7de, #dff0bf);
  z-index: 2;
}
.age-piece-c {
  background: linear-gradient(135deg, #fff5df, #ffeac0);
}
.age-grid-refined {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.age-grid-refined article {
  padding: 24px;
}
.age-grid-refined article::after {
  background: linear-gradient(135deg, rgba(233,106,117,.16), rgba(182,212,123,.18));
}
.age-grid-refined span {
  color: #c65e73;
}
.age-grid-refined h3 {
  min-height: 0;
}

.tariff h3,
.tariff-desc,
.tariff ul,
.tariff li,
.age-grid-refined p,
.compare-points p,
.age-strip-head strong {
  hyphens: none;
  word-break: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .brand { width: clamp(220px, 32vw, 320px); }
  .compare-points {
    grid-template-columns: 1fr;
  }
  .age-puzzle {
    flex-wrap: wrap;
    gap: 12px;
  }
  .age-piece + .age-piece {
    margin-left: 0;
  }
  .age-grid-refined {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .brand {
    width: min(260px, calc(100vw - 86px));
  }
  .expert-photo-real {
    min-height: 400px;
  }
  .expert-badge {
    position: static;
    margin-top: 14px;
  }
  .credential-list {
    grid-template-columns: 1fr;
  }
  .compare-card {
    padding: 22px 18px;
  }
  .compare-left h2 {
    max-width: none;
  }
  .tariff-age-strip {
    padding: 18px;
    gap: 14px;
  }
  .age-main-card.age-puzzle-card {
    padding: 20px 18px;
  }
  .age-main-card.age-puzzle-card strong {
    font-size: clamp(42px, 13vw, 58px);
  }
  .age-piece {
    min-width: 100%;
    min-height: 92px;
    border-radius: 34px;
  }
  .age-piece b {
    font-size: 30px;
  }
  .age-piece small {
    font-size: 13px;
  }
  .age-strip-pills span,
  .age-grid-refined article,
  .compare-points div {
    width: 100%;
  }
}

/* --- Consultation tariffs redesign --- */
.consults-section {
  padding-top: clamp(44px, 6vw, 82px);
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.96), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(255,232,238,.70), transparent 36%),
    radial-gradient(circle at 68% 94%, rgba(228,246,202,.56), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,249,241,.76));
}
.consults-hero {
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  border-color: rgba(169,132,103,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,247,242,.80)),
    radial-gradient(circle at 88% 18%, rgba(233,120,183,.15), transparent 30%);
}
.consults-copy h2 {
  max-width: 780px;
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: .96;
}
.consults-lead {
  max-width: 780px;
}
.consults-panel {
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 0%, rgba(219,183,120,.38), transparent 42%),
    linear-gradient(145deg, #091a31, #122d4f 65%, #071a32);
}
.consults-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.58);
  box-shadow: 0 16px 40px rgba(23,40,63,.07);
  backdrop-filter: blur(18px);
}
.consult-path-item {
  position: relative;
  min-width: 0;
  padding: 16px 14px 15px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,250,241,.72));
  border: 1px solid rgba(23,40,63,.06);
}
.consult-path-item + .consult-path-item::before {
  content: "→";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--rose-deep));
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(23,40,63,.10);
}
.consult-path-item span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
}
.consult-path-item strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}
.consult-path-item small {
  display: block;
  margin-top: 4px;
  color: rgba(29,45,64,.62);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}
.consults-pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
  align-items: stretch;
}
.consult-tier-card {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    radial-gradient(circle at 102% 0%, rgba(255,231,173,.36), transparent 35%);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 26px 70px rgba(23,40,63,.10);
}
.consult-tier-card::before {
  height: 0;
}
.consult-tier-card::after {
  right: -56px;
  top: -72px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(219,183,120,.22), transparent 68%);
}
.consult-card-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.consult-tier-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0b1c35);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(23,40,63,.18);
}
.consult-tag {
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(169,132,103,.18);
  color: rgba(23,40,63,.70);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: right;
}
.consult-card-top {
  padding-top: 2px;
}
.consult-card h3 {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  font-size: clamp(34px, 3.2vw, 46px);
}
.consult-kicker {
  overflow-wrap: normal;
  hyphens: none;
}
.consult-value-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(23,40,63,.07);
}
.consult-value-box strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.consult-value-box span {
  color: rgba(29,45,64,.78);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}
.consult-cta-zone {
  margin-top: auto;
  display: grid;
  gap: 14px;
  padding-top: 4px;
}
.consult-cta-zone p {
  margin: 0;
  color: rgba(29,45,64,.66);
  font-size: 13.5px;
  line-height: 1.55;
}
.consult-card-platina {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,241,.76)),
    radial-gradient(circle at 100% 0%, rgba(255,226,186,.35), transparent 34%);
}
.consult-featured-call {
  border-color: rgba(219,183,120,.45);
  background:
    radial-gradient(circle at 95% 0%, rgba(219,183,120,.32), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,246,220,.82));
  box-shadow: 0 30px 82px rgba(126,84,37,.16);
}
.consult-featured-ribbon {
  align-self: flex-start;
  max-width: 100%;
  margin-top: -6px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe7ae, #c99954);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.consult-premium-call {
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(219,183,120,.24), transparent 36%),
    radial-gradient(circle at 100% 22%, rgba(190,219,139,.20), transparent 42%),
    linear-gradient(145deg, #0a1930, #112d4f 68%, #07182d);
  border-color: rgba(219,183,120,.32);
  box-shadow: 0 30px 88px rgba(6,22,42,.24);
}
.consult-premium-call .consult-card h3,
.consult-premium-call h3,
.consult-premium-call .consult-kicker,
.consult-premium-call .consult-tag,
.consult-premium-call li,
.consult-premium-call p,
.consult-premium-call .consult-cta-zone p {
  color: rgba(255,255,255,.82);
}
.consult-premium-call h3 {
  color: #fff;
}
.consult-premium-call .consult-tag,
.consult-premium-call .consult-value-box,
.consult-premium-call .consult-format-row span {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
}
.consult-premium-call .consult-value-box span,
.consult-premium-call .consult-format-row span {
  color: rgba(255,255,255,.82);
}
.consult-premium-call .consult-value-box strong,
.consult-premium-call .consult-kicker {
  color: var(--gold-light);
}
.consult-premium-call li::before {
  background: radial-gradient(circle, #fff 0 28%, var(--gold-light) 31% 100%);
}
.consult-premium-call .consult-tier-number {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff3c7, #d3a55a);
}
.consult-premium-call .call-icon {
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff4cf, #c8e29a);
}
.consult-premium-call .consult-limited {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
}
.consult-format-row span {
  hyphens: none;
  overflow-wrap: normal;
  white-space: nowrap;
}
.consult-card li,
.consult-card p,
.consult-value-box span {
  hyphens: none;
  overflow-wrap: anywhere;
}

@media (min-width: 1180px) {
  .consults-pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .consult-tier-card {
    padding: 26px 22px;
    border-radius: 32px;
  }
  .consult-card-top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }
  .consult-card h3 {
    font-size: clamp(31px, 2.35vw, 38px);
  }
  .consult-value-box {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .consult-format-row span {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .consults-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .consult-path-item + .consult-path-item::before {
    display: none;
  }
  .consults-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}

@media (max-width: 520px) {
  .consults-copy h2 {
    font-size: clamp(34px, 10.8vw, 46px);
  }
  .consults-path {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 10px;
  }
  .consult-path-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 14px;
  }
  .consult-path-item span {
    grid-row: span 2;
    margin: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--navy);
  }
  .consult-path-item small {
    margin-top: 2px;
  }
  .consult-card-label-row {
    align-items: flex-start;
  }
  .consult-tag {
    text-align: left;
  }
  .consult-value-box {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 15px;
  }
  .consult-format-row span {
    white-space: normal;
  }
  .consult-card h3 {
    font-size: clamp(29px, 8.7vw, 36px);
    line-height: 1;
  }
  .consult-cta-zone p {
    font-size: 13px;
  }
}

/* Keep consultation tariff cards spacious on desktop for readability */
@media (min-width: 1180px) {
  .consults-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1120px;
  }
  .consult-tier-card {
    padding: clamp(28px, 2.7vw, 36px);
    border-radius: 36px;
  }
  .consult-card-top {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }
  .consult-card h3 {
    font-size: clamp(36px, 3vw, 46px);
    overflow-wrap: normal;
  }
  .consult-value-box {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
  }
}

/* --- Free guide popup after tariff viewing --- */
body.freebie-modal-open {
  overflow: hidden;
}
.freebie-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.freebie-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.freebie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,24,48,.42);
  backdrop-filter: blur(10px);
}
.freebie-modal-card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .72fr);
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
  padding: clamp(22px, 4vw, 40px);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.92), transparent 34%),
    linear-gradient(135deg, rgba(255,250,242,.98), rgba(245,253,234,.96) 46%, rgba(255,236,242,.97));
  box-shadow: 0 34px 120px rgba(10,24,48,.28);
  overflow: hidden;
  transform: translateY(12px) scale(.98);
  transition: transform .24s ease;
}
.freebie-modal.is-visible .freebie-modal-card {
  transform: translateY(0) scale(1);
}
.freebie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,40,63,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.76);
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23,40,63,.10);
}
.freebie-modal-copy {
  min-width: 0;
}
.freebie-modal-copy h3 {
  margin: 0;
  max-width: 720px;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.035em;
}
.freebie-modal-copy p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(29,45,64,.74);
  font-size: 16px;
  line-height: 1.7;
}
.freebie-modal-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}
.freebie-modal-points span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(23,40,63,.08);
  color: rgba(23,40,63,.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.freebie-modal-book {
  margin: 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.freebie-modal-book img {
  width: min(330px, 100%);
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 26px 46px rgba(23,40,63,.18));
  transform: rotate(1.5deg);
}

/* Remove dead empty spacing after moving the free guide to a popup. */
.inside-course-section {
  display: none !important;
}

@media (max-width: 860px) {
  .freebie-modal-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 34px);
    overflow-y: auto;
  }
  .freebie-modal-book {
    order: -1;
  }
  .freebie-modal-book img {
    width: min(270px, 74vw);
  }
}

@media (max-width: 560px) {
  .freebie-modal {
    padding: 12px;
  }
  .freebie-modal-card {
    padding: 20px 16px 18px;
    border-radius: 26px;
    gap: 14px;
  }
  .freebie-modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
  .freebie-modal-copy h3 {
    font-size: clamp(30px, 10vw, 38px);
  }
  .freebie-modal-copy p {
    font-size: 15px;
    line-height: 1.6;
  }
  .freebie-modal-points {
    display: grid;
    grid-template-columns: 1fr;
  }
  .freebie-modal-points span {
    justify-content: center;
    text-align: center;
  }
}

/* --- final content cleanup: salad call card, compact expertise, focus-only age section --- */
.service-choice-call {
  background:
    radial-gradient(circle at 92% 5%, rgba(255,255,255,.92), transparent 34%),
    linear-gradient(145deg, rgba(237, 251, 223, .96), rgba(213, 239, 174, .88));
  color: var(--navy);
  border-color: rgba(166, 207, 112, .62);
  box-shadow: 0 24px 68px rgba(107, 142, 64, .17);
}
.service-choice-call::after {
  background: rgba(183, 215, 119, .26);
}
.service-choice-call .service-icon {
  color: var(--navy);
  background: linear-gradient(135deg, #f5ffe8, #b9dc79);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.82), 0 14px 32px rgba(107,142,64,.16);
}
.service-choice-call .service-kicker,
.service-choice-call em {
  color: #6f9140;
}
.service-choice-call strong {
  color: var(--navy-deep);
}
.service-choice-call small {
  color: rgba(29,45,64,.72);
}
.final-choice-card-call {
  background: linear-gradient(145deg, rgba(242,255,227,.95), rgba(221,244,187,.86));
  border-color: rgba(166,207,112,.56);
}

.expert-section-compact {
  padding-top: clamp(44px, 6vw, 76px);
  padding-bottom: clamp(44px, 6vw, 76px);
}
.expert-compact-card {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 38px;
  background:
    radial-gradient(circle at 92% 8%, rgba(225,245,198,.58), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,250,243,.68));
  box-shadow: 0 22px 58px rgba(23,40,63,.10);
  backdrop-filter: blur(20px);
}
.expert-copy-wide h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: .98;
}
.expert-copy-wide .large {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.7;
}
.institute-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.institute-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 13px;
  row-gap: 3px;
  align-items: center;
  padding: 15px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.66);
  box-shadow: 0 12px 28px rgba(23,40,63,.07);
}
.inst-icon {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255,245,190,.95), rgba(217,239,177,.86));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.86);
}
.inst-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.institute-card strong {
  min-width: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: .98;
  overflow-wrap: anywhere;
}
.institute-card small {
  min-width: 0;
  color: rgba(29,45,64,.66);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.institute-card-main,
.institute-card-numbers {
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(232,247,206,.70));
}

.age-focus-only {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
}
.age-focus-only .age-main-card {
  max-width: 980px;
  margin: 0 auto;
}
.age-focus-only .age-main-card.age-puzzle-card {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(320px, .42fr);
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 86% 14%, rgba(255,255,255,.78), transparent 30%),
    linear-gradient(135deg, rgba(239,252,224,.94), rgba(255,246,232,.84));
  border: 1px solid rgba(184, 214, 140, .54);
  box-shadow: 0 24px 64px rgba(107,142,64,.13);
}
.age-focus-only .age-main-card span,
.age-focus-only .age-main-card strong,
.age-focus-only .age-main-card p {
  grid-column: 1;
}
.age-focus-only .age-puzzle {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin: 0;
}
.age-focus-only .age-main-card strong {
  font-size: clamp(62px, 8vw, 104px);
}
.age-focus-only .age-main-card p {
  margin-bottom: 0;
}

#method,
#system {
  display: none !important;
}

@media (max-width: 1024px) {
  .expert-compact-card {
    grid-template-columns: 1fr;
  }
  .age-focus-only .age-main-card.age-puzzle-card {
    grid-template-columns: 1fr;
  }
  .age-focus-only .age-main-card span,
  .age-focus-only .age-main-card strong,
  .age-focus-only .age-main-card p,
  .age-focus-only .age-puzzle {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .expert-compact-card {
    padding: 22px 18px;
    border-radius: 30px;
  }
  .institute-grid {
    grid-template-columns: 1fr;
  }
  .institute-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 14px;
  }
  .inst-icon {
    width: 48px;
    height: 48px;
  }
  .institute-card strong {
    font-size: 25px;
  }
  .age-focus-only .age-main-card.age-puzzle-card {
    padding: 22px 18px;
    border-radius: 30px;
  }
  .age-focus-only .age-main-card strong {
    font-size: clamp(50px, 18vw, 72px);
  }
}
