/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════ */
:root {
  /* Colors */
  --violet:     #8F87F1;
  --peach:      #EDB39B;
  --navy:       #3B4B6B;
  --bg-cream:   #FFF8F5;
  --bg-white:   #FFFFFF;
  --bg-lav:     #EFEEFF;
  --bg-peach:   #FFEFE9;
  --bg-scroll:  #FFEAB5;
  --bg-blue:    #EEF2F8;
  --border:     #EAEAEB;

  /* Text */
  --text-dark:  #3B4B6B;
  --text-body:  #7C8089;
  --text-muted: #ACB1BC;
  --text-white: #FFFFFF;

  /* Typography */
  --font-serif: 'Frank Ruhl Libre', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container:  1100px;
  --radius-card: 20px;
  --radius-lg:   28px;
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-body);
  background: var(--bg-cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--navy); }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
em { font-style: italic; color: var(--peach); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(255,248,245,0.95);
  box-shadow: 0 2px 24px rgba(59,75,107,0.08);
  padding: 12px 0;
  backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  transition: color 0.3s;
}
.nav__logo-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: block;
}
.nav__menu {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  transition: color 0.2s;
}
.nav__menu a:hover { color: var(--violet); }
.nav__cta { margin-left: 8px; border-color: var(--navy); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 767px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-cream);
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(59,75,107,0.1);
  }
  .nav__menu.nav__menu--open { display: flex; }
  .nav__menu a { color: var(--text-body) !important; }
  .nav__burger { display: flex; color: white; }
  .nav.scrolled .nav__burger { color: var(--navy); }
  .nav__cta { display: none; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #EAE8FD;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #EAE8FD 0%, #FFF4EE 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 60px;
  gap: 60px;
  min-height: 100vh;
}
.hero__content { max-width: 560px; }
.hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--violet);
  margin-bottom: 20px;
}
.hero__title {
  color: var(--text-dark);
  margin-bottom: 24px;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.hero__title em { color: var(--peach); }
.hero__sub {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__btn { font-size: 14px; }

/* Right visual column */
.hero__visual {
  position: relative;
  flex-shrink: 0;
  width: 440px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.hero__photo {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 500px;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Floating cards */
.hero__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  bottom: 24px;
  left: -20px;
}
.hero__card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 20px 50px rgba(59,75,107,0.18);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 220px;
}
.hero__card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
}
.hero__card > div > span {
  font-size: 12px;
  color: var(--text-body);
}
.hero__card-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--bg-lav); border-radius: 50%; flex-shrink: 0; }
.hero__avatars {
  display: flex;
}
.hero__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-lav);
  border: 2px solid white;
  margin-left: -8px;
}
.hero__avatar:first-child { margin-left: 0; background: var(--bg-peach); }
.hero__avatar:nth-child(2) { background: var(--violet); }

/* Scroll Down button */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: var(--bg-scroll);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  transition: opacity 0.2s;
}
.hero__scroll:hover { opacity: 0.8; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  padding: var(--section-py) 0;
  background: var(--bg-cream);
}
.about__title {
  max-width: 860px;
  margin-bottom: 52px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.about__photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  grid-row: 1;
}
.about__photo svg {
  width: 100%;
  height: 100%;
  display: block;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.about__tag {
  font-size: 13px;
  color: var(--text-body);
  background: var(--bg-peach);
  padding: 6px 14px;
  border-radius: 100px;
}
.about__stats {
  display: flex;
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about__stat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.about__stat:first-child { padding-left: 0; }
.about__stat:last-child  { border-right: none; padding-right: 0; }
.about__stat-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 160px;
}
.about__stat-num {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.about__stat-suffix { font-size: 40px; }

/* ═══════════════════════════════════════
   PARTNERS
═══════════════════════════════════════ */
.partners {
  padding: 48px 0;
  background: var(--bg-lav);
  border-top: 1px solid #DDD8FF;
  border-bottom: 1px solid #DDD8FF;
}
.partners .section-label { margin-bottom: 28px; display: block; text-align: center; }
.partners__list {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.partners__item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 220px;
  padding: 20px 32px;
  border-right: 1px solid #DDD8FF;
}
.partners__item:last-child { border-right: none; }
a.partners__item {
  text-decoration: none;
  transition: background 0.2s;
  border-radius: var(--radius-card);
}
a.partners__item:hover { background: rgba(143,135,241,0.08); }
.partners__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.partners__icon img { width: 32px; height: 32px; object-fit: contain; }
.partners__icon--svg { background: rgba(143,135,241,0.15); border-color: transparent; color: var(--violet); }
.partners__icon--svg svg { width: 22px; height: 22px; }
.partners__body strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.partners__body p { font-size: 13px; color: var(--body); margin: 0; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq {
  padding: var(--section-py) 0;
  background: var(--bg-white);
  text-align: center;
}
.faq__title { margin-bottom: 48px; text-align: center; }
.faq__list { max-width: 760px; margin: 0 auto; text-align: left; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__arrow {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-lav);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, background 0.2s;
  position: relative;
}
.faq__arrow::before,
.faq__arrow::after {
  content: '';
  position: absolute;
  width: 8px; height: 1.5px;
  background: var(--violet);
  border-radius: 1px;
  top: 50%; left: 50%;
  transition: transform 0.25s ease;
}
.faq__arrow::before { transform: translate(-50%, -50%) rotate(-45deg) translateX(-2.5px); }
.faq__arrow::after  { transform: translate(-50%, -50%) rotate(45deg)  translateX(2.5px); }
details[open] .faq__arrow { transform: rotate(180deg); background: var(--violet); }
details[open] .faq__arrow::before,
details[open] .faq__arrow::after { background: #fff; }
.faq__answer {
  padding-bottom: 22px;
}
.faq__answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body);
  margin: 0;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-white);
}
.services__title { margin-bottom: 52px; }

.services__big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.services__big-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 32px;
}
.services__big-photo {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
}
.services__big-photo img { width: 100%; height: 100%; object-fit: cover; }
.services__big-body h3 { margin: 8px 0 12px; }
.services__big-body p { font-size: 14px; line-height: 1.7; }

.services__small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services__small-card {
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: background-color 0.2s;
  display: flex;
  flex-direction: column;
}
.services__small-card--lav  { background: var(--bg-lav); }
.services__small-card--peach { background: var(--bg-peach); }
.services__small-card--lav:hover   { background-color: #D8D4FF; }
.services__small-card--peach:hover { background-color: #FFD9C8; }
.services__small-card h3 { margin: 10px 0 12px; }
.services__small-card p { font-size: 14px; line-height: 1.7; }

.services__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-body);
  background: rgba(255,255,255,0.6);
  padding: 4px 12px;
  border-radius: 100px;
}
.services__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--violet);
  transition: letter-spacing 0.2s;
}
.services__link:hover { letter-spacing: 0.5px; }

.services__result-box {
  background: rgba(143, 135, 241, 0.08);
  border-left: 3px solid var(--violet);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  margin: 4px 0 14px;
}
.services__result-box--peach {
  background: rgba(237, 179, 155, 0.12);
  border-left-color: var(--peach);
}
.services__result-box-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--violet);
  margin-bottom: 6px;
}
.services__result-box--peach .services__result-box-label {
  color: #c97a56;
}
.services__result-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services__result-box ul li {
  font-size: 13px;
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
  margin-bottom: 3px;
  color: var(--text-body);
}
.services__result-box ul li:last-child { margin-bottom: 0; }
.services__result-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
  top: 1px;
}
.services__result-box--peach ul li::before { color: #c97a56; }

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why { padding: var(--section-py) 0; background: var(--bg-cream); }
.why__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.why__photos {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 480px;
}
.why__photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-card); }
.why__photo--top { border-radius: var(--radius-card) var(--radius-card) var(--radius-card) 4px; }
.why__photo--bottom { border-radius: 4px var(--radius-card) var(--radius-card) var(--radius-card); }
.why__content h2 { margin: 8px 0 16px; }
.why__sub { font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.why__list { display: flex; flex-direction: column; gap: 24px; }
.why__item { display: flex; gap: 16px; align-items: flex-start; }
.why__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--bg-lav);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__item strong { display: block; color: var(--navy); font-weight: 500; margin-bottom: 4px; font-size: 15px; }
.why__item p { font-size: 14px; line-height: 1.6; }

/* ═══════════════════════════════════════
   HOW WE WORK
═══════════════════════════════════════ */
.how { padding: var(--section-py) 0; background: var(--bg-white); }
.how__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.how__desc { font-size: 15px; line-height: 1.7; }
.how__banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 360px;
  margin-bottom: 40px;
}
.how__banner img { width: 100%; height: 100%; object-fit: cover; }
.how__banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(59,75,107,0.4);
}
.how__banner-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 20px 24px;
}
.how__banner-card strong { display: block; font-family: var(--font-serif); font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.how__banner-card p { font-size: 13px; color: var(--text-body); }
/* mobile-only elements — hidden on desktop */
.why__photo-mobile       { display: none; }
.how__banner-card--mobile { display: none; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how__step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px 28px 32px;
  margin-top: 24px;
  transition: background-color 0.2s, border-color 0.2s;
}
.how__step-badge {
  position: absolute;
  top: -20px;
  left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}
.how__step--violet .how__step-badge { background: var(--violet); }
.how__step--peach  .how__step-badge { background: var(--peach); }
.how__step--yellow .how__step-badge { background: var(--bg-scroll); color: var(--navy); }

.how__step--violet:hover { background-color: var(--bg-lav);   border-color: #C8C4F8; }
.how__step--peach:hover  { background-color: var(--bg-peach); border-color: #F5C8B4; }
.how__step--yellow:hover { background-color: #FFF3D0;         border-color: #F0D890; }
.how__step-body h3 { margin-bottom: 12px; font-size: 20px; }
.how__step-body p { font-size: 14px; line-height: 1.7; }

/* ═══════════════════════════════════════
   BOOKING
═══════════════════════════════════════ */
.booking {
  padding: var(--section-py) 0;
  background: var(--bg-cream);
}
.booking__wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.booking__info {
  padding: 60px 52px;
}
.booking__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.booking__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: color 0.2s;
}
.booking__contact:hover { color: var(--text-white); }
.booking__contact-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.12); border-radius: 50%; flex-shrink: 0; }

.booking__form-wrap {
  padding: 40px;
  display: flex;
  align-items: center;
}
.booking__form-inner {
  width: 100%;
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}
.booking__form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.booking__badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(143,135,241,0.15);
  color: var(--violet);
  padding: 4px 12px;
  border-radius: 100px;
}
.booking__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.booking__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.booking__fields .booking__field { margin-bottom: 0; }
.booking__field label { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.booking__field input,
.booking__field select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.booking__field input:focus,
.booking__field select:focus { border-color: var(--violet); }
.booking__submit {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 16px;
  margin-bottom: 12px;
}
.booking__status {
  min-height: 20px;
  font-size: 13px;
  text-align: center;
  margin-bottom: 8px;
}
.booking__status.success { color: #2d8a4e; }
.booking__status.error   { color: #c0392b; }
.booking__note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════
   RESULTS
═══════════════════════════════════════ */
.results {
  padding: var(--section-py) 0;
  background: var(--bg-lav);
}
.results h2 { margin-bottom: 40px; }

.results__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

/* results1 portrait — spans both rows */
.results__card--tall    { grid-row: 1 / 3; }
/* results4 message — spans 2 cols on row 2 */
.results__card--message { grid-column: 2 / 4; }
.results__card--message img { object-position: center 20%; }

.results__card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.results__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(143,135,241,0.2);
}
.results__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.js-results-swiper { display: none; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 0;
  background: #fff;
}
.testimonials h2 { margin-bottom: 40px; }

/* Slider wrapper with space for nav arrows */
.testimonials__slider-wrap {
  position: relative;
  padding: 40px 48px 60px;
}

/* Nav arrows */
.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--violet);
  background: #fff;
  color: var(--violet);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials__nav--prev { left: 0; }
.testimonials__nav--next { right: 0; }
.testimonials__nav:hover { background: var(--violet); color: #fff; }
.testimonials__nav.swiper-button-disabled { opacity: 0.3; pointer-events: none; }

/* Swiper — always visible */
.testimonials .js-testimonials-swiper { display: block; }
.testimonials .js-testimonials-swiper .swiper-wrapper { align-items: center !important; }
.testimonials .js-testimonials-swiper .swiper-slide { height: auto !important; }

/* Polaroid-style photo cards */
.testimonials__photo-card {
  background: #fff;
  padding: 8px 8px 28px;
  border-radius: 4px;
  position: relative;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.06),
    0 8px 24px rgba(0,0,0,0.10),
    0 20px 48px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.testimonials__photo-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

/* Tilt per slide on desktop */
@media (min-width: 768px) {
  .js-testimonials-swiper .swiper-slide:nth-child(1) .testimonials__photo-card { transform: rotate(-2deg) translateY(8px); }
  .js-testimonials-swiper .swiper-slide:nth-child(2) .testimonials__photo-card { transform: rotate(1.5deg) translateY(20px); }
  .js-testimonials-swiper .swiper-slide:nth-child(3) .testimonials__photo-card { transform: rotate(-1deg) translateY(4px); }
  .js-testimonials-swiper .swiper-slide:nth-child(4) .testimonials__photo-card { transform: rotate(2deg) translateY(14px); }
  .js-testimonials-swiper .swiper-slide:nth-child(5) .testimonials__photo-card { transform: rotate(-1.5deg) translateY(10px); }


  .js-testimonials-swiper .swiper-slide .testimonials__photo-card:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.03) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.16), 0 32px 64px rgba(143,135,241,0.12);
    z-index: 2;
  }
}
.swiper-pagination-bullet-active {
  background: var(--violet);
  width: 20px;
  border-radius: 100px;
  transition: width 0.3s;
}

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.results__card { cursor: zoom-in; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 18, 40, 0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }

.lightbox__inner {
  max-width: min(90vw, 600px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.lightbox__img.is-loading { opacity: 0; }

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}
.lightbox__close:hover { opacity: 1; transform: scale(1.15); }

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: none;
  color: #3B4B6B;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.lightbox__nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__nav[hidden] { display: none; }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(59,75,107,0.65);
}
.cta-banner__card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 28px;
  padding: 52px 60px;
  max-width: 660px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-white);
  margin-bottom: 12px;
}
.footer__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--text-white); }
.footer__social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer__social-link {
  width: 36px; height: 36px;
  background: var(--violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: opacity 0.2s;
}
.footer__social-link:hover { opacity: 0.8; }
.footer__copy {
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════
   SCROLL MARGIN (anchor offset)
═══════════════════════════════════════ */
#about, #services, #why, #how, #booking, #testimonials {
  scroll-margin-top: 80px;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (768–1023px)
═══════════════════════════════════════ */
@media (max-width: 1023px) {
  :root { --section-py: 72px; }

  .about__grid,
  .why__inner,
  .booking__wrap,
  .how__header { grid-template-columns: 1fr; gap: 40px; }

  .why__photos {
    height: 320px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .why__photo--top, .why__photo--bottom { border-radius: var(--radius-card); }

  .services__big { grid-template-columns: 1fr; }
  .services__big-photo { height: 200px; }

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

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

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

  .booking__info { padding: 40px 36px; }

  /* Partners — 2 columns on tablet */
  .partners__item { padding: 16px 20px; }
  .partners__item:nth-child(2) { border-right: none; }
  .partners__item:nth-child(3) {
    border-top: 1px solid #DDD8FF;
    border-right: none;
    flex: 0 0 100%;
  }
}

/* ═══════════════════════════════════════
   PAIN RECOGNITION SECTION
═══════════════════════════════════════ */
.pain {
  padding: var(--section-py) 0;
  background: var(--bg-lav);
}
.pain .section-label { display: block; margin-bottom: 12px; }
.pain h2 { margin-bottom: 12px; }
.pain__sub {
  font-size: 16px;
  color: var(--text-body);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 40px;
  grid-auto-rows: 1fr;
}
.pain__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 100%;
  height: 100%;
}
.pain__item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.pain__item:hover .pain__checkbox {
  border-color: var(--violet);
  box-shadow: 0 0 8px rgba(143,135,241,0.2);
}
.pain__item:focus {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}
.pain__item.pain__item--checked .pain__checkbox {
  background: var(--violet);
  border-color: var(--violet);
  box-shadow: 0 2px 8px rgba(143,135,241,0.3);
}
.pain__item.pain__item--checked .pain__checkmark {
  opacity: 1;
}
.pain__item.pain__item--checked:hover .pain__checkbox {
  box-shadow: 0 4px 12px rgba(143,135,241,0.4);
}

.pain__checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--violet);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: white;
  transition: all 0.2s ease;
}

.pain__checkmark {
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 16px;
  height: 16px;
}

.pain__check {
  font-size: 18px;
  font-weight: 700;
  color: var(--violet);
  flex-shrink: 0;
  margin-top: 0px;
  line-height: 1;
}
.pain__stat {
  font-size: 24px;
  font-family: Georgia, serif;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.pain__progress-bar {
  background: var(--border);
  height: 8px;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 40px;
}
.pain__progress-fill {
  background: var(--violet);
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
}
.pain__cta { text-align: center; }

/* ═══════════════════════════════════════
   SERVICES TOPICS LIST
═══════════════════════════════════════ */
.services__topics {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.services__topics li {
  font-size: 13px;
  color: var(--text-body);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.5;
}
.services__topics li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--violet);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   DEEPER SECTION
═══════════════════════════════════════ */
.deeper {
  padding: var(--section-py) 0;
  background: var(--bg-white);
}
.deeper__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.deeper__content .section-label { display: block; margin-bottom: 12px; }
.deeper__content h2 { margin-bottom: 12px; }
.deeper__sub {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7;
}
.deeper__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.deeper__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.deeper__icon {
  width: 36px;
  height: 36px;
  background: var(--bg-lav);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.deeper__item strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.deeper__item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.deeper__cycle-wrap {
  background: linear-gradient(135deg, var(--bg-lav) 0%, rgba(239, 238, 255, 0.5) 100%);
  border-radius: var(--radius-card);
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  position: relative;
  overflow: visible;
  animation: pulse-gentle 4s ease-in-out infinite;
  margin: 0 auto;
}

/* Subtle decorative background shapes */
.deeper__cycle-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(143, 135, 241, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.deeper__cycle-wrap::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(237, 179, 155, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.deeper__cycle-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

.deeper__cycle-circular {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deeper__cycle-card {
  position: absolute;
  width: 110px;
  padding: 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  white-space: nowrap;
  opacity: 0;
  scale: 0.8;
}

.deeper__cycle-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.deeper__cycle-card[data-position="top"] {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.deeper__cycle-card[data-position="right"] {
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.deeper__cycle-card[data-position="bottom"] {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.deeper__cycle-card[data-position="left"] {
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.deeper__cycle-card--violet {
  background: linear-gradient(135deg, var(--violet) 0%, #7B70E0 100%);
}

.deeper__cycle-card--peach {
  background: linear-gradient(135deg, var(--peach) 0%, #E8A38A 100%);
}

.deeper__cycle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.deeper__cycle-note {
  font-size: 14px;
  color: var(--text-body);
  font-style: italic;
  margin: 0;
  max-width: 320px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   EDUCATION SECTION
═══════════════════════════════════════ */
.education {
  padding: var(--section-py) 0;
  background: var(--bg-peach);
}
.education .section-label { display: block; margin-bottom: 12px; }
.education h2 { margin-bottom: 40px; }
.education__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.education__card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px 28px 32px;
  margin-top: 24px;
  background: white;
  transition: background-color 0.2s, border-color 0.2s;
}
.education__card-badge {
  position: absolute;
  top: -20px;
  left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}
.education__card--violet .education__card-badge { background: var(--violet); }
.education__card--peach  .education__card-badge { background: var(--peach); }
.education__card--yellow .education__card-badge { background: var(--bg-scroll); color: var(--navy); }

.education__card--violet:hover { background-color: var(--bg-lav);   border-color: #C8C4F8; }
.education__card--peach:hover  { background-color: var(--bg-peach); border-color: #F5C8B4; }
.education__card--yellow:hover { background-color: #FFF3D0;         border-color: #F0D890; }
.education__card h3 { font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.education__card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════
   OZEMPIC SECTION
═══════════════════════════════════════ */
.ozempic {
  padding: var(--section-py) 0;
  background: var(--bg-lav);
}
.ozempic .section-label { display: block; margin-bottom: 12px; }
.ozempic h2 { margin-bottom: 4px; }
.ozempic__sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.ozempic__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.ozempic__col-title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
  font-family: var(--font-serif);
}
.ozempic__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ozempic__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.ozempic__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: 600;
}
.ozempic__note-box {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border-left: 3px solid var(--violet);
}
.ozempic__note-box strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
}
.ozempic__note-box p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}
.ozempic__help-intro {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.ozempic__help-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ozempic__help-list li {
  font-size: 14px;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
}
.ozempic__help-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: 700;
}
.ozempic__help-goal {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}
.ozempic__promise {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--navy);
  background: rgba(143, 135, 241, 0.07);
  border-left: 3px solid var(--violet);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 0 0 40px;
}
.ozempic__disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

/* ═══════════════════════════════════════
   LEAD MAGNET SECTION
═══════════════════════════════════════ */
.leadmagnet {
  padding: var(--section-py) 0;
  background: var(--navy);
  color: white;
  text-align: center;
}
.leadmagnet .section-label { color: rgba(255,255,255,0.6); display: block; margin-bottom: 12px; }
.leadmagnet h2 { color: white; margin-bottom: 40px; }
.leadmagnet__cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.leadmagnet__card {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.leadmagnet__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 4px;
}
.leadmagnet__card h3 { color: white; font-size: 20px; margin: 0; }
.leadmagnet__card p { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.6; margin: 0; }
.leadmagnet__card .btn-outline {
  margin-top: 8px;
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.leadmagnet__card .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* ═══════════════════════════════════════
   ANIMATIONS & TRANSITIONS
═══════════════════════════════════════ */

/* ── Pain Items ── */
.pain__item {
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.pain__item:hover {
  transform: translateY(-2px);
}

/* ── Deeper Cycle (Continuous Pulse) ── */
@keyframes pulse-gentle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}


/* ── Ozempic Note Box (Hover State) ── */
.ozempic__note-box {
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ozempic__note-box:hover {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 12px rgba(59,75,107,0.08);
  border-color: var(--violet);
}

/* ── Lead Magnet Card (Scale & Glow) ── */
.leadmagnet__card {
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.leadmagnet__card:hover {
  transform: scale(1.03);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(143,135,241,0.2);
}
.leadmagnet__icon {
  transition: background 0.2s, transform 0.2s;
}
.leadmagnet__card:hover .leadmagnet__icon {
  background: rgba(255,255,255,0.18);
  transform: scale(1.1);
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
═══════════════════════════════════════ */
@media (max-width: 767px) {
  :root { --section-py: 56px; }

  /* ── HERO ── */
  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 90px;
    padding-bottom: 60px;
    gap: 32px;
    min-height: unset;
  }
  .hero__content { max-width: 100%; }
  .hero__title   { margin-bottom: 16px; font-size: 32px; line-height: 1.3; word-break: keep-all; overflow-wrap: normal; hyphens: none; }
  .hero__sub     { font-size: 15px; margin-bottom: 28px; }
  .hero__visual  { width: 100%; align-self: auto; }
  .hero__photo   { min-height: 300px; border-radius: 16px; }
  .hero__cards   { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 12px; gap: 8px; }
  .hero__card    { flex: 1; min-width: 140px; padding: 12px 10px; }
  .hero__card strong { font-size: 15px; }
  .hero__avatar  { margin-left: -12px; }
  .hero__scroll  { bottom: 20px; }

  /* ── ABOUT ── */
  .about__title  { margin-bottom: 32px; }
  .about__grid   { gap: 24px; }
  .about__photo  { max-height: 280px; }
  .about__stats  { flex-direction: column; gap: 0; }
  .about__stat   { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; justify-content: space-between; }
  .about__stat:first-child { padding-top: 0; }
  .about__stat:last-child  { border-bottom: none; padding-bottom: 0; }
  .about__stat-desc  { max-width: 100%; }
  .about__stat-num   { font-size: 40px; }
  .about__stat-suffix { font-size: 30px; }

  /* ── PARTNERS ── */
  .partners { padding: 32px 0; }
  .partners__list { flex-direction: column; gap: 0; }
  .partners__item {
    border-right: none;
    border-bottom: 1px solid #DDD8FF;
    padding: 16px 4px;
    min-width: unset;
  }
  .partners__item:last-child { border-bottom: none; }

  /* ── SERVICES ── */
  .services__big-card { gap: 16px; }
  .services__big-photo { height: 180px; }
  .services__small { grid-template-columns: 1fr; }

  /* ── WHY ── */
  .why__inner  { grid-template-columns: 1fr; }
  .why__photos { display: none; }
  .why__photo-mobile { display: block; width: 100%; border-radius: 16px; margin: 24px 0; }

  /* ── HOW ── */
  .how__steps  { grid-template-columns: 1fr; }
  .how__header { grid-template-columns: 1fr; gap: 16px; }
  .how__banner { display: none; }
  .how__banner-card--mobile { 
    display: block; 
    position: static; 
    margin-top: 24px; 
    background: var(--bg-lav); 
    border: 1px solid var(--border); 
    padding: 24px;
    border-radius: 16px;
    width: 100%;
    backdrop-filter: none;
  }

  /* ── FAQ ── */
  .faq__title   { margin-bottom: 32px; }
  .faq__question { font-size: 15px; padding: 18px 0; }

  /* ── BOOKING ── */
  .booking__fields    { grid-template-columns: 1fr; gap: 8px; }
  .booking__wrap      { grid-template-columns: 1fr; border-radius: 20px; }
  .booking__info      { padding: 32px 24px; }
  .booking__form-wrap { padding: 0 16px 32px; }
  .booking__form-inner { padding: 28px 20px; }
  .booking__form-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .booking__submit { font-size: 13px; padding: 14px; }

  @media (max-width: 360px) {
    .booking__info { padding: 24px 16px; }
    .booking__form-inner { padding: 24px 16px; }
    .booking__badge { font-size: 10px; padding: 3px 10px; }
    .booking__submit { font-size: 12px; }
  }

  /* ── CTA BANNER ── */
  .cta-banner__card { padding: 36px 24px; margin: 0 12px; }

  /* ── FOOTER ── */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__col:first-child { grid-column: 1 / -1; }
  .footer__col:last-child  { grid-column: 1 / -1; }
  .footer__social { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }

  /* ── NAV ── */
  .nav__inner  { justify-content: space-between; }
  .nav__menu   { display: none; }
  .nav__burger { display: flex; }

  /* ── PAIN ── */
  .pain__grid { grid-template-columns: 1fr; }

  /* ── DEEPER ── */
  .deeper__inner { grid-template-columns: 1fr; gap: 40px; }

  .deeper__cycle-circular {
    width: 220px;
    height: 220px;
  }

  .deeper__cycle-card {
    width: 85px;
    padding: 8px;
    font-size: 11px;
    white-space: normal;
    word-wrap: break-word;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
  }

  .deeper__cycle-card[data-position="right"] {
    right: -30px;
  }

  .deeper__cycle-card[data-position="left"] {
    left: -30px;
  }

  .deeper__cycle-label {
    font-size: 12px;
  }

  .deeper__cycle-note {
    font-size: 13px;
    max-width: 280px;
  }

  .deeper__cycle-wrap {
    display: none;
  }

  /* ── EDUCATION ── */
  .education__cards { grid-template-columns: 1fr; }

  /* ── OZEMPIC ── */
  .ozempic__inner { grid-template-columns: 1fr; gap: 32px; }

  /* ── LEAD MAGNET ── */
  .leadmagnet__cards { flex-direction: column; max-width: 400px; }

  /* ── RESULTS MOBILE ── */
  .js-results-swiper .swiper-slide { height: 420px; }
  .js-results-swiper .swiper-slide--hidden-mobile { display: none; }
  .js-results-swiper .results__card { height: 100%; border-radius: var(--radius-card); overflow: hidden; }
  .js-results-swiper .results__card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

  /* ── TESTIMONIALS MOBILE ── */
  .testimonials__slider-wrap {
    padding: 16px 0 40px;
    margin: 0 -24px;
  }
  .testimonials__nav { display: none; }
  .testimonials__photo-card { transform: none !important; }
}
