:root {
  --bg: #f3f6f3;
  --card: #ffffff;
  --green: #5e7446;
  --green-dark: #3f5630;
  --green-soft: #eaf0e6;
  --sage: #dfe8d8;
  --text: #1a1a1a;
  --muted: #6f7e6c;
  --border: #dde7da;
  --shadow: rgba(70, 88, 62, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter",
    "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.video-section {
  padding-top: 16px;
  padding-bottom: 8px;
}

.video-card {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(70, 88, 62, 0.1);
}

.program-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  object-fit: cover;
}

.results-section {
  overflow: hidden;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.results-section + section {
  padding-top: 32px !important;
}

.results-head {
  margin-bottom: 14px;
}

.results-head h3 {
  margin: 0;
}

.results-controls {
  display: flex;
  position: absolute;
  z-index: 8;
  top: clamp(96px, 31vw, 124px);
  right: 8px;
  left: 8px;
  justify-content: space-between;
  pointer-events: none;
}

.results-nav {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(70, 88, 62, 0.1);
  color: var(--green-dark);
  cursor: pointer;
  pointer-events: auto;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}

.results-nav:hover {
  background: var(--green-soft);
}

.results-nav:active {
  transform: scale(0.94);
}

.results-nav:focus-visible,
.results-dots button:focus-visible {
  outline: 3px solid rgba(94, 116, 70, 0.28);
  outline-offset: 3px;
}

.results-carousel {
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
  touch-action: pan-y;
  user-select: none;
}

.results-ring {
  --results-step: clamp(238px, 74vw, 322px);

  position: relative;
  min-height: 0;
  max-width: 1080px;
  margin: 0 auto;
  transition: height 0.25s ease;
}

.result-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(78vw, 322px);
  padding: 10px;
  border: 1px solid #d7d2c7;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(70, 88, 62, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.82);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
  will-change: opacity, transform;
}

.result-card h4 {
  margin: 14px 0 8px;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.16;
}

.result-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.result-card-media {
  overflow: hidden;
  border-radius: 9px;
  aspect-ratio: 1;
  background: #d7d5cc;
}

.result-card-media img {
  width: 100%;
  height: 100%;
  background: #d7d5cc;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.result-card[data-carousel-position="active"] {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.result-card[data-carousel-position="prev"] {
  z-index: 3;
  opacity: 0.94;
  transform: translateX(calc(-50% - var(--results-step))) scale(0.9);
}

.result-card[data-carousel-position="next"] {
  z-index: 3;
  opacity: 0.94;
  transform: translateX(calc(-50% + var(--results-step))) scale(0.9);
}

.result-card[data-carousel-position="far-prev"] {
  z-index: 1;
  opacity: 0;
  transform: translateX(calc(-50% - var(--results-step) - 160px)) scale(0.78);
}

.result-card[data-carousel-position="far-next"] {
  z-index: 1;
  opacity: 0;
  transform: translateX(calc(-50% + var(--results-step) + 160px)) scale(0.78);
}

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

.results-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(94, 116, 70, 0.28);
  cursor: pointer;
  transition:
    width 0.18s ease,
    background-color 0.18s ease;
}

.results-dots button.is-active {
  width: 26px;
  background: var(--green);
}

.primary-btn,
.secondary-btn,
.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.hero-section,
.belief-section,
.problem-section,
.method-section,
.program-section,
.weeks-section,
.support-section,
.proof-section,
.booking-section {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.hero-section {
  display: grid;
  gap: 24px;
  padding: 20px 0 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
}

.hero-copy h1,
.section-head h2,
.pricing-head h2,
.booking-card h2,
.belief-card h2,
.method-copy h2 {
  margin: 16px 0 14px;
  color: var(--text);
  font-size: 42px;
  font-weight: 920;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy p,
.belief-card p,
.section-head p,
.pricing-head p,
.booking-card p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.35;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.primary-btn,
.secondary-btn {
  min-height: 58px;
  padding: 16px 20px;
  border-radius: 21px;
  font-size: 19px;
  font-weight: 880;
  line-height: 1.1;
}

.primary-btn {
  background: var(--green);
  color: #ffffff;
}

.secondary-btn {
  background: var(--green-soft);
  color: var(--green);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hero-metrics div {
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-metrics b,
.month-map b,
.proof-grid b {
  display: block;
  color: var(--green-dark);
  font-size: 23px;
  font-weight: 920;
  line-height: 1;
}

.hero-metrics span,
.month-map small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.2;
}

.hero-media,
.image-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: 0 18px 48px rgba(70, 88, 62, 0.11);
}

.hero-media {
  position: relative;
  aspect-ratio: 16 / 9;
}

.hero-media img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: center 35%;
}

.hero-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.hero-card b {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 23px;
  line-height: 1;
}

.hero-card span {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.28;
}

.belief-section,
.problem-section,
.method-section,
.program-section,
.weeks-section,
.support-section,
.proof-section,
.pricing-section,
.booking-section {
  padding: 48px 0;
}

.belief-section {
  display: grid;
  gap: 14px;
}

.belief-card,
.problem-strip article,
.method-list article,
.program-grid article,
.support-card,
.proof-grid article,
.price-card,
.pricing-footer,
.booking-card {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 14px 36px var(--shadow);
}

.belief-card {
  padding: 24px;
  border-radius: 30px;
}

.motivation-visual {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.curve-card {
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--bg);
}

.curve-card span,
.month-map span,
.role-badge,
.tile-mark {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
}

.curve-card b {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.05;
}

.curve-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.curve-line {
  position: relative;
  height: 46px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent 49%, var(--border) 50%, transparent 51%);
}

.curve-line::before {
  position: absolute;
  inset: 9px 6px;
  border: 4px solid var(--green);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 36px 0;
  content: "";
}

.curve-card.weak .curve-line::before {
  transform: rotate(12deg) translateY(8px);
  opacity: 0.45;
}

.curve-card.strong .curve-line::before {
  transform: rotate(-7deg) translateY(-4px);
}

.belief-card h2,
.method-copy h2,
.section-head h2,
.pricing-head h2,
.booking-card h2 {
  font-size: 34px;
  line-height: 1.04;
}

.mini-grid,
.problem-strip,
.program-grid,
.support-grid,
.proof-grid,
.pricing-grid,
.method-list {
  display: grid;
  gap: 12px;
}

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

.mini-grid article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--green-soft);
}

.mini-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 15px;
}

h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
}

.mini-grid p,
.problem-strip p,
.method-list p,
.program-grid p,
.support-card p,
.proof-grid span,
.price-note,
.price-card li,
.pricing-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.36;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.problem-strip article,
.program-grid article,
.support-card,
.proof-grid article {
  padding: 21px;
  border-radius: 26px;
}

.problem-strip article,
.program-grid article {
  min-height: 190px;
}

.visual-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border-radius: 20px;
  background: var(--green-soft);
}

.visual-icon::before,
.visual-icon::after {
  position: absolute;
  content: "";
}

.weight-icon::before {
  inset: 15px;
  border: 4px solid var(--green);
  border-radius: 50%;
}

.weight-icon::after {
  right: 13px;
  bottom: 13px;
  left: 13px;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
}

.craving-icon::before {
  width: 18px;
  height: 18px;
  top: 12px;
  left: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 17px 15px 0 #8da875, 1px 25px 0 #b8c8ad;
}

.gut-icon::before {
  inset: 13px;
  border: 5px solid var(--green);
  border-left-color: transparent;
  border-radius: 50%;
}

.gut-icon::after {
  top: 23px;
  left: 22px;
  width: 20px;
  height: 14px;
  border: 4px solid var(--green);
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.energy-icon::before {
  top: 15px;
  left: 12px;
  width: 30px;
  height: 22px;
  border: 4px solid var(--green);
  border-radius: 8px;
}

.energy-icon::after {
  top: 22px;
  right: 10px;
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: -22px 0 0 var(--green), -12px 0 0 var(--green);
}

.method-section {
  display: grid;
  gap: 24px;
}

.image-panel {
  aspect-ratio: 4 / 5;
}

.method-list article {
  padding: 20px;
  border-radius: 24px;
}

.support-loop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 14px;
}

.loop-node {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.loop-node::after {
  position: absolute;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.loop-node:nth-child(2n)::after,
.loop-node:last-child::after {
  display: none;
}

.phone-mock {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: 0 14px 36px var(--shadow);
}

.phone-head {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 900;
}

.message {
  max-width: 82%;
  margin-bottom: 9px;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.24;
}

.message.incoming {
  background: var(--green-soft);
}

.message.outgoing {
  margin-left: auto;
  background: var(--green);
  color: #ffffff;
}

.plate-card {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  background: var(--bg);
}

.plate-card span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.plate-visual {
  position: relative;
  width: 86px;
  height: 86px;
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 0 0 1px var(--border);
}

.plate-visual i {
  position: absolute;
  display: block;
  width: 50%;
  height: 50%;
  background: var(--green);
}

.plate-visual i:nth-child(1) {
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  background: #9aae83;
}

.plate-visual i:nth-child(2) {
  top: 0;
  right: 0;
  width: 42%;
  background: #d8e4d1;
}

.plate-visual i:nth-child(3) {
  right: 0;
  bottom: 0;
  width: 42%;
  background: var(--green);
}

.tile-mark {
  margin-bottom: 28px;
  background: var(--bg);
}

.program-grid article {
  position: relative;
  overflow: hidden;
}

.program-grid article::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--green-soft);
  content: "";
}

.month-map {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.month-map article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(70, 88, 62, 0.06);
}

.month-map b {
  margin-top: 18px;
  font-size: 34px;
}

.weeks-list {
  display: grid;
  gap: 10px;
}

.weeks-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(70, 88, 62, 0.06);
}

.weeks-list summary {
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 11px;
  min-height: 68px;
  padding: 16px 16px;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.14;
  list-style: none;
}

.weeks-list summary::-webkit-details-marker {
  display: none;
}

.weeks-list summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.weeks-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
}

.weeks-list summary i::before,
.weeks-list summary i::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transition: transform 0.18s ease;
}

.weeks-list summary i::after {
  transform: rotate(90deg);
}

.weeks-list details[open] summary i::after {
  transform: rotate(0deg);
}

.weeks-list p {
  margin: 0;
  padding: 0 18px 18px 61px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.38;
}

.support-card.main-person {
  display: grid;
  gap: 16px;
}

.support-card.main-person img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  object-fit: cover;
}

.role-badge {
  margin-bottom: 28px;
}

.proof-section {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.proof-grid article {
  display: grid;
  gap: 5px;
  background: var(--green-soft);
}

.proof-bar {
  width: 100%;
  height: 74px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(94, 116, 70, 0.12) 25%, transparent 25% 50%, rgba(94, 116, 70, 0.16) 50% 75%, transparent 75%),
    var(--card);
}

.proof-bar::before {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: 22px;
  background: var(--green);
  content: "";
}

.proof-bar.w2::before {
  width: 78%;
}

.proof-bar.w3::before {
  width: 56%;
}

.proof-bar.w4::before {
  width: 70%;
}

.pricing-section {
  background: var(--bg);
}

.pricing-container {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.pricing-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.pricing-head b {
  color: var(--green-dark);
  font-weight: 850;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 15px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.price-timer {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin: 30px 0;
  text-align: center;
}

.price-timer span {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.25;
}

.price-timer strong {
  color: var(--text);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px;
  overflow: hidden;
  border-radius: 30px;
}

.main-card {
  border: 2px solid var(--green);
  box-shadow: 0 18px 42px rgba(70, 88, 62, 0.12);
}

.card-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  padding: 8px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
}

.card-label.soft {
  background: var(--green-soft);
  color: var(--green);
}

.card-top h3 {
  min-height: 0;
  margin: 0 0 16px;
  font-size: 28px;
}

.price-box {
  min-height: 0;
  margin-bottom: 18px;
}

.old-price {
  display: inline-block;
  margin-bottom: 8px;
  color: #7a8678;
  font-size: 24px;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.new-price {
  color: var(--green);
  font-size: 48px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.new-price.small {
  font-size: 38px;
  line-height: 1;
}

.total-price {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16.5px;
  font-weight: 760;
  line-height: 1.25;
}

.price-note {
  margin-bottom: 20px;
}

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

.price-card li {
  position: relative;
  padding-left: 27px;
}

.price-card li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #7ea35d;
  content: "";
}

.price-btn {
  min-height: 60px;
  padding: 14px 18px;
  margin-top: auto;
  border-radius: 21px;
  background: var(--green);
  color: #ffffff;
  font-size: 20px;
  font-weight: 880;
  line-height: 1.1;
}

.price-btn.secondary {
  background: var(--green-soft);
  color: var(--green);
}

.pricing-footer {
  margin-top: 22px;
  padding: 26px 28px;
  border-radius: 30px;
}

.pricing-footer b {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.2;
}

.booking-section {
  padding-bottom: 96px;
}

.booking-card {
  display: grid;
  gap: 22px;
  padding: 24px 20px;
  border-radius: 30px;
}

.booking-card h2 {
  margin-top: 16px;
}

.booking-card form {
  display: grid;
  gap: 12px;
}

.booking-card label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 850;
}

.booking-card input {
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 18px;
}

.booking-card button {
  min-height: 62px;
  border: 0;
  border-radius: 22px;
  background: var(--green);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 900;
}

.primary-btn:focus-visible,
.secondary-btn:focus-visible,
.price-btn:focus-visible,
.booking-card button:focus-visible,
.booking-card input:focus-visible {
  outline: 3px solid rgba(94, 116, 70, 0.32);
  outline-offset: 3px;
}

@media (min-width: 720px) {
  .results-head {
    margin-bottom: 18px;
  }

  .results-carousel {
    margin: 0 -32px;
    padding: 0 32px;
  }

  .results-ring {
    --results-step: clamp(282px, 31vw, 372px);
  }

  .result-card {
    width: min(30vw, 340px);
  }

  .result-card h4 {
    font-size: 22px;
  }

  .result-card p {
    font-size: 15px;
  }

  .results-dots {
    margin-top: 18px;
  }
}

@media (max-width: 390px) {
  .result-card h4 {
    font-size: 19px;
  }

  .result-card p {
    font-size: 13px;
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .hero-section,
  .belief-section,
  .problem-section,
  .method-section,
  .program-section,
  .weeks-section,
  .support-section,
  .proof-section,
  .booking-section,
  .pricing-container {
    width: min(1180px, calc(100% - 32px));
  }

  .hero-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
    gap: 36px;
    align-items: center;
    padding: 36px 0 42px;
  }

  .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(54px, 5.8vw, 78px);
  }

  .hero-copy p {
    max-width: 690px;
    font-size: clamp(22px, 2.4vw, 30px);
  }

  .hero-actions {
    display: flex;
  }

  .primary-btn,
  .secondary-btn {
    min-height: 60px;
    padding: 17px 24px;
  }

  .hero-media {
    height: 520px;
    aspect-ratio: auto;
  }

  .hero-card {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 20px 22px;
    border-radius: 26px;
  }

  .hero-card b {
    font-size: 34px;
  }

  .hero-card span {
    font-size: 18px;
  }

  .belief-section,
  .problem-section,
  .method-section,
  .program-section,
  .weeks-section,
  .support-section,
  .proof-section,
  .pricing-section,
  .booking-section {
    padding: 72px 0;
  }

  .belief-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: stretch;
  }

  .belief-card {
    padding: 34px;
    border-radius: 34px;
  }

  .belief-card h2,
  .method-copy h2,
  .section-head h2,
  .pricing-head h2,
  .booking-card h2 {
    font-size: clamp(38px, 4.5vw, 60px);
  }

  .belief-card p,
  .section-head p,
  .pricing-head p,
  .booking-card p {
    font-size: 21px;
  }

  .mini-grid {
    gap: 14px;
  }

  .motivation-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-strip,
  .program-grid,
  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .method-section {
    grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
  }

  .image-panel {
    height: 640px;
    aspect-ratio: auto;
  }

  .method-list {
    gap: 14px;
  }

  .method-list article {
    padding: 22px;
  }

  .weeks-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .month-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .weeks-list summary {
    min-height: 72px;
    padding: 18px 20px;
    font-size: 20px;
  }

  .weeks-list p {
    padding: 0 20px 20px 66px;
    font-size: 18px;
  }

  .support-grid {
    grid-template-columns: 1.25fr 0.85fr 0.85fr;
    gap: 16px;
  }

  .support-card {
    padding: 24px;
  }

  .support-card.main-person {
    grid-template-columns: 128px 1fr;
    align-items: center;
  }

  .support-card.main-person img {
    width: 128px;
    aspect-ratio: 1;
    border-radius: 24px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .price-card {
    padding: 30px 28px 28px;
    border-radius: 32px;
  }

  .card-top h3 {
    min-height: 60px;
    font-size: 30px;
  }

  .new-price {
    font-size: clamp(50px, 5vw, 62px);
  }

  .new-price.small {
    font-size: clamp(36px, 3.8vw, 46px);
  }

  .booking-card {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.74fr);
    gap: 28px;
    align-items: center;
    padding: 34px;
  }
}

@media (max-width: 719px) {
  .hero-section {
    gap: 18px;
    padding: 16px 0 24px;
  }

  .hero-copy h1 {
    margin: 13px 0 10px;
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 17px;
    line-height: 1.3;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .primary-btn,
  .secondary-btn {
    min-height: 52px;
    padding: 13px 16px;
    border-radius: 18px;
    font-size: 17px;
  }

  .hero-proof {
    gap: 6px;
    margin-top: 12px;
  }

  .hero-proof span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .hero-metrics {
    gap: 8px;
    margin-top: 12px;
  }

  .proof-section {
    width: min(100% - 24px, 1180px);
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .belief-card h2,
  .method-copy h2,
  .section-head h2,
  .pricing-head h2,
  .booking-card h2 {
    font-size: 31px;
  }

  .new-price {
    font-size: 43px;
  }
}

@media (max-width: 340px) {
  .hero-copy h1 {
    font-size: 33px;
  }
}
