/* ===== Base ===== */
html {
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: #F7F3EF;
}

a {
  color: #4A3D55;
  text-decoration: none;
}

a:hover {
  color: #33293C;
}

/* ===== Utilities ===== */
.ph-stripe {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(51, 41, 60, 0.10) 0px,
    rgba(51, 41, 60, 0.10) 2px,
    transparent 2px,
    transparent 12px
  );
  background-color: #E3D3E0;
}

/* ===== Layout ===== */
.page-wrapper {
  font-family: 'Work Sans', sans-serif;
  color: #3A3340;
  background: #F7F3EF;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ===== Header / Nav ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.site-nav {
  display: flex;
  gap: 36px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.88);
}
.site-nav a { color: inherit; }

.header-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-login {
  display: inline-block;
  background: #4A3D55;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 26px;
  font-size: 14.5px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-login:visited { color: #fff; }
.btn-login:hover { background: #5C4D68; transform: translateY(-1px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #271F2E;
}

.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.hero__video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.9) contrast(1.05) blur(1.2px);
  transform: scale(1.04);
}

.hero__photo-fallback {
  display: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('assets/photos/program-body-3.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}


.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(201,162,180,0.22) 0%, rgba(201,162,180,0) 55%),
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 30%),
    linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.22) 55%, rgba(0,0,0,0.05) 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 64px 56px;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.hero__title {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.25;
  margin: 0 0 22px;
  color: #fff;
}

.hero__subtitle {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0 0 32px;
}

.hero__desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
}

.btn-primary {
  background: #C9A2B4;
  color: #2A2130;
  border: none;
  border-radius: 24px;
  padding: 15px 28px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #D3B0C0; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 24px;
  padding: 15px 28px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); transform: translateY(-1px); }

.hero__features {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 160px;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.feature-item:last-child {
  padding-right: 0;
  border-right: none;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-label {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}

/* ===== Programs ===== */
.programs-section {
  width: 100%;
  padding: 64px 0;
  position: relative;
  background-color: #EFE5EE;
}

.programs-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  font-size: 12.5px;
  letter-spacing: 2px;
  color: #948B99;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: #C0A788;
  flex-shrink: 0;
}
.programs-heading .section-eyebrow,
.results-header .section-eyebrow {
  justify-content: center;
}

.section-title {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 14px;
  color: #33293C;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.program-card {
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.program-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .program-card.pc-anim {
    opacity: 0;
    transform: translateX(-55px);
    transition: opacity 0.55s ease, transform 0.55s ease !important;
  }
  .program-card.pc-anim.pc-anim-right {
    transform: translateX(55px);
  }
  .program-card.pc-anim.pc-visible {
    opacity: 1;
    transform: translateX(0);
  }
}

.program-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}

.program-card__overlay { display: none; }

.program-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(44, 45, 62, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.program-card__info {
  padding: 16px 18px 20px;
  background: #fff;
  border-radius: 0 0 14px 14px;
  flex: 1;
}

.program-card__title {
  font-size: 15px;
  color: #33293C;
  margin-bottom: 6px;
  font-family: 'Lora', serif;
  font-weight: 500;
  text-align: left;
}

.program-card__desc {
  font-size: 12px;
  line-height: 1.5;
  color: #736A79;
  text-align: left;
}

/* ===== Divider ===== */
.divider {
  height: 1px;
  background: #E4DCD6;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== About ===== */
.about-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 64px 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: stretch;
}

.about-photo {
  border-radius: 16px;
  height: 420px;
  aspect-ratio: 3 / 4;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 20px;
  color: #33293C;
}

.about-body {
  font-size: 15px;
  line-height: 1.7;
  color: #736A79;
  margin: 0 0 16px;
}

.btn-about {
  align-self: flex-start;
  background: #4A3D55;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 15px 28px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-about:hover { background: #5C4D68; transform: translateY(-1px); }

.about-quote {
  background: #EFE7DE;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(40, 40, 60, 0.1), 0 1px 3px rgba(40, 40, 60, 0.08);
}

.about-quote__overlay {
  position: absolute;
  inset: 0;
  background: rgba(237, 237, 235, 0.82);
  border-radius: 16px;
}

.about-quote__mark,
.about-quote__text {
  position: relative;
  z-index: 1;
}

.about-quote__mark {
  font-family: 'Lora', serif;
  font-size: 40px;
  color: #C0A788;
  line-height: 1;
  margin-bottom: 12px;
}

.about-quote__text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: #3A3A42;
}

/* ===== CTA Banner ===== */
.why-section {
  background-color: #EFE5EE !important;
  padding: 52px 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.why-section .why-title,
.why-section .why-grid {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 64px;
  padding-right: 64px;
}

.why-title {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 500;
  color: #33293C;
  margin: 0 0 40px 0;
}

.why-grid {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 500px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.why-icon {
  line-height: 1;
}
.why-icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.why-label {
  font-size: 13px;
  color: #6B6270;
  line-height: 1.5;
  text-align: center;
}

.btn-cta {
  background: #4A3D55;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 15px 28px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover { background: #5C4D68; transform: translateY(-1px); }

/* ===== How it works ===== */
.steps-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 64px 64px;
}

.steps-title {
  text-align: center;
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 44px;
  color: #33293C;
}

.steps-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.step {
  display: flex;
  align-items: flex-start;
}

.step.step-anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.step.step-anim.step-visible {
  opacity: 1;
  transform: translateY(0);
}
.step.step-anim .step__circle {
  transform: scale(0.85);
  transition: transform 0.5s ease;
}
.step.step-anim.step-visible .step__circle {
  transform: scale(1);
}

.step__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 280px;
}

.step__icon-wrap {
  position: relative;
  margin-bottom: 14px;
}

.step__circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid #E4DCD6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step__circle img {
  width: 58px;
  height: 53px;
  object-fit: contain;
}

.step__num {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #33293C;
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-size: 15px;
  color: #33293C;
  margin-bottom: 8px;
  font-weight: 500;
}

.step__desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #948B99;
  max-width: 220px;
}

.step__arrow {
  display: flex;
  align-items: center;
  width: 64px;
  height: 1px;
  background: #E4DCD6;
  margin-top: 38px;
  flex-shrink: 0;
  position: relative;
}

.step__arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-top: 1px solid #E4DCD6;
  border-right: 1px solid #E4DCD6;
}

/* ===== Pricing ===== */
.pricing-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 64px 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.plan-card[data-size="small"] {
  padding: 28px;
}
.plan-card[data-size="small"] .plan-card__tagline {
  font-size: 18px;
  min-height: auto;
}
.plan-card[data-size="small"] .plan-card__price {
  font-size: 26px;
}
.plan-card[data-size="small"] .plan-card__desc-box {
  min-height: auto;
  padding: 16px 16px 6px;
}
.plan-card[data-size="small"] .plan-card__features-title {
  font-size: 16px;
  margin-bottom: 12px;
}
.plan-card[data-size="small"] .plan-feature {
  margin-bottom: 9px;
}
.plan-card[data-size="small"] .plan-feature__text {
  font-size: 13px;
}

.plan-card-wrap {
  display: flex;
  flex-direction: column;
}

.plan-card__badge-zone {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-card__badge {
  display: inline-block;
  background: #C9A2B4;
  color: #33293C;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
  align-self: center;
}

.plan-card {
  background: #fff;
  border: 1px solid #E4DCD6;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(40, 40, 60, 0.1), 0 1px 3px rgba(40, 40, 60, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(40, 40, 60, 0.15), 0 2px 6px rgba(40, 40, 60, 0.1);
}

.plan-card__name {
  font-size: 15px;
  color: #33293C;
  margin-bottom: 10px;
}

.plan-card__tagline {
  font-family: 'Lora', serif;
  font-size: 21px;
  color: #33293C;
  margin-bottom: 20px;
  line-height: 1.3;
  min-height: 54px;
}

.plan-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.plan-card__old-price {
  font-size: 18px;
  color: #948B99;
  text-decoration: line-through;
}

.plan-card__price {
  font-family: 'Lora', serif;
  font-size: 32px;
  color: #33293C;
}

.plan-card__price-note {
  font-size: 12px;
  color: #4A3D55;
}

.plan-card__desc-box {
  background: #EDE8F2;
  border-radius: 14px;
  padding: 20px 20px 8px;
  margin-bottom: 20px;
  min-height: 112px;
}

.plan-card__desc-title {
  font-size: 14.5px;
  color: #33293C;
  font-weight: 500;
  margin-bottom: 8px;
}

.plan-card__desc-text {
  font-size: 13px;
  line-height: 1.6;
  color: #736A79;
}

.btn-buy {
  width: 100%;
  background: #4A3D55;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 15px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
  margin-bottom: 24px;
  transition: background 0.2s, transform 0.15s;
}
.btn-buy:hover { background: #5C4D68; transform: translateY(-1px); }
.btn-buy--popular { background: #C9A2B4; color: #33293C; }
.btn-buy--popular:hover { background: #b5899f; transform: translateY(-1px); }

.plan-card__features-title {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: #33293C;
  margin-bottom: 16px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.plan-feature__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #33293C;
  color: #33293C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-feature__text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #3A3340;
}

/* ===== Testimonials ===== */
.testimonials-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 0 24px;
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.testimonials-title {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 26px;
  margin: 0;
  color: #33293C;
  width: 100%;
  text-align: center;
}

.testimonials-row {
  display: flex;
  align-items: center;
  gap: 36px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  flex: 1;
}

.testimonial-card {
  background: #F3EEE9;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 4px 16px rgba(40, 40, 60, 0.1), 0 1px 3px rgba(40, 40, 60, 0.08);
  height: 190px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.testimonial-card__quote {
  font-size: 13.5px;
  line-height: 1.6;
  color: #3A3340;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #EFE7DE;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 13px;
  color: #6B6270;
}

.btn-slider {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E4DCD6;
  background: #fff;
  color: #6B6270;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* Reviews + BA progress dots */
#rv-dots,
#ba-dots {
  gap: 6px;
}
#rv-dots .dot,
#ba-dots .dot {
  width: 28px;
  height: 5px;
  border-radius: 3px;
  background: #E4DCD6 !important;
  position: relative;
  overflow: hidden;
}
#rv-dots .dot--timer::after,
#ba-dots .dot--timer::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: #33293C;
  border-radius: 3px;
  animation: rv-dot-fill var(--rv-duration, 7s) linear forwards;
}
@keyframes rv-dot-fill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ===== Program Detail Panel ===== */
.prog-panel {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideDown 0.28s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.prog-panel__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
}
.prog-panel__close:hover { background: rgba(0,0,0,0.4); }
.prog-panel__inner {
  display: flex;
  align-items: stretch;
}
.prog-panel__photo {
  width: 320px;
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.prog-panel__content {
  flex: 1;
  min-width: 0;
  padding: 32px 32px 40px 28px;
}
.prog-panel__title {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 500;
  color: #33293C;
  margin-bottom: 8px;
}
.prog-panel__tagline {
  font-size: 15px;
  font-weight: 500;
  color: #33293C;
  margin-bottom: 16px;
}
.prog-panel__desc {
  font-size: 14px;
  color: #4B4B5A;
  line-height: 1.7;
  margin-bottom: 20px;
}
.prog-panel__what {
  font-size: 13px;
  font-weight: 600;
  color: #33293C;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prog-panel__items { margin-bottom: 20px; }
.prog-panel__item {
  font-size: 14px;
  color: #3A3A4A;
  line-height: 1.7;
}
.prog-panel__footer {
  font-size: 12px;
  color: #948B99;
  margin-bottom: 24px;
  border-top: 1px solid #EFE7DE;
  padding-top: 16px;
}
.prog-panel__btn {
  display: inline-block;
  padding: 14px 32px;
  background: #33293C;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s;
}
.prog-panel__btn:hover { background: #4A3D55; }
@media (max-width: 600px) {
  .prog-panel { border-radius: 16px 16px 0 0; max-height: 92svh; }
  .prog-panel__inner { flex-direction: column; }
  .prog-panel__photo { width: 100%; aspect-ratio: 3 / 4; }
  .prog-panel__content { padding: 24px 20px calc(32px + env(safe-area-inset-bottom)); }
  .prog-panel__title { font-size: 22px; }
  .modal-overlay { align-items: flex-end; padding-top: env(safe-area-inset-top); }
}

/* ===== Footer ===== */
.site-footer {
  background: #271F2E;
  color: #E4DCD6;
  padding: 52px 64px 32px;
  width: 100%;
  box-sizing: border-box;
}

.footer__top {
  display: flex;
  padding-bottom: 36px;
}

.footer__logo {
  width: 100px;
  flex-shrink: 0;
}

.footer__logo img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer__nav {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  padding-left: 100px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 800px;
  width: 100%;
}

.footer__col-title {
  font-size: 14px;
  color: #fff;
  margin-bottom: 14px;
}

.footer__col-link {
  font-size: 13px;
  color: #B0B0B8;
  margin-bottom: 9px;
}
.footer__col-link a { color: #B0B0B8; text-decoration: none; }
.footer__col-link a:hover { color: #C9A2B4; }
.footer__col-link--btn { cursor: pointer; transition: color 0.15s; }
.footer__col-link--btn:hover { color: #C9A2B4; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #3A3042;
  padding-top: 24px;
}

.footer__copyright {
  font-size: 12.5px;
  color: #948B99;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__legal-link {
  font-size: 12.5px;
  color: #948B99;
  text-decoration: none;
}

.footer__legal-link:hover {
  color: #E4DCD6;
}

.footer__legal-sep {
  font-size: 12.5px;
  color: #4A4A58;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #3A3042;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
}
.footer__social-btn:hover { background: #4A3D55; transform: translateY(-2px); }

/* ===== Story Modal ===== */
.story-modal {
  background: #F7F3EF;
  border-radius: 20px;
  width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 20px 60px rgba(30, 30, 42, 0.3);
}

.story-modal__close {
  top: 16px;
  right: 16px;
  z-index: 2;
}

.story-modal__photo {
  width: 100%;
  height: 260px;
  background: #EFE7DE;
  border-radius: 20px 20px 0 0;
  border: 2px dashed #E4DCD6;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-modal__photo-label {
  font-family: monospace;
  font-size: 13px;
  color: #948B99;
  letter-spacing: 1px;
}

.story-modal__body {
  padding: 32px 36px 36px;
}

.story-modal__title {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 22px;
  color: #33293C;
  margin: 0 0 20px;
}

.story-modal__body p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #6B6270;
  margin: 0 0 14px;
}

.story-modal__list {
  margin: 0 0 14px;
  padding-left: 20px;
}

.story-modal__list li {
  font-size: 14.5px;
  line-height: 1.75;
  color: #6B6270;
  margin-bottom: 4px;
}

.story-modal__welcome {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #33293C !important;
  margin-top: 20px !important;
}

/* ===== Auth Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  box-sizing: border-box;
}

.modal {
  background: #F7F3EF;
  border-radius: 20px;
  padding: 40px;
  width: 380px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 20px 60px rgba(30, 30, 42, 0.3);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: #948B99;
  cursor: pointer;
}

.modal__header {
  text-align: center;
  margin-bottom: 28px;
}

.modal__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.modal__title {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  color: #33293C;
}

.modal__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.modal__input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #E4DCD6;
  font-size: 14.5px;
  font-family: inherit;
  background: #fff;
}

.modal__btn {
  width: 100%;
  background: #4A3D55;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 15px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
  margin-bottom: 16px;
  transition: background 0.2s, transform 0.15s;
}
.modal__btn:hover { background: #5C4D68; transform: translateY(-1px); }

.modal__message {
  font-size: 13px;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.5;
}

.modal__message--error {
  background: #FDE8E8;
  color: #C0392B;
}

.modal__message--success {
  background: #E8F5E9;
  color: #2E7D32;
}

.modal__forgot {
  text-align: center;
  font-size: 13px;
  margin-bottom: 12px;
}

.modal__btn--secondary {
  background: none;
  border: 1.5px solid #33293C;
  color: #33293C;
  margin-top: 10px;
  transition: background 0.2s, transform 0.15s;
}
.modal__btn--secondary:hover { background: #F3EEE9; transform: translateY(-1px); }

.modal__switch {
  text-align: center;
  font-size: 13.5px;
  color: #736A79;
}

/* ===== Before / After + Messages ===== */
.results-section {
  background: #F7F3EF;
  padding: 64px 0 72px;
}

.results-block {
  margin-bottom: 64px;
}
.results-block:last-child { margin-bottom: 0; }

.results-header {
  text-align: center;
  margin-bottom: 32px;
}

.results-title {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 500;
  color: #33293C;
  margin: 8px 0 10px;
}

.results-sub {
  font-size: 15px;
  color: #948B99;
}

/* Shared slider row */
.slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

/* Before/After grid */
.ba-grid {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: stretch;
}

.ba-grid .result-card {
  flex: 0 0 calc(25% - 12px);
}

.result-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(30,30,42,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}


.result-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.result-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.result-card__tag {
  position: absolute;
  bottom: 10px;
  background: rgba(255,255,255,0.88);
  color: #33293C;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.result-card__tag--before { left: 10px; }
.result-card__tag--after  { right: 10px; }

.result-card__footer {
  padding: 14px 16px 16px;
}

.result-card__label {
  font-size: 15px;
  font-weight: 500;
  color: #33293C;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: calc(15px * 1.4 * 3);
}

.result-card__days {
  display: inline-block;
  background: #F3EEE9;
  color: #6B6270;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 20px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Message thumbnails */
.msg-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.msg-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(30,30,42,0.08);
  transition: transform 0.18s, box-shadow 0.18s;
}

.msg-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30,30,42,0.15);
}

.msg-thumb__img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  max-height: 140px;
}

.msg-thumb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,61,85,0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}

.msg-thumb:hover .msg-thumb__overlay {
  opacity: 1;
  background: rgba(74,61,85,0.25);
}

/* Text reviews grid */
.text-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.text-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 2px 14px rgba(30,30,42,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.text-review-card__quote {
  font-family: 'Lora', serif;
  font-size: 48px;
  line-height: 1;
  color: #E3D3E0;
  position: absolute;
  top: 12px;
  left: 20px;
}

.text-review-card__text {
  font-size: 14px;
  color: #33293C;
  line-height: 1.65;
  padding-top: 28px;
  white-space: pre-wrap;
}

.text-review-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #33293C;
  margin-top: 4px;
}

.btn-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid #C8BECE;
  border-radius: 50px;
  background: transparent;
  color: #5A4F65;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-reviews-link:hover {
  border-color: #9B8AA6;
  background: rgba(155,138,166,0.06);
}
.btn-reviews-link__icon { font-size: 18px; line-height: 1; }
.btn-reviews-link__arrow { font-size: 18px; line-height: 1; margin-left: 4px; color: #9B8AA6; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  box-sizing: border-box;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.28); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

@media (max-width: 900px) {
  .msg-thumbs { grid-template-columns: repeat(3, 1fr); }
}


@media (max-width: 768px) {
  .results-title { font-size: 26px; }
  .msg-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Contacts Modal ===== */
.contacts-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 380px;
  position: relative;
  box-shadow: 0 20px 60px rgba(30,30,42,0.2);
}

.contacts-modal__title {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 500;
  color: #33293C;
  margin: 0 0 24px;
  text-align: center;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contacts-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #E4DCD6;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.contacts-item:hover {
  background: #F5EFF4;
  border-color: #E4DCD6;
}

.contacts-item__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  overflow: hidden;
}

.contacts-item__icon img {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
  display: block;
  object-fit: contain;
}

.contacts-item__label {
  font-size: 13px;
  color: #948B99;
  margin-bottom: 2px;
}

.contacts-item__handle {
  font-size: 15px;
  font-weight: 500;
  color: #33293C;
}

/* ===== Checkout Modal ===== */
.co-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,30,42,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: max(20px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
  box-sizing: border-box;
  overflow-y: auto;
}

.co-modal {
  background: #F7F3EF;
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  display: flex;
  position: relative;
  box-shadow: 0 20px 60px rgba(30,30,42,0.25);
  overflow: hidden;
  max-height: 95svh;
  overflow-y: auto;
}

.co-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: #948B99;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}

/* Left panel */
.co-left {
  background: #33293C;
  color: #fff;
  padding: 48px 36px;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.co-plan-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.co-plan-title {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #fff;
}

.co-plan-price {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
}

.co-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.co-plan-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

.co-plan-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 20px 0 0;
}

.co-plans {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.co-plan-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.co-plan-option:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.co-plan-option--active {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}

.co-plan-option__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s;
}

.co-plan-option--active .co-plan-option__radio {
  border-color: #fff;
}

.co-plan-option--active .co-plan-option__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 50%;
}

.co-plan-option__name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.co-plan-option__price {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* Right panel */
.co-right {
  flex: 1;
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
}

.co-section-title {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 500;
  color: #33293C;
  margin: 0 0 20px;
}

.co-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid #E4DCD6;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.co-tab {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  font-size: 14px;
  font-family: inherit;
  color: #948B99;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.co-tab--active {
  background: #33293C;
  color: #fff;
}

.co-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.co-fields sc-if {
  display: contents;
}

.co-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E4DCD6;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #33293C;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.co-input:focus { border-color: #33293C; }

.co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.co-divider {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #948B99;
  margin: 4px 0 16px;
  position: relative;
}

.co-divider::before, .co-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #E4DCD6;
}

.co-divider::before { left: 0; }
.co-divider::after { right: 0; }

.co-message {
  font-size: 13px;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.co-message--error { background: #FDE8E8; color: #C0392B; }
.co-message--success { background: #E8F5E9; color: #2E7D32; }

.co-submit {
  width: 100%;
  padding: 14px;
  background: #33293C;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.2s;
}

.co-submit:hover { background: #1E1F2C; }

.co-terms {
  font-size: 11px;
  color: #948B99;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 680px) {
  .co-overlay { padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom)); align-items: center; padding-bottom: 18vh; }
  .co-modal { flex-direction: column; border-radius: 20px; max-height: 90svh; width: 100%; overflow-y: visible; }
  .co-left { display: none; }
  .co-right { padding: 24px 20px 28px; order: 1; }
  .co-close { top: 14px; right: 16px; font-size: 18px; }
  .co-input { font-size: 16px; }
}

/* ===== Hamburger button (hidden on desktop) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
}

/* ===== Mobile Nav Drawer ===== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 42, 0.5);
  z-index: 500;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: #F7F3EF;
  padding: 28px 28px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(30, 30, 42, 0.2);
  overflow-y: auto;
  box-sizing: border-box;
}
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 22px;
  color: #6B6270;
  cursor: pointer;
  margin-bottom: 28px;
  padding: 4px 8px;
  line-height: 1;
}
.mobile-nav-link {
  display: block;
  font-size: 17px;
  color: #3A3340;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #E4DCD6;
  font-family: 'Work Sans', sans-serif;
}
.mobile-nav-link:hover { color: #33293C; }
.mobile-nav__auth { margin-top: 28px; }

/* ===== Tablet (≤ 960px) ===== */
@media (max-width: 960px) {
  .hero__inner { padding: 0 40px 52px; }
  .hero__title { font-size: 38px; }
  .programs-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .programs-heading { padding: 0 32px; }
  .programs-section { padding: 40px 0; }
  .about-section { padding: 48px 32px; grid-template-columns: 1fr 1fr; }
  .about-quote { display: none; }
  .why-section .why-grid { padding-left: 32px; padding-right: 32px; }
  .steps-section { padding: 40px 32px 56px; }
  .pricing-section { padding: 36px 24px 20px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .results-section { padding: 48px 0 60px; }
  .site-footer { padding: 44px 32px 28px; }
  .footer__cols { max-width: 100%; }
}

/* ===== Mobile (≤ 768px) ===== */
@media (max-width: 768px) {

  /* Header */
  .site-header { padding: 16px 0; }
  .site-nav { display: none; }
  .header-auth { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__photo-fallback { display: none; }
  .hero__inner { padding: 0 20px 40px; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: 28px; line-height: 1.3; margin-bottom: 16px; }
  .hero__desc { font-size: 14px; margin-bottom: 24px; }
  .hero__desc br { display: none; }
  .hero__actions { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero__actions .btn-primary,
  .hero__actions .btn-secondary { width: 100%; justify-content: center; box-sizing: border-box; text-align: center; }
  .hero__features { flex-wrap: wrap; gap: 12px; }
  .feature-item { max-width: calc(50% - 6px); }

  /* Container */
  .container { padding: 0 16px; }

  /* Programs */
  .programs-section { padding: 36px 0; }
  .programs-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .program-card__title { font-size: 12px; }
  .program-card__desc { font-size: 10px; }
  .programs-heading { padding: 0 16px; }

  /* About */
  .about-section {
    grid-template-columns: 1fr;
    padding: 36px 20px;
    gap: 24px;
  }
  .about-photo { aspect-ratio: 3 / 4; min-height: unset; width: 100%; align-self: start; border-radius: 14px; }
  .about-quote { display: none; }
  .about-title { font-size: 26px; }

  /* Why */
  .why-section { padding: 36px 0; }
  .why-section .why-title,
  .why-section .why-grid { padding-left: 20px; padding-right: 20px; }
  .why-grid { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 14px; }
  .why-grid .why-item { width: calc(33.333% - 10px); }
  .why-icon img { width: 48px; height: 48px; }
  .why-label { font-size: 12px; }
  .why-title { font-size: 18px; margin-bottom: 28px; }

  /* Steps */
  .steps-section { padding: 36px 20px 48px; }
  .steps-title { font-size: 22px; margin-bottom: 28px; }
  .steps-row { flex-direction: column; align-items: center; gap: 28px; }
  .step { flex-direction: column; }
  .step__body { width: 100%; max-width: 300px; }
  .step__arrow { display: none; }

  /* Pricing */
  .pricing-section { padding: 28px 16px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .plan-card { padding: 24px 20px; }
  .plan-card__tagline { min-height: auto; font-size: 18px; }

  /* Results */
  .results-section { padding: 36px 0 48px; }
  .results-title { font-size: 24px; }
  .results-sub { font-size: 13px; }
  .slider-row { gap: 6px; padding: 0 12px; }
  .text-reviews-grid { grid-template-columns: 1fr; }
  .text-review-card { min-height: 0; }
  .ba-grid { gap: 10px; }
  .ba-grid .result-card { flex: 0 0 calc(50% - 5px); }
  .result-card__img-wrap { aspect-ratio: 3/4; }
  .result-card__label { min-height: calc(15px * 1.4 * 4); margin-bottom: 2px; }
  .result-card__footer { padding: 10px 12px 10px; }
  .msg-thumbs { grid-template-columns: repeat(2, 1fr) !important; padding: 0 12px; gap: 10px; }
  .btn-slider { width: 32px; height: 32px; font-size: 13px; flex-shrink: 0; }
  .slider-row:has(.text-reviews-grid) .btn-slider,
  .slider-row:has(.ba-grid) .btn-slider { display: none; }
  .lightbox__nav { display: none; }

  /* Footer */
  .site-footer { padding: 36px 20px 24px; }
  .footer__top { flex-direction: row !important; align-items: flex-start; gap: 24px; }
  .footer__logo { width: auto; height: auto; margin-bottom: 0 !important; flex-shrink: 0; }
  .footer__nav { padding-left: 0; margin-top: 0 !important; }
  .footer__cols { display: block !important; }
  .footer__cols > div:not(:last-child) { display: none !important; }

  /* Modals */
  .modal { width: calc(100vw - 40px); padding: 32px 20px; }
  .contacts-modal { max-width: calc(100vw - 40px); padding: 32px 20px; }

  /* Section headings */
  .section-title { font-size: 24px; }
  .divider { margin: 0 20px; }
}

/* ===== Small mobile (≤ 480px) ===== */
@media (max-width: 480px) {
  .hero__title { font-size: 22px; }
  .hero__desc { font-size: 13px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; align-items: start; }
  .program-card__img { aspect-ratio: 3 / 4 !important; height: auto !important; }
  .why-grid { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .why-grid .why-item { width: calc(50% - 6px); }
  .why-icon img { width: 40px; height: 40px; }
  .footer__cols { display: block !important; }
  .footer__cols > div:not(:last-child) { display: none !important; }
  .feature-item { max-width: 100%; border-right: none; padding-right: 0; }
  .msg-thumbs { grid-template-columns: repeat(2, 1fr) !important; }
  .results-title { font-size: 22px; }
  .plan-card { padding: 20px 16px; }
  .btn-buy { font-size: 14px; padding: 13px; }
}

/* ===== Checkout consent checkboxes ===== */
.co-consent { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.co-checkbox { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; }
.co-checkbox input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: #4A3D55; cursor: pointer; border-radius: 3px; }
.co-checkbox span { font-size: 12px; color: #6B6270; line-height: 1.5; }
.co-checkbox span a { color: #4A3D55; text-decoration: underline; }
.co-checkbox span a:hover { color: #C9A2B4; }

/* ===== Cookie banner ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #33293C; color: #F7F3EF; padding: 18px 32px calc(18px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 9990; box-shadow: 0 -4px 24px rgba(51,41,60,0.28); }
.cookie-banner__text strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; color: #F7F3EF; }
.cookie-banner__text p { font-size: 13px; color: #948B99; margin: 0; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; align-items: center; }
.cookie-btn { padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; border: none; transition: background 0.15s, color 0.15s; font-family: 'Work Sans', sans-serif; }
.cookie-btn--accept { background: #C9A2B4; color: #2A2130; }
.cookie-btn--accept:hover { background: #D3B0C0; }
.cookie-btn--reject { background: transparent; color: #F7F3EF; border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--reject:hover { background: rgba(255,255,255,0.08); }
.cookie-btn--config { background: transparent; color: #948B99; font-size: 12px; text-decoration: underline; padding: 9px 4px; }
.cookie-btn--config:hover { color: #F7F3EF; }

/* Cookie config modal */
.cookie-overlay { position: fixed; inset: 0; background: rgba(51,41,60,0.65); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.cookie-modal { background: #F7F3EF; border-radius: 16px; padding: 36px; max-width: 460px; width: 100%; box-shadow: 0 20px 60px rgba(51,41,60,0.3); }
.cookie-modal h2 { font-family: 'Lora', serif; font-size: 20px; font-weight: 500; color: #33293C; margin-bottom: 20px; }
.cookie-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid #E4DCD6; }
.cookie-row:last-of-type { border-bottom: none; }
.cookie-row__info strong { display: block; font-size: 14px; font-weight: 600; color: #33293C; margin-bottom: 3px; }
.cookie-row__info p { font-size: 13px; color: #6B6270; margin: 0; }
.cookie-toggle { position: relative; width: 40px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-slider { position: absolute; inset: 0; background: #E4DCD6; border-radius: 22px; cursor: pointer; transition: background 0.2s; }
.cookie-toggle input:checked + .cookie-slider { background: #4A3D55; }
.cookie-slider::before { content: ''; position: absolute; width: 16px; height: 16px; background: #fff; border-radius: 50%; top: 3px; left: 3px; transition: transform 0.2s; }
.cookie-toggle input:checked + .cookie-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal__actions { display: flex; gap: 10px; margin-top: 24px; justify-content: flex-end; }
.cookie-modal__btn { padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; font-family: 'Work Sans', sans-serif; transition: background 0.15s; }
.cookie-modal__btn--save { background: #4A3D55; color: #fff; }
.cookie-modal__btn--save:hover { background: #5C4D68; }
.cookie-modal__btn--cancel { background: transparent; color: #6B6270; border: 1px solid #E4DCD6; }
.cookie-modal__btn--cancel:hover { background: #EFE7DE; }

@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px 20px; }
  .cookie-banner__actions { flex-wrap: wrap; }
  .cookie-modal { padding: 24px 20px; }
}

