@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #ef7f1a;
  --primary-dark: #c85e08;
  --secondary: #3d3b7b;
  --secondary-dark: #26245b;
  --accent: #fab4c3;
  --green: #4aa485;
  --ink: #211f39;
  --muted: #66647a;
  --cream: #fff9f3;
  --lavender: #f5f3fb;
  --white: #fff;
  --line: #e8e3ec;
  --shadow: 0 20px 50px rgba(42, 38, 83, .10);
  --radius: 24px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 400 17px/1.62 "Montserrat", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--secondary); line-height: 1.12; letter-spacing: -.025em; }
h1 { margin-bottom: 26px; font-size: clamp(42px, 4.2vw, 67px); font-weight: 760; }
h2 { margin-bottom: 22px; font-size: clamp(34px, 3.2vw, 50px); font-weight: 740; }
h3 { margin-bottom: 12px; font-size: 22px; }
p { margin-bottom: 20px; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; transform: translateY(-150%); padding: 12px 18px; background: var(--secondary); color: white; border-radius: 8px; }
.skip-link:focus { transform: none; }
.eyebrow, .form-kicker { margin-bottom: 12px; color: var(--primary); font-size: 14px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.centered { max-width: 790px; margin: 0 auto 52px; text-align: center; }
.centered > p:last-child, .split-heading > p { color: var(--muted); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr); align-items: end; gap: 60px; margin-bottom: 54px; }
.split-heading h2, .split-heading > p { margin-bottom: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(61,59,123,.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 5px 24px rgba(61,59,123,.05);
}
.header-inner { display: flex; align-items: center; min-height: 82px; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 145px; height: auto; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; }
.main-nav a { position: relative; color: var(--secondary); font-size: 15px; font-weight: 680; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--primary); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.phone-link { display: inline-flex; gap: 8px; align-items: center; color: var(--secondary); font-size: 15px; font-weight: 750; white-space: nowrap; }
.phone-link span:first-child { color: var(--primary); }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 2px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: 0 12px 25px rgba(239,127,26,.24); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(42,210,193,.55); outline-offset: 3px; }
.button-small { min-height: 46px; padding: 10px 18px; font-size: 14px; }
.button-outline { background: transparent; color: var(--primary); }
.button-outline:hover { color: var(--white); }
.button-block { width: 100%; }
.button-light { border-color: var(--white); background: var(--white); color: var(--secondary); }
.button-light:hover { border-color: var(--accent); background: var(--accent); color: var(--secondary); }

.hero { position: relative; overflow: hidden; padding: 74px 0 88px; background: linear-gradient(135deg, #fff 0%, var(--cream) 50%, #fff4ef 100%); }
.hero::before { content: ""; position: absolute; width: 500px; height: 500px; right: -220px; top: -240px; border-radius: 50%; background: rgba(250,180,195,.25); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(260px, .68fr) minmax(300px, .64fr); align-items: center; gap: 32px; }
.hero-copy { padding-right: 8px; }
.hero h1 span { color: var(--primary); }
.hero-lead { max-width: 680px; margin-bottom: 30px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; color: var(--secondary); font-size: 15px; font-weight: 650; }
.trust-list li { display: flex; gap: 10px; align-items: flex-start; }
.trust-list span { display: grid; flex: 0 0 23px; width: 23px; height: 23px; place-items: center; border-radius: 50%; background: rgba(74,164,133,.14); color: var(--green); font-weight: 900; }
.hero-photo { position: relative; align-self: stretch; min-height: 560px; margin: 0; overflow: hidden; border-radius: 220px 220px 30px 30px; background: var(--lavender); box-shadow: var(--shadow); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(38,36,91,.72), transparent 43%); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo figcaption { position: absolute; z-index: 1; right: 24px; bottom: 24px; left: 24px; color: white; }
.hero-photo figcaption strong, .hero-photo figcaption span { display: block; }
.hero-photo figcaption strong { margin-bottom: 3px; font-size: 21px; }
.hero-photo figcaption span { font-size: 14px; opacity: .9; }

.lead-form { padding: 30px; border: 1px solid rgba(61,59,123,.1); border-radius: var(--radius); background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.form-heading h2 { margin-bottom: 24px; font-size: 27px; }
.field { margin-bottom: 15px; }
.field label, .contact-choice legend { display: block; margin-bottom: 7px; color: var(--secondary); font-size: 14px; font-weight: 750; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid #d9d4df;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(239,127,26,.1); outline: none; }
.field input[aria-invalid="true"] { border-color: #b32432; }
.field-error { display: block; min-height: 18px; padding-top: 3px; color: #a91828; font-size: 12px; line-height: 1.35; }
.contact-choice { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 15px; padding: 0; border: 0; }
.contact-choice legend { width: 100%; }
.contact-choice label { position: relative; cursor: pointer; }
.contact-choice input { position: absolute; opacity: 0; }
.contact-choice span { display: block; padding: 8px 11px; border: 1px solid #d9d4df; border-radius: 999px; font-size: 13px; font-weight: 650; }
.contact-choice input:checked + span { border-color: var(--secondary); background: var(--secondary); color: white; }
.contact-choice input:focus-visible + span { outline: 3px solid rgba(42,210,193,.55); }
.consent { display: flex; gap: 9px; align-items: flex-start; margin: 4px 0 0; font-size: 12px; line-height: 1.4; cursor: pointer; }
.consent input { flex: 0 0 17px; width: 17px; height: 17px; margin-top: 1px; accent-color: var(--primary); }
.consent a { color: var(--primary-dark); text-decoration: underline; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; text-align: center; }
.form-status { display: none; margin: 14px 0 0; padding: 10px; border-radius: 10px; font-size: 14px; text-align: center; }
.form-status.error { display: block; background: #fff0f1; color: #941e2b; }
.form-status.success { display: block; background: #edf9f3; color: #176846; }

.why-section { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 285px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -55px; bottom: -65px; border-radius: 50%; background: rgba(250,180,195,.22); }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(239,127,26,.3); box-shadow: var(--shadow); }
.feature-icon { display: grid; width: 52px; height: 52px; margin-bottom: 26px; place-items: center; border-radius: 16px; background: var(--lavender); color: var(--primary); font-weight: 850; }
.feature-card p { margin: 0; color: var(--muted); font-size: 15px; }

.steps-section { background: var(--lavender); }
.steps-list { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps-list::before { content: ""; position: absolute; top: 39px; right: 12%; left: 12%; height: 1px; background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent)); }
.steps-list li { position: relative; display: flex; gap: 18px; padding: 25px 22px; border: 1px solid rgba(61,59,123,.1); border-radius: 20px; background: white; box-shadow: 0 8px 22px rgba(61,59,123,.05); }
.step-number { position: relative; z-index: 1; display: grid; flex: 0 0 48px; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--secondary); color: white; font-weight: 800; box-shadow: 0 0 0 7px var(--lavender); }
.steps-list h3 { margin-top: 3px; font-size: 20px; }
.steps-list p { margin: 0; color: var(--muted); font-size: 14px; }

.program-section { background: var(--cream); }
.program-grid { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 72px; }
.program-photo { position: relative; min-height: 610px; overflow: hidden; border-radius: 28px 170px 28px 28px; background: #eee; box-shadow: var(--shadow); }
.program-photo img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; }
.photo-label { position: absolute; right: 22px; bottom: 22px; left: 22px; padding: 17px 20px; border-radius: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(9px); }
.photo-label strong, .photo-label span { display: block; }
.photo-label strong { color: var(--secondary); }
.photo-label span { color: var(--muted); font-size: 14px; }
.program-copy > p:not(.eyebrow) { color: var(--muted); }
.check-list { display: grid; gap: 13px; margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "?"; position: absolute; top: 0; left: 0; display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; background: rgba(74,164,133,.14); color: var(--green); font-size: 13px; font-weight: 900; }
.price-card { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px; border: 1px solid rgba(239,127,26,.18); border-radius: 18px; background: white; }
.price-card span, .price-card strong { display: block; }
.price-card span { margin-bottom: 4px; color: var(--muted); font-size: 13px; }
.price-card strong { color: var(--secondary); font-size: 18px; }

.doctors-section { background: white; }
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.doctor-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 8px 28px rgba(61,59,123,.07); transition: transform .25s, box-shadow .25s; }
.doctor-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.doctor-card img { width: 100%; aspect-ratio: 1 / .91; object-fit: cover; object-position: center top; background: var(--lavender); }
.doctor-body { padding: 25px; }
.doctor-role { min-height: 46px; margin-bottom: 10px; color: var(--primary-dark); font-size: 13px; font-weight: 650; }
.doctor-body h3 { min-height: 50px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--secondary); font-weight: 780; }
.text-link span { color: var(--primary); transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.doctors-more { margin: 34px 0 0; text-align: center; }
.doctors-more a { color: var(--primary-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }

.final-section { padding-top: 80px; background: linear-gradient(to bottom, #f5f3fb 0 48%, var(--cream) 48% 100%); }
.nszu-card {
  position: relative;
  display: grid;
  width: min(calc(100% - 80px), 1536px);
  max-width: none;
  min-height: 790px;
  grid-template-columns: 51% 49%;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(135deg, #efedff 0%, #ddd9f3 48%, #c9c2e8 100%);
  color: var(--secondary);
  box-shadow: 0 25px 70px rgba(61, 59, 123, .16);
}
.nszu-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 78px;
  right: 30px;
  width: 350px;
  height: 350px;
  border: 28px solid rgba(61, 59, 123, .08);
  border-radius: 50% 46% 54% 50%;
  filter: blur(3px);
  transform: rotate(-18deg);
}
.nszu-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 84px 64px 76px;
  background: #fff;
}
.nszu-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -12%;
  right: -112px;
  width: 230px;
  height: 124%;
  border-radius: 48% 54% 49% 51%;
  background: #fff;
  transform: rotate(-7deg);
}
.nszu-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--secondary);
  font-size: 16px;
  letter-spacing: .03em;
}
.nszu-kicker-icon {
  position: relative;
  display: grid;
  flex: 0 0 31px;
  width: 31px;
  height: 35px;
  place-items: center;
  clip-path: polygon(50% 0, 94% 13%, 94% 57%, 77% 82%, 50% 100%, 23% 82%, 6% 57%, 6% 13%);
  background: var(--primary);
  color: white;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}
.nszu-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--secondary);
  font-size: clamp(46px, 3.25vw, 58px);
  line-height: 1.09;
  letter-spacing: -.045em;
}
.nszu-copy .nszu-intro {
  max-width: 630px;
  margin-bottom: 24px;
  color: #323354;
  font-size: 20px;
  line-height: 1.52;
}
.nszu-list { gap: 0; margin: 0 0 28px; }
.nszu-list li {
  display: flex;
  min-height: 47px;
  align-items: center;
  max-width: 530px;
  padding: 8px 0 8px 54px;
  border-bottom: 1px solid #e4e2ef;
  color: #373756;
  font-size: 18px;
  line-height: 1.35;
}
.nszu-list li:last-child { border-bottom: 0; }
.nszu-list li::before {
  top: 7px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7168dc, #4f4aac);
  color: white;
  content: "\2713";
  font-size: 17px;
  font-weight: 600;
}
.nszu-cta {
  width: min(100%, 530px);
  min-height: 72px;
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 12px 10px 24px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(90deg, #373279, #423c91);
  color: white;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 15px 28px rgba(61, 59, 123, .24);
}
.nszu-cta:hover { background: linear-gradient(90deg, #2f2b6a, #393482); }
.nszu-cta-shield {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 33px;
  place-items: center;
  clip-path: polygon(50% 0, 94% 13%, 94% 57%, 77% 82%, 50% 100%, 23% 82%, 6% 57%, 6% 13%);
  background: #fff;
  color: #5650ba;
  font-size: 17px;
}
.nszu-cta-arrow {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 29px;
  font-weight: 400;
}
.nszu-note {
  display: flex;
  max-width: 610px;
  gap: 18px;
  align-items: center;
  margin: 22px 0 0 !important;
  color: #70718e;
  font-size: 15px;
  line-height: 1.55;
}
.nszu-note-icon {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 13px;
  background: #f0effc;
  color: #746fd0;
  font-size: 27px;
}
.nszu-image { position: relative; z-index: 3; min-height: 100%; pointer-events: none; }
.nszu-image::before {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}
.nszu-person {
  position: absolute;
  z-index: 1;
  bottom: 0;
  height: 760px;
  overflow: hidden;
}
.nszu-person img {
  position: absolute;
  bottom: 0;
  width: auto;
  max-width: none;
  height: 760px;
  filter: drop-shadow(0 18px 30px rgba(43, 38, 92, .12));
}
.nszu-person-one { z-index: 1; left: -50px; width: 430px; }
.nszu-person-one img { left: -48px; }
.nszu-person-two { z-index: 3; left: 190px; width: 325px; }
.nszu-person-two img { left: -363px; }
.nszu-person-three { z-index: 2; left: 400px; width: 410px; }
.nszu-person-three img { left: -625px; }
.nszu-team-mobile { display: none; }
.consultation-grid { display: grid; grid-template-columns: 1fr .88fr; align-items: start; gap: 70px; padding-top: 105px; }
.contact-panel { padding-top: 12px; }
.contact-panel > p { max-width: 620px; color: var(--muted); }
.contact-items { display: grid; gap: 12px; margin: 30px 0; }
.contact-item { display: flex; max-width: 590px; gap: 15px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.contact-item > span { display: grid; flex: 0 0 40px; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: var(--lavender); color: var(--primary); font-weight: 800; }
.contact-item small, .contact-item strong { display: block; }
.contact-item small { color: var(--muted); }
.contact-item strong { color: var(--secondary); }
.messenger-links { display: flex; gap: 10px; }
.messenger { padding: 11px 18px; border: 1px solid var(--secondary); border-radius: 999px; color: var(--secondary); font-weight: 700; }
.messenger:hover { background: var(--secondary); color: white; }
.final-form { padding: 38px; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.site-footer { padding: 44px 0 25px; border-top: 1px solid var(--line); background: white; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1.2fr 1fr auto; align-items: center; gap: 30px; }
.footer-brand img { width: 145px; }
.footer-contact, .footer-links { display: grid; gap: 6px; font-size: 14px; }
.footer-contact a { color: var(--secondary); font-weight: 800; }
.footer-contact span, .footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--primary); }
.social-links { display: flex; gap: 8px; }
.social-links a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--secondary); font-weight: 800; }
.social-links a:hover { border-color: var(--primary); background: var(--primary); color: white; }
.copyright { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.mobile-bar { display: none; }

@media (max-width: 1180px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr .75fr; }
  .hero-copy { grid-column: 1; }
  .hero-photo { grid-column: 2; grid-row: 1 / span 2; min-height: 540px; }
  .hero-form { grid-column: 1; max-width: 600px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: repeat(2, 1fr); }
  .program-grid { gap: 45px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .header-actions .phone-link span:last-child { display: none; }
  .hero { padding-top: 52px; }
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .hero-copy { grid-column: 1 / -1; }
  .hero-photo { grid-column: 1; grid-row: auto; min-height: 500px; }
  .hero-form { grid-column: 2; align-self: start; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .program-grid, .consultation-grid { grid-template-columns: 1fr; }
  .program-photo { min-height: 520px; }
  .program-photo img { min-height: 520px; }
  .doctor-grid { gap: 16px; }
  .doctor-body { padding: 20px; }
  .nszu-card { grid-template-columns: 1fr; }
  .nszu-image { max-height: 440px; }
  .nszu-copy { padding: 50px; }
  .consultation-grid { gap: 45px; }
}
@media (max-width: 680px) {
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 74px; font-size: 16px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 64px 0; }
  h1 { font-size: clamp(36px, 10vw, 42px); }
  h2 { font-size: 34px; }
  h3 { font-size: 21px; }
  .site-header .header-inner { min-height: 70px; }
  .brand img { width: 120px; }
  .header-actions .button { display: none; }
  .header-actions { margin-left: auto; }
  .phone-link span:first-child { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--lavender); }
  .hero { padding: 42px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy, .hero-photo, .hero-form { grid-column: 1; }
  .hero-lead { font-size: 18px; }
  .hero-buttons { display: grid; }
  .button { width: 100%; min-height: 50px; }
  .trust-list { margin-top: 25px; }
  .hero-photo { min-height: 440px; border-radius: 160px 160px 24px 24px; }
  .lead-form { padding: 24px 20px; }
  .feature-grid, .steps-list, .doctor-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .steps-list::before { top: 10px; bottom: 10px; left: 44px; width: 1px; height: auto; }
  .steps-list li { padding: 20px 18px; }
  .program-grid { gap: 40px; }
  .program-photo { min-height: 430px; border-radius: 24px 90px 24px 24px; }
  .program-photo img { min-height: 430px; }
  .price-card { align-items: stretch; flex-direction: column; }
  .doctor-role, .doctor-body h3 { min-height: auto; }
  .final-section { padding-top: 64px; }
  .nszu-card { width: min(calc(100% - 36px), var(--container)); border-radius: 24px; }
  .nszu-copy { padding: 34px 24px; }
  .nszu-image { max-height: 300px; }
  .consultation-grid { padding-top: 64px; }
  .two-fields { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .social-links { justify-content: center; }
  .copyright { text-align: center; }
  .mobile-bar { position: fixed; z-index: 150; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.97); box-shadow: 0 -8px 28px rgba(61,59,123,.12); backdrop-filter: blur(12px); }
  .mobile-bar a { display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 6px; border-radius: 999px; font-size: 14px; font-weight: 800; }
  .mobile-call { border: 1px solid var(--secondary); color: var(--secondary); }
  .mobile-book { background: var(--primary); color: white; }
}
@media (max-width: 360px) {
  .container { width: calc(100% - 32px); }
  h1 { font-size: 34px; }
  h2 { font-size: 31px; }
  .hero-photo { min-height: 390px; }
  .contact-choice span { padding-inline: 9px; }
  .mobile-bar { padding-inline: 8px; }
  .mobile-bar a { font-size: 13px; }
}

@media (max-width: 1320px) {
  .nszu-card { width: min(calc(100% - 48px), 1240px); min-height: 720px; }
  .nszu-copy { padding: 54px 58px 50px 52px; }
  .nszu-copy h2 { font-size: clamp(42px, 4vw, 52px); }
  .nszu-copy .nszu-intro { font-size: 18px; }
  .nszu-list li { font-size: 16px; }
  .nszu-person, .nszu-person img { height: 650px; }
  .nszu-person-one { left: -42px; width: 365px; }
  .nszu-person-one img { left: -41px; }
  .nszu-person-two { left: 150px; width: 280px; }
  .nszu-person-two img { left: -310px; }
  .nszu-person-three { left: 315px; width: 350px; }
  .nszu-person-three img { left: -533px; }
}

@media (max-width: 1050px) {
  .nszu-card { grid-template-columns: 1fr; min-height: 0; }
  .nszu-card::after { top: auto; right: -70px; bottom: 80px; }
  .nszu-copy { padding: 50px 46px 42px; }
  .nszu-copy::after { display: none; }
  .nszu-copy h2 { max-width: 680px; }
  .nszu-copy .nszu-intro, .nszu-list li, .nszu-cta, .nszu-note { max-width: 680px; }
  .nszu-image { min-height: 510px; max-height: none; }
  .nszu-person { display: none; }
  .nszu-team-mobile { position: absolute; right: 50%; bottom: 0; display: block; width: 820px; max-width: none; transform: translateX(50%); }
}

@media (max-width: 680px) {
  .final-section { padding-top: 46px; }
  .nszu-card { width: calc(100% - 32px); border-radius: 24px; }
  .nszu-copy { padding: 34px 22px 28px; }
  .nszu-kicker { gap: 11px; margin-bottom: 22px; font-size: 12px; letter-spacing: .035em; }
  .nszu-kicker-icon { flex-basis: 27px; width: 27px; height: 31px; font-size: 19px; }
  .nszu-copy h2 { margin-bottom: 20px; font-size: clamp(31px, 9.2vw, 39px); line-height: 1.12; }
  .nszu-copy .nszu-intro { margin-bottom: 20px; font-size: 16px; line-height: 1.55; }
  .nszu-list { margin-bottom: 24px; }
  .nszu-list li { min-height: 45px; padding-left: 47px; font-size: 14px; }
  .nszu-list li::before { width: 31px; height: 31px; font-size: 15px; }
  .nszu-cta { min-height: 64px; gap: 9px; padding: 8px 8px 8px 15px; border-radius: 20px; font-size: 13px; line-height: 1.25; }
  .nszu-cta-shield { flex-basis: 25px; width: 25px; height: 28px; font-size: 14px; }
  .nszu-cta-arrow { flex-basis: 44px; width: 44px; height: 44px; font-size: 24px; }
  .nszu-note { gap: 12px; margin-top: 18px !important; font-size: 12px; line-height: 1.5; }
  .nszu-note-icon { flex-basis: 46px; width: 46px; height: 46px; border-radius: 11px; font-size: 22px; }
  .nszu-image { min-height: 340px; }
  .nszu-team-mobile { width: 560px; }
}

@media (max-width: 400px) {
  .nszu-image { min-height: 292px; }
  .nszu-team-mobile { width: 500px; }
}

/* Final navigation treatment based on the supplied menu reference. */
@media (min-width: 1331px) {
  .site-header {
    padding: 14px 0;
    border: 0;
    background: rgba(248, 247, 252, .96);
    box-shadow: none;
    backdrop-filter: blur(16px);
  }
  .site-header .container {
    width: min(calc(100% - 48px), 1544px);
    max-width: none;
  }
  .site-header .header-inner {
    min-height: 108px;
    padding: 0 28px;
    gap: 0;
    border: 1px solid rgba(61, 59, 123, .04);
    border-radius: 20px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 42px rgba(61, 59, 123, .09);
  }
  .brand-lockup { flex: 0 0 198px; width: 198px; height: 78px; }
  .brand-lockup .alternatyva-mark { top: 0; left: 0; width: 198px; }
  .main-nav {
    flex: 0 1 auto;
    gap: 38px;
    margin-left: 64px;
  }
  .main-nav a {
    position: relative;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
  }
  .main-nav a:nth-child(n+3)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    width: 1px;
    height: 28px;
    background: #ddd9ef;
    transform: translateY(-50%);
  }
  .header-actions { gap: 18px; margin-left: auto; }
  .phone-link {
    min-height: 60px;
    gap: 13px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #faf9ff, #f0eef9);
    color: var(--secondary);
    font-size: 15px;
    font-weight: 750;
  }
  .phone-link .phone-glyph {
    display: block;
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .site-header .header-cta {
    width: auto;
    min-height: 66px;
    gap: 14px;
    padding: 14px 24px 14px 26px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f67f11, #ef6910);
    color: white;
    font-size: 15px;
    font-weight: 750;
    white-space: nowrap;
    box-shadow: 0 13px 28px rgba(239, 105, 16, .2);
  }
  .site-header .header-cta:hover {
    background: linear-gradient(135deg, #e9700b, #dc5d09);
    box-shadow: 0 16px 30px rgba(239, 105, 16, .26);
  }
  .header-cta-arrow { font-size: 24px; font-weight: 400; line-height: 1; }
}

@media (min-width: 1181px) and (max-width: 1330px) {
  .main-nav a:nth-child(n+3)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    width: 1px;
    height: 22px;
    background: #ddd9ef;
    transform: translateY(-50%);
  }
  .phone-link {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f4f2fb;
  }
  .phone-link .phone-glyph {
    display: block;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.8;
  }
  .site-header .header-cta { gap: 8px; }
  .header-cta-arrow { font-size: 19px; }
}

@media (max-width: 1180px) {
  .site-header .phone-link {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border-radius: 50%;
    background: #f4f2fb;
  }
  .site-header .phone-link .phone-glyph { width: 22px; height: 22px; }
}

@media (max-width: 1330px) {
  .steps-list .step-illustration {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
  }
  .steps-list .step-illustration img { display: block; width: 48px; height: 48px; }
}

@media (max-width: 680px) {
  .steps-list li { align-items: flex-start; gap: 12px; }
  .steps-list .step-number { flex-basis: 44px; width: 44px; height: 44px; }
  .steps-list .step-illustration { flex-basis: 44px; width: 44px; height: 44px; }
  .steps-list .step-illustration img { width: 44px; height: 44px; }
}

@media (max-width: 1180px) {
  .phone-link .phone-glyph {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.8;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


.thank-you-page{display:grid;min-height:100vh;place-items:center;padding:30px;background:linear-gradient(135deg,var(--cream),var(--lavender))}
.thank-you-card{width:min(100%,680px);padding:55px;text-align:center;border:1px solid var(--line);border-radius:30px;background:#fff;box-shadow:var(--shadow)}
.thank-you-card>img{width:150px;margin:0 auto 28px}.thank-you-icon{display:grid;width:68px;height:68px;margin:0 auto 22px;place-items:center;border-radius:50%;background:rgba(74,164,133,.14);color:var(--green);font-size:30px;font-weight:900}
.thank-you-card h1{font-size:clamp(38px,6vw,58px)}.thank-you-card>p:not(.eyebrow){max-width:530px;margin:0 auto 28px;color:var(--muted)}.thank-you-phone{display:block;margin-top:20px;color:var(--secondary);font-weight:800}

/* Header refinement — reference layout */
@media (min-width: 1181px) {
  .site-header { box-shadow: 0 7px 22px rgba(61, 59, 123, .06); }
  .header-inner { min-height: 100px; gap: 26px; }
  .brand img { width: 164px; }
  .main-nav { flex: 1 1 auto; justify-content: flex-start; gap: clamp(18px, 2vw, 34px); margin-left: 38px; }
  .main-nav a { font-size: 14px; font-weight: 750; }
  .header-actions { flex: 0 0 auto; gap: 22px; margin-left: 0; }
  .phone-link { font-size: 15px; font-weight: 800; }
  .phone-link .phone-glyph { display: inline; color: var(--primary); font-size: 20px; line-height: 1; }
  .site-header .header-cta { min-height: 50px; padding: 12px 22px; border-radius: 999px; font-size: 14px; white-space: nowrap; }
}@media (min-width: 1181px) and (max-width: 1320px) {
  .header-inner { gap: 18px; }
  .brand img { width: 148px; }
  .main-nav { gap: 14px; margin-left: 22px; }
  .main-nav a { font-size: 13px; }
  .header-actions { gap: 14px; }
  .phone-link { font-size: 14px; }
  .site-header .header-cta { padding-inline: 16px; font-size: 13px; }
}
/* Desktop header matched to the supplied 1600 px reference */
@media (min-width: 1331px) {
  .site-header .container { width: min(calc(100% - 64px), 1408px); }
  .header-inner { min-height: 100px; gap: 0; }
  .brand-lockup { position: relative; display: block; flex: 0 0 164px; width: 164px; height: 66px; }
  .brand-lockup .alternatyva-mark { position: absolute; left: 0; bottom: 0; width: 164px; height: auto; }
  .brand-lockup .ovumia-mark { position: absolute; z-index: 1; top: -2px; left: 0; width: 82px; height: auto; }
  .main-nav { flex: 0 0 auto; gap: 42px; margin-left: 96px; }
  .main-nav a { font-size: 14px; font-weight: 760; }
  .header-actions { gap: 18px; margin-left: auto; }
  .phone-link { font-size: 15px; }
  .site-header .header-cta { width: 230px; min-height: 50px; padding: 12px 16px; font-size: 14px; }
}
@media (min-width: 1181px) and (max-width: 1330px) {
  .brand-lockup { position: relative; display: block; flex: 0 0 148px; width: 148px; height: 60px; }
  .brand-lockup .alternatyva-mark { position: absolute; left: 0; bottom: 0; width: 148px; height: auto; }
  .brand-lockup .ovumia-mark { position: absolute; z-index: 1; top: -1px; left: 0; width: 74px; height: auto; }
}
/* First-screen composition matched to the supplied 1600 px reference */
.hero-benefit-bar { display: none; }
@media (min-width: 1331px) {
  .hero { padding: 44px 0 47px; min-height: 900px; background: radial-gradient(circle at 55% 23%, rgba(255, 238, 174, .42) 0 16%, transparent 16.4%), linear-gradient(110deg, #fff 0%, #fff 47%, #f5f3fb 71%, #fff6f0 100%); }
  .hero::before { width: 580px; height: 600px; top: 5px; right: 6%; background: rgba(232, 225, 255, .56); border-radius: 50% 50% 44% 56%; transform: rotate(6deg); }
  .hero .container { width: min(calc(100% - 64px), 1408px); }
  .hero-grid { grid-template-columns: 510px 430px 372px; column-gap: 48px; row-gap: 0; align-items: start; }
  .hero-copy { padding-top: 17px; }
  .hero .eyebrow { margin-bottom: 23px; font-size: 14px; letter-spacing: .13em; }
  .hero h1 { max-width: 510px; margin-bottom: 25px; font-size: 64px; line-height: 1.04; letter-spacing: -.045em; }
  .hero h1 span { display: block; color: var(--primary); }
  .hero-lead { max-width: 470px; margin-bottom: 29px; font-size: 17px; line-height: 1.48; }
  .hero-buttons { display: grid; width: 340px; gap: 11px; }
  .hero-buttons .button { min-height: 52px; justify-content: flex-start; padding-inline: 37px 22px; font-size: 15px; }
  .hero-buttons .button::before { position: absolute; margin-left: -23px; font-size: 17px; }
  .hero-buttons .button:first-child::before { content: "\1F4C5"; }
  .hero-buttons .button-outline::before { content: "\2662"; }
  .trust-list { grid-template-columns: repeat(3, 1fr); width: 590px; gap: 17px; margin-top: 42px; }
  .trust-list li { gap: 10px; color: var(--secondary); font-size: 12px; font-weight: 700; line-height: 1.38; }
  .trust-list span { flex: 0 0 42px; width: 42px; height: 42px; background: #f1effa; color: var(--secondary); font-size: 17px; }
  .hero-photo { grid-column: 2; min-height: 650px; height: 650px; border-radius: 235px 235px 92px 92px; box-shadow: none; background: #f5f2ee; }
  .hero-photo::after { background: linear-gradient(to top, rgba(43, 39, 119, .25), transparent 46%); }
  .hero-photo img { object-position: center top; }
  .hero-photo figcaption { right: auto; bottom: 12px; left: 38px; width: 282px; padding: 18px 19px; border-radius: 18px 4px 18px 18px; background: rgba(54, 47, 136, .92); box-shadow: 0 15px 26px rgba(50, 41, 122, .17); }
  .hero-photo figcaption strong { font-size: 17px; }
  .hero-photo figcaption span { font-size: 13px; line-height: 1.38; }
  .hero-form { grid-column: 3; width: 372px; min-height: 658px; padding: 33px 34px 29px; border-radius: 21px; box-shadow: 0 15px 33px rgba(61, 59, 123, .13); }
  .hero-form .form-kicker { margin-bottom: 15px; font-size: 13px; letter-spacing: .15em; }
  .hero-form .form-heading h2 { margin-bottom: 29px; font-size: 31px; line-height: 1.15; letter-spacing: -.035em; }
  .hero-form .field { margin-bottom: 14px; }
  .hero-form .field label, .hero-form .contact-choice legend { margin-bottom: 7px; font-size: 14px; }
  .hero-form .field input { min-height: 50px; border-radius: 11px; }
  .hero-form .contact-choice { gap: 7px; margin-bottom: 16px; }
  .hero-form .contact-choice span { padding: 9px 14px; font-size: 13px; }
  .hero-form .consent { margin-top: 2px; font-size: 12px; }
  .hero-form .button-block { min-height: 56px; margin-top: 4px; font-size: 15px; }
  .hero-form .form-note { margin-top: 13px; font-size: 12px; line-height: 1.5; }
  .hero-benefit-bar { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 116px; margin-top: 30px; padding: 21px 68px; border: 1px solid rgba(61, 59, 123, .04); border-radius: 18px; background: rgba(249, 249, 254, .82); box-shadow: 0 12px 28px rgba(61, 59, 123, .035); }
  .hero-benefit { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 14px; padding: 0 25px; border-right: 1px solid #d8d4e5; }
  .hero-benefit:first-child { padding-left: 0; }
  .hero-benefit:last-child { padding-right: 0; border-right: 0; }
  .hero-benefit > span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--secondary); font-size: 28px; line-height: 1; }
  .hero-benefit p { margin: 0; color: var(--secondary); font-size: 13px; line-height: 1.34; }
  .hero-benefit strong, .hero-benefit small { display: block; }
  .hero-benefit strong { margin-bottom: 3px; font-size: 14px; }
  .hero-benefit small { font-size: 13px; }
}@media (min-width: 1331px) {
  .hero-form { min-height: 658px; margin-top: 4px; }
  .hero-form .field-error { min-height: 0; padding-top: 0; }
  .hero-form .field-error:empty { display: none; }
}@media (min-width: 1331px) {
  .trust-list li span { font-size: 0; }
  .trust-list li span::before { font-size: 18px; }
  .trust-list li:nth-child(1) span::before { content: "\2662"; }
  .trust-list li:nth-child(2) span::before { content: "\263B"; }
  .trust-list li:nth-child(3) span::before { content: "\2697"; }
  .hero-form .button-block::before { content: "\27A4"; margin-right: 10px; font-size: 18px; }
}
/* Separate brand layers — no visual overlap */
@media (min-width: 1331px) {
  .brand-lockup { height: 66px; overflow: visible; }
  .brand-lockup .ovumia-mark { top: 2px; left: 0; width: 76px; }
  .brand-lockup .alternatyva-mark { top: 25px; bottom: auto; left: 13px; width: 145px; }
  .phone-link { display: inline-flex; flex-wrap: nowrap; }
  .phone-link .phone-glyph { flex: 0 0 20px; width: 20px; text-align: center; }
}
@media (min-width: 1181px) and (max-width: 1330px) {
  .brand-lockup { height: 60px; overflow: visible; }
  .brand-lockup .ovumia-mark { top: 2px; left: 0; width: 70px; }
  .brand-lockup .alternatyva-mark { top: 21px; bottom: auto; left: 11px; width: 130px; }
  .phone-link .phone-glyph { flex: 0 0 19px; width: 19px; text-align: center; }
}
/* "Care and precision" block matched to the supplied reference */
@media (min-width: 1331px) {
  .why-section { position: relative; overflow: hidden; padding: 94px 0 70px; background: radial-gradient(circle at 50% 32%, #fff 0, #fffdfd 33%, #fbf8fb 75%, #f7f2f7 100%); }
  .why-section::before { content: ""; position: absolute; top: 0; left: 0; width: 406px; height: 200px; border-radius: 0 0 100% 0; background: radial-gradient(circle, rgba(186, 177, 245, .48) 0 4px, transparent 5px) 10px 10px / 28px 24px, linear-gradient(135deg, rgba(245, 241, 255, .92), rgba(255, 255, 255, 0)); opacity: .8; }
  .why-section::after { content: ""; position: absolute; right: -120px; bottom: -260px; width: 560px; height: 560px; border-radius: 50%; background: rgba(255, 220, 231, .62); }
  .why-section .container { position: relative; z-index: 1; width: min(calc(100% - 128px), 1532px); }
  .why-section .section-heading { max-width: 970px; margin-bottom: 36px; }
  .why-section .eyebrow { margin-bottom: 23px; font-size: 16px; letter-spacing: .13em; }
  .why-section h2 { margin-bottom: 25px; font-size: 62px; line-height: 1.18; letter-spacing: -.045em; }
  .why-section .section-heading > p:last-child { max-width: 880px; margin-inline: auto; font-size: 18px; line-height: 1.55; }
  .feature-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .feature-card { min-height: 372px; padding: 32px; border: 1px solid rgba(61, 59, 123, .12); border-radius: 28px; box-shadow: 0 18px 36px rgba(61, 59, 123, .07); }
  .feature-card::after { width: 150px; height: 150px; right: -62px; bottom: -74px; background: rgba(255, 215, 228, .72); }
  .feature-card:hover { transform: translateY(-6px); box-shadow: 0 25px 44px rgba(61, 59, 123, .12); }
  .feature-icon { width: 60px; height: 60px; margin: 0; border-radius: 14px; background: #f3f1fb; color: var(--primary); font-size: 27px; }
  .feature-illustration { position: absolute; top: 32px; right: 34px; display: grid; width: 90px; height: 90px; place-items: center; border-radius: 50%; background: #f2f0fb; color: var(--secondary); }
  .feature-illustration::before { font-size: 39px; font-weight: 500; line-height: 1; }
  .feature-card:nth-child(1) .feature-illustration::before { content: "☷"; }
  .feature-card:nth-child(2) .feature-illustration::before { content: "♙"; }
  .feature-card:nth-child(3) .feature-illustration::before { content: "⚗"; }
  .feature-card:nth-child(4) .feature-illustration::before { content: "♡"; font-size: 47px; }
  .feature-illustration { background: transparent; }
  .feature-illustration::before { display: none; }
  .feature-illustration img { display: block; width: 100%; height: 100%; }
  .feature-card h3 { max-width: 270px; margin: 42px 0 18px; font-size: 27px; line-height: 1.28; letter-spacing: -.025em; }
  .feature-card p { max-width: 290px; margin: 0; color: #5f6284; font-size: 17px; line-height: 1.62; }
}
@media (max-width: 1330px) {
  .feature-illustration { display: none; }
}@media (min-width: 1331px) {
  .why-section { padding-top: 68px; }
  .why-section .section-heading { max-width: 940px; }
}
/* IVF route block matched to the supplied reference */
@media (min-width: 1331px) {
  .steps-section { position: relative; overflow: hidden; padding: 88px 0 38px; background: radial-gradient(circle at 51% 35%, #fff 0, #fffdfd 38%, #faf8fc 78%, #f7f3fa 100%); }
  .steps-section::before { content: ""; position: absolute; top: 100px; left: 0; width: 188px; height: 620px; border-radius: 0 42% 42% 0; background: radial-gradient(circle, rgba(182, 174, 242, .5) 0 3px, transparent 4px) 2px 18px / 28px 24px, linear-gradient(90deg, rgba(244, 241, 255, .86), transparent); }
  .steps-section::after { content: ""; position: absolute; top: 246px; right: -164px; width: 330px; height: 740px; border-radius: 50%; background: rgba(255, 223, 233, .55); }
  .steps-section .container { position: relative; z-index: 1; width: min(calc(100% - 64px), 1216px); }
  .steps-section .split-heading { grid-template-columns: 450px 1fr; align-items: center; gap: 61px; margin-bottom: 57px; padding-left: 64px; }
  .steps-section .eyebrow { margin-bottom: 21px; font-size: 14px; letter-spacing: .15em; }
  .steps-section h2 { margin: 0; font-size: 64px; line-height: 1.08; letter-spacing: -.05em; }
  .steps-section .split-heading > p { min-height: 80px; margin: 0; padding: 10px 0 10px 62px; border-left: 1px solid #c8c4da; color: #555a82; font-size: 18px; line-height: 1.7; }
  .steps-list { grid-template-columns: repeat(3, 1fr); gap: 34px 52px; }
  .steps-list::before { display: none; }
  .steps-list li { display: block; min-height: 268px; padding: 116px 27px 25px; overflow: visible; border: 1px solid rgba(61, 59, 123, .06); border-radius: 24px; box-shadow: 0 15px 29px rgba(61, 59, 123, .08); }
  .step-number { position: absolute; top: 27px; left: 25px; display: grid; width: 70px; height: 70px; place-items: center; border-radius: 50%; background: var(--secondary); color: white; font-size: 25px; box-shadow: 0 0 0 7px #f6f4fb; }
  .step-number::after { content: ""; position: absolute; top: -7px; right: -8px; width: 44px; height: 44px; border-top: 3px solid var(--primary); border-right: 3px solid var(--primary); border-radius: 0 45px 0 0; transform: rotate(-18deg); }
  .step-illustration { position: absolute; top: 30px; left: 128px; display: grid; width: 72px; height: 72px; place-items: center; color: var(--secondary); }
  .step-illustration::before { font-size: 54px; line-height: 1; }
  .step-illustration::before { display: none; }
  .step-illustration img { display: block; width: 100%; height: 100%; }
  .steps-list li:nth-child(1) .step-illustration::before { content: "♙"; }
  .steps-list li:nth-child(2) .step-illustration::before { content: "☷"; }
  .steps-list li:nth-child(3) .step-illustration::before { content: "⚗"; }
  .steps-list li:nth-child(4) .step-illustration::before { content: "◉"; }
  .steps-list li:nth-child(5) .step-illustration::before { content: "✿"; }
  .steps-list li:nth-child(6) .step-illustration::before { content: "♡"; font-size: 64px; }
  .steps-list h3 { margin: 0 0 8px; font-size: 25px; line-height: 1.15; }
  .steps-list p { margin: 0; color: #5f6284; font-size: 16px; line-height: 1.52; }
  .step-arrow { position: absolute; bottom: 19px; left: 25px; display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: #faf5f7; color: var(--primary); font-size: 35px; font-weight: 300; line-height: 1; }
  .steps-list li:nth-child(1)::after, .steps-list li:nth-child(2)::after, .steps-list li:nth-child(4)::after, .steps-list li:nth-child(5)::after { content: ""; position: absolute; z-index: 2; top: 126px; right: -53px; width: 53px; border-top: 2px dotted var(--primary); }
  .steps-list li:nth-child(3)::after { content: ""; position: absolute; z-index: 2; top: 126px; right: -99px; width: 89px; height: 293px; border-top: 2px dotted var(--primary); border-right: 2px dotted var(--primary); border-bottom: 2px dotted var(--primary); border-radius: 0 116px 116px 0; }
}
@media (max-width: 1330px) {
  .step-illustration, .step-arrow { display: none; }
}@media (min-width: 1331px) { .steps-section .split-heading { margin-bottom: 43px; } }
/* New infertility-treatment hero, based on the supplied final layout */
.hero-feature-list, .hero-nszu-link { display: none; }
@media (min-width: 1331px) {
  .hero { min-height: 820px; padding: 72px 0 84px; background: radial-gradient(circle at 48% 34%, rgba(255, 245, 213, .42) 0 15%, transparent 34%), linear-gradient(112deg, #f7f4ef 0%, #fbfaf7 50%, #f4f0eb 100%); }
  .hero::before { display: none; }
  .hero .container { width: min(calc(100% - 112px), 1532px); }
  .hero-grid { grid-template-columns: 545px 457px 476px; column-gap: 27px; align-items: start; }
  .hero-copy { width: 430px; padding-top: 13px; }
  .hero .eyebrow { margin-bottom: 30px; font-size: 15px; letter-spacing: .14em; }
  .hero h1 { max-width: 440px; margin: 0 0 23px; font-size: 55px; line-height: 1.12; letter-spacing: -.05em; }
  .hero h1 span { display: block; }
  .hero .hero-title-main { color: var(--secondary); }
  .hero .hero-title-accent { margin-top: 21px; color: var(--primary); font-size: 30px; line-height: 1.15; letter-spacing: -.025em; }
  .hero-lead { max-width: 430px; margin: 0 0 27px; color: #626584; font-size: 17px; line-height: 1.7; }
  .hero-feature-list { display: block; width: 430px; margin: 0 0 28px; padding: 0; list-style: none; }
  .hero-feature-list li { display: grid; grid-template-columns: 58px 1fr; align-items: center; min-height: 77px; gap: 19px; border-bottom: 1px solid #dfdce1; color: #52557b; }
  .hero-feature-list li:last-child { border-bottom: 0; }
  .hero-feature-list li > span { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 50%; background: #eeecf7; color: var(--secondary); font-size: 26px; }
  .hero-feature-list p { margin: 0; font-size: 17px; line-height: 1.35; }
  .hero-primary { width: 430px; min-height: 66px; padding: 15px 34px; border-radius: 999px; font-size: 19px; }
  .hero-primary span { margin-right: 14px; font-size: 23px; }
  .hero-nszu-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 39px; color: var(--secondary); font-size: 17px; font-weight: 760; }
  .hero-nszu-link span { color: var(--primary); font-size: 24px; }
  .hero-photo { grid-column: 2; min-height: 738px; height: 738px; margin: 0; border-radius: 26px; background: #e7e4df; box-shadow: 0 18px 38px rgba(61, 59, 123, .09); }
  .hero-photo::after { background: linear-gradient(to top, rgba(28, 25, 49, .22), transparent 38%); }
  .hero-photo img { object-position: center top; }
  .hero-photo figcaption { right: auto; bottom: 25px; left: 26px; display: flex; align-items: center; width: 342px; padding: 15px 20px; border-radius: 15px; background: rgba(255, 255, 255, .95); color: var(--secondary); box-shadow: 0 12px 24px rgba(44, 38, 76, .1); }
  .hero-photo figcaption strong { margin: 0; font-size: 18px; }
  .hero-photo figcaption > span { display: inline; margin: 0 12px; color: var(--primary); font-size: 20px; }
  .hero-photo figcaption em { color: #4d5074; font-size: 16px; font-style: normal; }
  .hero-form { grid-column: 3; width: 476px; min-height: 738px; margin: 0; padding: 47px 36px 31px; border: 0; border-radius: 28px; box-shadow: 0 16px 36px rgba(61, 59, 123, .10); }
  .hero-form .form-kicker { margin-bottom: 24px; font-size: 15px; letter-spacing: .15em; }
  .hero-form .form-heading h2 { margin-bottom: 31px; font-size: 31px; line-height: 1.17; letter-spacing: -.04em; }
  .hero-form .field { margin-bottom: 17px; }
  .hero-form .field label, .hero-form .contact-choice legend { margin-bottom: 8px; font-size: 14px; }
  .hero-form .field input { min-height: 56px; padding-inline: 17px; border-radius: 15px; font-size: 17px; }
  .hero-form .contact-choice { gap: 11px; margin-bottom: 22px; }
  .hero-form .contact-choice span { padding: 12px 18px; border-radius: 999px; font-size: 14px; }
  .hero-form .consent { margin-top: 0; font-size: 14px; }
  .hero-form .consent input { width: 20px; height: 20px; }
  .hero-form .button-block { min-height: 61px; margin-top: 17px; font-size: 18px; }
  .hero-form .button-block::before { display: none; }
  .hero-form .form-note { margin-top: 21px; font-size: 14px; line-height: 1.55; }
  .hero-form .field-error { min-height: 0; padding-top: 0; }
  .hero-form .field-error:empty { display: none; }
}
@media (max-width: 1330px) {
  .hero-feature-list { display: grid; gap: 9px; margin: 24px 0; padding: 0; list-style: none; }
  .hero-feature-list li { display: flex; gap: 10px; align-items: center; color: var(--secondary); font-weight: 650; }
  .hero-feature-list li > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--lavender); }
  .hero-feature-list p { margin: 0; }
  .hero-primary { width: 100%; }
  .hero-nszu-link { display: inline-flex; gap: 8px; margin-top: 22px; color: var(--secondary); font-weight: 750; }
}@media (min-width: 1331px) {
  .hero-grid { grid-template-columns: 1.193fr 1fr 1.042fr; }
  .hero-copy { width: 500px; }
  .hero h1 { max-width: 500px; font-size: 52px; }
}
@media (min-width: 1632px) {
  .hero .container { margin-left: calc((100vw - 1500px) / 2); margin-right: auto; }
}
/* One official combined clinic logo: logo.png already includes Ovumia */
@media (min-width: 1331px) {
  .brand-lockup { width: 164px; height: 66px; }
  .brand-lockup .ovumia-mark { display: none; }
  .brand-lockup .alternatyva-mark { top: 0; left: 0; width: 164px; }
}
@media (min-width: 1181px) and (max-width: 1330px) {
  .brand-lockup { width: 148px; height: 60px; }
  .brand-lockup .ovumia-mark { display: none; }
  .brand-lockup .alternatyva-mark { top: 0; left: 0; width: 148px; }
}
/* Hero compact refinement: unified 38 / 31 / 31 composition */
.hero-svg, .button-svg, .pill-svg { fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.hero-svg { width: 24px; height: 24px; }
.button-svg { width: 21px; height: 21px; flex: 0 0 21px; }
.pill-svg { width: 17px; height: 17px; flex: 0 0 17px; }
@media (min-width: 1331px) {
  .site-header .header-inner { min-height: 92px; }
  .brand-lockup { height: 62px; }
  .brand-lockup .alternatyva-mark { width: 160px; }
  .hero { min-height: 0; padding: 56px 0 64px; background: radial-gradient(circle at 47% 32%, rgba(255, 244, 210, .18) 0 14%, transparent 32%), linear-gradient(112deg, #f7f4ef 0%, #fbfaf7 52%, #f7f4ef 100%); }
  .hero::before { display: block; width: 430px; height: 470px; top: 16px; right: 9%; opacity: .4; background: rgba(232, 225, 255, .42); }
  .hero .container { width: min(calc(100% - 64px), 1440px); margin-inline: auto; }
  .hero-grid { grid-template-columns: 38fr 31fr 31fr; column-gap: 26px; align-items: start; }
  .hero-copy { width: 100%; padding-top: 7px; }
  .hero .eyebrow { margin-bottom: 23px; font-size: 14px; letter-spacing: .13em; }
  .hero h1 { max-width: 540px; margin: 0 0 16px; font-size: 56px; line-height: 1.08; }
  .hero .hero-title-accent { margin-top: 16px; font-size: 27px; line-height: 1.15; }
  .hero-lead { max-width: 500px; margin: 0 0 19px; font-size: 18px; line-height: 1.55; }
  .hero-feature-list { width: 340px; margin: 0 0 20px; }
  .hero-feature-list li { grid-template-columns: 42px 1fr; min-height: 52px; gap: 12px; }
  .hero-feature-list li > span { display: grid; width: 42px; height: 42px; place-items: center; background: #eeecf7; color: var(--secondary); }
  .hero-feature-list li > .hero-svg { display: grid; width: 42px; height: 42px; padding: 9px; place-items: center; border-radius: 50%; background: #eeecf7; color: var(--secondary); }
  .hero-feature-list p { font-size: 16px; line-height: 1.3; }
  .hero-primary { width: 340px; min-height: 56px; padding: 13px 24px; font-size: 16px; }
  .hero-primary span { display: inline-flex; margin: 0 11px 0 0; }
  .hero-nszu-link { margin-top: 23px; font-size: 15px; }
  .hero-nszu-link span { font-size: 20px; }
  .hero-photo { grid-column: 2; width: 100%; min-height: 0; height: auto; aspect-ratio: 4 / 5; border-radius: 28px; box-shadow: 0 14px 32px rgba(61, 59, 123, .08); }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .hero-photo figcaption { right: auto; bottom: 18px; left: 50%; width: max-content; max-width: calc(100% - 36px); min-height: 58px; padding: 12px 18px; transform: translateX(-50%); border-radius: 14px; background: rgba(255, 255, 255, .88); white-space: nowrap; }
  .hero-photo figcaption strong { font-size: 16px; }
  .hero-photo figcaption > span { margin: 0 10px; font-size: 16px; }
  .hero-photo figcaption em { font-size: 14px; }
  .hero-form { grid-column: 3; justify-self: end; width: 100%; max-width: 390px; min-height: 0; margin: 0; padding: 32px; border-radius: 28px; box-shadow: 0 14px 30px rgba(61, 59, 123, .08); }
  .hero-form .form-kicker { margin-bottom: 14px; font-size: 14px; }
  .hero-form .form-heading h2 { margin-bottom: 22px; font-size: 28px; line-height: 1.17; }
  .hero-form .field { margin-bottom: 16px; }
  .hero-form .field input { min-height: 52px; border-radius: 13px; font-size: 16px; }
  .hero-form .contact-choice { gap: 8px; margin-bottom: 16px; }
  .hero-form .contact-choice span { display: inline-flex; min-height: 40px; align-items: center; gap: 6px; padding: 8px 12px; font-size: 13px; }
  .hero-form .contact-choice .pill-svg { display: inline-block; }
  .hero-form .consent { font-size: 12px; }
  .hero-form .consent input { width: 18px; height: 18px; }
  .hero-form .button-block { min-height: 56px; margin-top: 13px; font-size: 16px; }
  .hero-form .form-note { max-width: 310px; margin: 14px auto 0; font-size: 12px; line-height: 1.45; }
}
@media (min-width: 681px) and (max-width: 1330px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { grid-column: 1 / -1; }
  .hero-photo { grid-column: 1; grid-row: auto; aspect-ratio: 4 / 5; min-height: 0; }
  .hero-form { grid-column: 2; max-width: none; }
}
@media (max-width: 680px) {
  .hero h1 { font-size: clamp(38px, 10vw, 42px); }
  .hero-title-accent { font-size: 26px; }
  .hero-lead { line-height: 1.55; }
  .hero-feature-list { margin-block: 22px; }
  .hero-feature-list li { min-height: 52px; border-bottom: 1px solid var(--line); }
  .hero-feature-list li > .hero-svg { width: 42px; height: 42px; padding: 9px; border-radius: 50%; background: var(--lavender); }
  .hero-primary { min-height: 56px; }
  .hero-photo { aspect-ratio: 4 / 5; min-height: 0; }
  .hero-photo figcaption { left: 50%; width: max-content; max-width: calc(100% - 32px); transform: translateX(-50%); white-space: nowrap; }
  .hero-form { box-shadow: none; }
}

/* Hero refresh matched to the supplied 1600 × 900 reference. */
.hero-photo::after { display: none; }
.hero-photo figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--secondary);
}
.hero-photo figcaption .support-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-caption-copy { display: block; min-width: 0; }
.hero-feature-icon { display: block; border-radius: 50%; object-fit: cover; }
.hero-photo figcaption .hero-caption-copy strong,
.hero-photo figcaption .hero-caption-copy em { display: block; }
.hero-photo figcaption .hero-caption-copy strong { margin: 0 0 3px; color: var(--secondary); }
.hero-photo figcaption .hero-caption-copy em { color: #626584; font-style: normal; }

@media (min-width: 1331px) {
  .site-header { border-bottom: 0; box-shadow: 0 4px 18px rgba(61, 59, 123, .035); }
  .site-header .container { width: min(calc(100% - 96px), 1408px); }
  .site-header .header-inner { min-height: 88px; }
  .brand-lockup { width: 164px; height: 64px; }
  .brand-lockup .alternatyva-mark { width: 164px; }
  .main-nav { gap: 42px; margin-left: 84px; }
  .main-nav a { font-size: 14px; font-weight: 760; }
  .header-actions { gap: 20px; }
  .phone-link { font-size: 15px; }
  .site-header .header-cta { width: 228px; min-height: 50px; padding-inline: 18px; font-size: 14px; }

  .hero {
    min-height: 812px;
    padding: 42px 0 56px;
    background: #faf9f7;
  }
  .hero::before {
    display: block;
    width: 430px;
    height: 500px;
    top: 28px;
    right: 5.5%;
    opacity: .48;
    border-radius: 50%;
    background: #eeeafa;
    transform: rotate(8deg);
  }
  .hero .container { width: min(calc(100% - 112px), 1424px); margin-inline: auto; }
  .hero-grid {
    grid-template-columns: 442px 486px minmax(390px, 1fr);
    column-gap: 34px;
    align-items: start;
  }
  .hero-copy { width: 442px; padding: 28px 0 0; }
  .hero .eyebrow { margin-bottom: 30px; font-size: 14px; letter-spacing: .145em; }
  .hero h1 {
    max-width: 470px;
    margin: 0 0 22px;
    font-size: 52px;
    line-height: 1.035;
    letter-spacing: -.047em;
  }
  .hero .hero-title-main { display: block; width: 470px; }
  .hero .hero-title-accent { margin-top: 23px; font-size: 29px; line-height: 1.12; letter-spacing: -.03em; }
  .hero-lead { max-width: 420px; margin: 0 0 22px; font-size: 17px; line-height: 1.62; }
  .hero-feature-list { width: 360px; margin: 0 0 23px; }
  .hero-feature-list li { grid-template-columns: 48px 1fr; min-height: 57px; gap: 15px; }
  .hero-feature-list li > .hero-svg {
    width: 46px;
    height: 46px;
    padding: 10px;
    border-radius: 50%;
    background: #efedf8;
    color: var(--secondary);
  }
  .hero-feature-list li > .hero-feature-icon { width: 46px; height: 46px; }
  .hero-feature-list p { font-size: 16px; line-height: 1.3; }
  .hero-primary { width: 360px; min-height: 59px; padding: 14px 24px; font-size: 17px; }
  .hero-nszu-link { margin-top: 24px; font-size: 15px; }

  .hero-photo {
    grid-column: 2;
    width: 486px;
    height: 720px;
    min-height: 720px;
    aspect-ratio: auto;
    border-radius: 26px;
    background: #f3f0eb;
    box-shadow: 0 15px 34px rgba(61, 59, 123, .07);
  }
  .hero-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: translateY(-30px) scale(1.085);
    transform-origin: center top;
  }
  .hero-photo figcaption {
    right: auto;
    bottom: 32px;
    left: 28px;
    width: 380px;
    max-width: calc(100% - 56px);
    min-height: 86px;
    padding: 14px 16px;
    transform: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 25px rgba(44, 38, 76, .11);
    white-space: normal;
  }
  .hero-photo figcaption .hero-caption-copy strong { font-size: 16px; line-height: 1.25; }
  .hero-photo figcaption .hero-caption-copy em { font-size: 14px; line-height: 1.35; }

  .hero-form {
    grid-column: 3;
    justify-self: end;
    width: 400px;
    max-width: 400px;
    min-height: 688px;
    margin-top: 26px;
    padding: 36px 32px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 15px 34px rgba(61, 59, 123, .08);
  }
  .hero-form .form-kicker { margin-bottom: 24px; font-size: 14px; letter-spacing: .16em; }
  .hero-form .form-heading h2 { margin-bottom: 25px; font-size: 28px; line-height: 1.2; letter-spacing: -.035em; }
  .hero-form .field { margin-bottom: 16px; }
  .hero-form .field label,
  .hero-form .contact-choice legend { margin-bottom: 8px; font-size: 14px; }
  .hero-form .field input { min-height: 54px; padding-inline: 17px; border-radius: 14px; font-size: 16px; }
  .hero-form .contact-choice { flex-wrap: nowrap; gap: 8px; margin-bottom: 20px; }
  .hero-form .contact-choice span { min-height: 40px; padding: 8px 11px; font-size: 13px; }
  .hero-form .consent { font-size: 12px; }
  .hero-form .button-block { min-height: 58px; margin-top: 18px; font-size: 17px; }
  .hero-form .form-note { max-width: 320px; margin-top: 20px; font-size: 12px; line-height: 1.5; }
}

@media (min-width: 681px) and (max-width: 1330px) {
  .hero-feature-list li > .hero-feature-icon { width: 42px; height: 42px; }
  .hero-photo figcaption { white-space: normal; }
  .hero-photo figcaption .support-icon { flex-basis: 48px; width: 48px; height: 48px; }
}

@media (max-width: 680px) {
  .hero-feature-list li > .hero-feature-icon { width: 42px; height: 42px; }
  .hero-photo figcaption {
    width: calc(100% - 32px);
    max-width: none;
    padding: 12px;
    white-space: normal;
  }
  .hero-photo figcaption .support-icon { flex-basis: 44px; width: 44px; height: 44px; }
  .hero-photo figcaption .hero-caption-copy strong { font-size: 14px; line-height: 1.25; }
  .hero-photo figcaption .hero-caption-copy em { font-size: 12px; line-height: 1.3; }
}

/* Global typography and personalised IVF programme refresh. */
body, button, input, select, textarea {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}
h1, h2, h3, .price-card strong {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -.025em;
}
.program-branding { display: none; }
.check-list li::before { content: "✓"; background: #f0edf9; color: var(--secondary); }

@media (min-width: 1331px) {
  .program-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 76px;
    background: radial-gradient(circle at 93% 6%, rgba(237, 228, 250, .74) 0 115px, transparent 116px), #fffaf5;
  }
  .program-section .container { width: min(calc(100% - 192px), 1480px); }
  .program-grid { grid-template-columns: 688px minmax(0, 1fr); gap: 96px; }
  .program-photo {
    height: 794px;
    min-height: 794px;
    border-radius: 42px;
    background: #f7f2ed;
    box-shadow: 0 24px 54px rgba(61, 59, 123, .11);
  }
  .program-photo > img { width: 100%; height: 100%; min-height: 0; object-position: center center; }
  .program-branding {
    position: absolute;
    z-index: 1;
    top: 32px;
    left: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: calc(100% - 68px);
    padding: 8px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(8px);
  }
  .program-branding > img { width: 222px; height: auto; min-height: 0; object-fit: contain; }
  .program-branding > span {
    padding-left: 24px;
    border-left: 1px solid rgba(61, 59, 123, .28);
    color: #252246;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.32;
  }
  .photo-label {
    right: 34px;
    bottom: 36px;
    left: 34px;
    min-height: 116px;
    padding: 27px 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(58, 45, 72, .08);
  }
  .photo-label strong { margin-bottom: 4px; font-size: 20px; }
  .photo-label span { font-size: 17px; }
  .program-copy { padding-top: 28px; }
  .program-copy .eyebrow { margin-bottom: 24px; font-size: 16px; letter-spacing: .15em; }
  .program-copy h2 { max-width: 550px; margin-bottom: 28px; font-size: 70px; line-height: 1.08; }
  .program-copy > p:not(.eyebrow) { max-width: 600px; margin-bottom: 27px; font-size: 18px; line-height: 1.72; }
  .check-list { gap: 18px; margin: 0 0 43px; }
  .check-list li { padding-left: 48px; color: var(--secondary); font-size: 17px; line-height: 1.42; }
  .check-list li::before { top: -4px; width: 34px; height: 34px; font-size: 17px; }
  .price-card {
    min-height: 158px;
    padding: 25px 30px;
    border-color: rgba(61, 59, 123, .13);
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(61, 59, 123, .035);
  }
  .price-card > div { padding-right: 26px; }
  .price-card span { margin-bottom: 8px; font-size: 15px; }
  .price-card strong { max-width: 350px; font-size: 23px; line-height: 1.26; }
  .price-card .button { min-width: 255px; min-height: 76px; padding-inline: 26px; font-size: 17px; }
}

@media (max-width: 1330px) {
  .program-branding {
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: calc(100% - 36px);
    padding: 7px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .84);
  }
  .program-branding > img { width: 155px; height: auto; min-height: 0; object-fit: contain; }
  .program-branding > span { padding-left: 14px; border-left: 1px solid rgba(61, 59, 123, .25); color: #252246; font-size: 11px; font-weight: 700; line-height: 1.25; }
}

@media (max-width: 680px) {
  .program-branding > span { display: none; }
  .program-branding > img { width: 148px; }
  .program-copy h2 { font-size: clamp(42px, 12vw, 54px); }
}

/* Authoritative header override — keep this block last. */
@media (min-width: 1500px) {
  .site-header { padding: 14px 0; border: 0; background: rgba(248, 247, 252, .96); box-shadow: none; backdrop-filter: blur(16px); }
  .site-header .container { width: min(calc(100% - 48px), 1544px); max-width: none; }
  .site-header .header-inner { min-height: 108px; padding: 0 28px; gap: 0; border: 1px solid rgba(61, 59, 123, .04); border-radius: 20px; background: rgba(255, 255, 255, .98); box-shadow: 0 18px 42px rgba(61, 59, 123, .09); }
  .brand-lockup { flex: 0 0 198px; width: 198px; height: 78px; }
  .brand-lockup .alternatyva-mark { top: 0; left: 0; width: 198px; }
  .main-nav { flex: 0 1 auto; gap: 38px; margin-left: 64px; }
  .main-nav a { color: var(--secondary); font-size: 15px; font-weight: 700; line-height: 1.2; }
  .header-actions { gap: 18px; margin-left: auto; }
  .phone-link { min-height: 60px; gap: 13px; padding: 12px 22px; border-radius: 999px; background: linear-gradient(135deg, #faf9ff, #f0eef9); color: var(--secondary); font-size: 15px; font-weight: 750; }
  .phone-link .phone-glyph { display: block; flex: 0 0 23px; width: 23px; height: 23px; fill: none; stroke: var(--primary); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .site-header .header-cta { width: auto; min-height: 66px; gap: 14px; padding: 14px 24px 14px 26px; border: 0; border-radius: 999px; background: linear-gradient(135deg, #f67f11, #ef6910); color: white; font-size: 15px; font-weight: 750; white-space: nowrap; box-shadow: 0 13px 28px rgba(239, 105, 16, .2); }
  .site-header .header-cta:hover { background: linear-gradient(135deg, #e9700b, #dc5d09); box-shadow: 0 16px 30px rgba(239, 105, 16, .26); }
  .header-cta-arrow { font-size: 24px; font-weight: 400; line-height: 1; }
}

@media (min-width: 1181px) and (max-width: 1499px) {
  .site-header { padding: 10px 0; border: 0; background: #f8f7fc; box-shadow: none; }
  .site-header .container { width: min(calc(100% - 32px), 1400px); }
  .site-header .header-inner { min-height: 92px; padding: 0 20px; border-radius: 18px; background: white; box-shadow: 0 14px 34px rgba(61, 59, 123, .08); }
  .brand-lockup { flex: 0 0 148px; width: 148px; height: 60px; }
  .brand-lockup .alternatyva-mark { top: 0; left: 0; width: 148px; }
  .main-nav { gap: 16px; margin-left: 24px; }
  .main-nav a { font-size: 13px; font-weight: 700; }
  .main-nav a:nth-child(n+3)::before { left: -8px; height: 22px; }
  .header-actions { gap: 12px; }
  .phone-link { min-height: 48px; gap: 8px; padding: 10px 13px; border-radius: 999px; background: #f4f2fb; font-size: 14px; }
  .phone-link .phone-glyph { display: block; flex: 0 0 20px; width: 20px; height: 20px; fill: none; stroke: var(--primary); stroke-width: 1.8; }
  .site-header .header-cta { width: auto; min-height: 52px; gap: 8px; padding: 12px 18px; border: 0; background: linear-gradient(135deg, #f67f11, #ef6910); font-size: 13px; white-space: nowrap; }
  .header-cta-arrow { font-size: 19px; }
}

@media (max-width: 1180px) {
  .site-header .phone-link span:last-child { display: none; }
  .hero-photo,
  .hero-form { width: 100%; min-width: 0; }
  .hero-photo img { width: 100%; }
}

@media (min-width: 681px) and (max-width: 1180px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero-copy { grid-column: 1 / -1; }
}

@media (min-width: 681px) and (max-width: 900px) {
  .doctor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
