:root {
  --teal: #0e3b45;
  --teal-deep: #082a32;
  --gold: #c8962f;
  --gold-soft: #d8ab48;
  --crimson: #a8324a;
  --ink: #1c1c1c;
  --muted: #6b6b6b;
  --tint: #faf6ee;
  --line: #ece6da;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.15;
  color: var(--teal);
  font-weight: 600;
}

p { margin: 0 0 1.1em; }
strong { font-weight: 700; }

/* Layout helpers */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 720px; }
.section { padding: 64px 0; }
.section--tint { background: var(--tint); }
.center { text-align: center; }
.muted { color: var(--muted); }

.big-head { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 0.4em; }
.eyebrow { color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4em; }
.lead { font-size: 1.25rem; color: var(--teal); }
.intro__img { margin: 28px auto; max-width: 560px; }
.intro__img img { width: 100%; border-radius: 14px; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 8px 22px rgba(200, 150, 47, 0.35);
}
.btn:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200, 150, 47, 0.45); }
.btn--big { font-size: 1.2rem; padding: 20px 40px; }
.btn--cta { font-size: 1.45rem; padding: 24px 44px; letter-spacing: 0.01em; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  padding: 72px 0 80px;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__copy h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 1.08;
  margin: 0 0 0.45em;
}
.hero__sub {
  color: var(--gold-soft);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  margin: 0 0 1.4em;
}
/* ---------- HERO IMAGE ---------- */
.hero__img {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  background: var(--teal-deep);
}
.hero__img img { width: 100%; display: block; }

/* ---------- HERO CAROUSEL ---------- */
.hero__carousel { position: relative; }
.carousel__track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--teal-deep);
}
.carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.carousel__slide.is-active { opacity: 1; pointer-events: auto; }
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.6;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.carousel__nav:hover { opacity: 1; }
.carousel__nav:active { transform: translateY(-50%) scale(0.9); }
.carousel__nav--prev { left: 6px; }
.carousel__nav--next { right: 6px; }
.carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: background 0.15s ease, transform 0.15s ease;
}
.carousel__dot.is-active { background: var(--gold); transform: scale(1.25); }

/* ---------- IMAGINE ---------- */
/* Doubled class keeps these from being reset by the `.section` padding
   shorthand inside the responsive media queries */
.section.section--imagine { text-align: center; padding-bottom: 8px; }
.section.section--story { padding-top: 8px; }
.imagine-list { list-style: none; padding: 0; margin: 0 auto; max-width: 760px; text-align: left; }
.imagine-list li {
  font-size: 1.2rem;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.imagine-list li:last-child { border-bottom: none; }
.arrow { color: var(--gold); font-weight: 700; margin-right: 6px; }

/* ---------- STORY ---------- */
.story { font-size: 1.12rem; }
.story p { margin: 0 0 1.2em; }
.story__bridge { color: var(--muted); font-size: 1.05rem; }
.story__quote { color: var(--teal); font-style: italic; font-weight: 600; }
.story strong { color: var(--teal); }

/* ---------- PRICE ANCHOR ---------- */
.anchor p { margin: 0 0 0.7em; }
.anchor__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 0.2em 0 !important;
}

/* ---------- LISTS ---------- */
.check-list { list-style: none; padding: 0; margin: 1em 0; }
.check-list li {
  position: relative;
  padding: 6px 0 6px 32px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--gold);
  font-weight: 700;
}
.check-list--plain li::before { content: "•"; }
.check-list--center { display: inline-block; text-align: left; }

/* ---------- INTRO FEATURES ---------- */
.feature-row {
  list-style: none;
  padding: 0;
  margin: 1.6em 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  font-weight: 600;
  color: var(--teal);
}
.feature-row li { font-size: 1rem; }

/* ---------- INSTRUCTOR ---------- */
.instructor {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "photo title"
    "photo copy";
  grid-template-rows: min-content auto;
  column-gap: 48px;
  align-items: center;
}
.instructor__title { grid-area: title; align-self: end; font-size: 2.4rem; margin: 0 0 0.4em; }
.instructor__photo { grid-area: photo; }
.instructor__copy { grid-area: copy; align-self: start; }
.instructor__photo img { border-radius: 12px; box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.signature { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--crimson); font-style: italic; }

/* ---------- ONE TECHNIQUE ---------- */
.technique {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "copy images"
    "after images";
  column-gap: 48px;
  align-items: center;
}
.technique__copy { grid-area: copy; }
.technique__copy h2 { margin-top: 0; }
.technique__copy strong { color: var(--teal); }
.technique__after {
  grid-area: after;
  margin: 1.2em 0 0;
  font-size: 1.12rem;
  color: var(--teal);
}
.technique__after strong { color: var(--teal); }
.technique__row {
  grid-area: images;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.technique__item { margin: 0; }
.technique__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* ---------- MODULES ---------- */
.module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "img title"
    "img body";
  grid-template-rows: min-content auto;
  column-gap: 48px;
  align-content: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.module:last-child { border-bottom: none; }
/* Alternate the image side on desktop */
.module:nth-of-type(even) {
  grid-template-areas:
    "title img"
    "body img";
}
.module__title { grid-area: title; align-self: end; font-size: 1.8rem; margin: 0 0 14px; }
.module__img {
  grid-area: img;
  align-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}
.module__img img { display: block; width: 100%; }
.module__img--portrait img { aspect-ratio: 3 / 4; object-fit: cover; object-position: center; }

/* Zoom in to trim the empty margins and give the subject more room.
   Modules 3-5 have the most dead space, so they crop harder. */
.module:nth-of-type(1) .module__img img,
.module:nth-of-type(2) .module__img img { transform: scale(1.18); }
.module:nth-of-type(3) .module__img img,
.module:nth-of-type(4) .module__img img { transform: scale(1.35); }
.module:nth-of-type(5) .module__img img { transform: scale(1.28); }
.module__body { grid-area: body; align-self: start; }
.module__desc { margin: 0 0 0.6em; }
.module__desc strong { color: var(--teal); }
.module__body .check-list { margin-bottom: 0; }

/* ---------- PRICE BOX ---------- */
.price-box {
  background: linear-gradient(165deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  text-align: center;
  border-radius: 18px;
  padding: 44px 32px;
  box-shadow: 0 24px 60px rgba(14, 59, 69, 0.35);
  border: 2px solid var(--gold);
}
.price-box__old { color: rgba(255,255,255,0.6); font-size: 1.2rem; margin: 0 0 4px; }
.price-box__old s { color: rgba(255,255,255,0.6); }
.price-box__label { text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-soft); font-weight: 600; margin: 0; }
.price-box__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1;
}
.price-box__terms { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 26px; line-height: 1.5; }
.price-box__ps { color: var(--gold-soft); font-size: 0.98rem; margin: 20px auto 16px; max-width: 30ch; }
.pay-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.pay-logos img { height: 30px; width: auto; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.25); }
.trust-badges { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.trust-badges__guarantee::before { content: "·"; margin: 0 0.4em; opacity: 0.6; }

/* ---------- GUARANTEE ---------- */
.guarantee-badge {
  width: 130px; height: 130px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: radial-gradient(circle at 50% 35%, var(--gold-soft), var(--gold));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 10px 26px rgba(200,150,47,0.4);
  border: 3px solid #fff;
  outline: 2px solid var(--gold);
}
.guarantee-badge__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.guarantee-badge__txt {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
}
.guarantee-line {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--teal);
  margin-top: 1em;
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 150px;
  padding: 22px 24px;
  margin: 0 0 18px;
  border: 2px dashed #cfc6b5;
  border-radius: 12px;
  background: repeating-linear-gradient(
    45deg,
    #fbf8f1,
    #fbf8f1 12px,
    #f4eee2 12px,
    #f4eee2 24px
  );
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.img-placeholder span { font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.img-placeholder--wide { max-width: 480px; min-height: 200px; margin-left: auto; margin-right: auto; }

/* ---------- CONTENT IMAGES ---------- */
.content-img { display: block; width: 100%; max-width: 460px; border-radius: 12px; box-shadow: 0 14px 36px rgba(0,0,0,0.16); margin: 0 auto 18px; }
.content-img--wide { max-width: 540px; margin: 0 auto 22px; }

/* ---------- BONUSES ---------- */
.bonus {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 24px;
}
/* Keep the image column the same width on both sides so the images stay
   the same size whether they sit left or right (zigzag layout) */
.bonus:nth-of-type(even) { grid-template-columns: 1.15fr 0.85fr; }
.bonus:nth-of-type(even) .bonus__img { order: 2; }
.bonus__img { margin: 0; }
.bonus__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}
.bonus__body .check-list { margin-bottom: 0.4em; }
.bonus h3 { margin: 0 0 0.5em; font-size: 1.6rem; }
.bonus__value { font-size: 1.1rem; color: var(--teal); margin: 0.6em 0 0; }
.bonus__value s { color: var(--muted); }

/* ---------- FEATURE BONUS (dragonfly) ---------- */
.feature-bonus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 920px;
  margin: 8px auto 0;
}
.feature-bonus__img { margin: 0; }
.feature-bonus__img img { width: 100%; border-radius: 14px; box-shadow: 0 18px 44px rgba(0,0,0,0.2); }
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--teal, #2c6b6b);
  border-radius: 14px;
  background: rgba(44, 107, 107, 0.06);
  color: var(--teal, #2c6b6b);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1rem;
}
.feature-bonus__body .check-list { margin-bottom: 0.4em; }

/* ---------- EVERYTHING YOU GET ---------- */
.offer-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 32px 26px;
  margin: 0 auto 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.offer-summary__top { display: block; }
.offer-summary__img { max-width: 400px; margin: 0 auto 24px; }
.offer-summary__img img { width: 100%; border-radius: 12px; box-shadow: 0 12px 30px rgba(0,0,0,0.14); }
.get-list { max-width: 560px; margin: 0 auto; text-align: left; }
.get-list p { margin: 0.4em 0; }
.get-list__main { font-size: 1.15rem; }
.modules-mini { list-style: none; padding: 0 0 0 28px; margin: 0.2em 0 1em; color: var(--muted); }
.modules-mini li { padding: 2px 0; }
.modules-mini li::before { content: "» "; color: var(--gold); }

.offer-total {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--muted);
  margin: 18px 0 0;
}
.offer-total s { color: var(--muted); }
.offer-today {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--crimson);
  margin: 0.2em 0 0;
}

/* ---------- TIMER ---------- */
.timer-bonus__head { font-size: 1.8rem; color: var(--crimson); }
.timer { margin: 30px auto 0; }
.timer__label { font-weight: 700; color: var(--crimson); margin-bottom: 14px; }
.timer__clock { display: flex; gap: 16px; justify-content: center; }
.timer__clock > div {
  background: var(--teal);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timer__num { font-family: "Cormorant Garamond", serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.timer__unit { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-soft); margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { border-bottom: 1px solid var(--line); }
.faq__q {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--teal);
  font-size: 1.1rem;
  padding: 18px 40px 18px 0;
  position: relative;
  transition: color 0.15s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq[open] > .faq__q::after { content: "–"; }
.faq__q:hover { color: var(--gold); }
.faq__a { margin: 0; padding: 0 40px 20px 0; color: #333; }

/* ---------- FOOTER ---------- */
.footer { background: var(--teal-deep); color: rgba(255,255,255,0.75); padding: 44px 0; font-size: 0.9rem; }
.footer__brand { font-weight: 600; color: #fff; margin-bottom: 6px; }
.footer__links { margin-bottom: 16px; }
.footer__links a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer__links a:hover { color: #fff; text-decoration: underline; }
.footer__disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.5); max-width: 640px; margin: 0 auto; }

/* ---------- SUBPAGES (legal + thank-you) ---------- */
.subtop { border-bottom: 1px solid var(--line); }
.subtop__inner { max-width: var(--max); margin: 0 auto; padding: 18px 24px; }
.subtop a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.subtop a:hover { color: var(--teal); }

.legal { padding: 48px 0 72px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin: 0 0 0.15em; }
.legal__updated { color: var(--muted); font-size: 0.95rem; margin: 0 0 2.2em; }
.legal h2 { font-size: 1.45rem; margin: 2em 0 0.5em; }
.legal h3 { font-size: 1.12rem; color: var(--ink); margin: 1.5em 0 0.35em; }
.legal p, .legal li { color: #333; font-size: 1rem; line-height: 1.7; }
.legal ul { padding-left: 1.25em; margin: 0 0 1.1em; }
.legal li { margin-bottom: 0.4em; }
.legal a { color: var(--gold); }
.legal address { font-style: normal; line-height: 1.7; }
.legal__fill { background: #fff7e6; border: 1px dashed var(--gold); border-radius: 8px; padding: 2px 6px; color: #7a5a12; font-weight: 600; }

/* Thank-you */
.ty { text-align: center; padding: 80px 0 72px; }
.ty__badge { width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%; background: rgba(200,150,47,0.14); display: flex; align-items: center; justify-content: center; }
.ty__badge svg { width: 44px; height: 44px; }
.ty h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin: 0 0 0.25em; }
.ty__lead { font-size: 1.25rem; color: var(--teal); max-width: 620px; margin: 0 auto 2em; }
.ty__box { text-align: left; background: var(--tint); border: 1px solid var(--line); border-radius: 16px; padding: 28px 30px; max-width: 620px; margin: 0 auto 2em; }
.ty__box h2 { font-size: 1.35rem; margin: 0 0 0.6em; }
.ty__box ul { margin: 0; padding-left: 1.2em; }
.ty__box li { margin-bottom: 0.55em; color: #333; }
.ty__note { color: var(--muted); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }

/* ---------- CHECKOUT ---------- */
.checkout-top { background: var(--teal-deep); color: #fff; padding: 14px 0; text-align: center; font-size: 0.95rem; letter-spacing: 0.02em; }
.checkout-top__lock { color: var(--gold-soft); }

.checkout { padding: 40px 0 64px; }
.checkout__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }

.checkout__form h2 { font-size: 1.25rem; margin: 0 0 16px; }
.checkout__form h2 + h2, .checkout__form .checkout__step { margin-top: 32px; }
.checkout__step { font-size: 1.25rem; margin: 32px 0 16px; color: var(--teal); font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; }
.checkout__step:first-child { margin-top: 0; }

.field { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; font-size: 1rem; font-family: inherit; margin-bottom: 14px; background: #fff; color: var(--ink); }
.field:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 150, 47, 0.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.product-row { display: flex; align-items: center; gap: 14px; border: 1px solid var(--gold); background: var(--tint); border-radius: 12px; padding: 16px 18px; }
.product-row__radio { width: 20px; height: 20px; border-radius: 50%; border: 6px solid var(--gold); flex: 0 0 auto; }
.product-row__name { font-weight: 600; flex: 1; }
.product-row__price { font-weight: 700; white-space: nowrap; }

.pay-element { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: #fff; }
.pay-element__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-weight: 600; gap: 10px; }
.pay-element__logos { display: flex; gap: 6px; align-items: center; }
.pay-element__logos img { height: 22px; width: auto; display: inline-block; }
.pay-element label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; }
.pay-element .field { background: #f7f7f9; margin-bottom: 0; }
.pay-element .field-row { margin-top: 14px; }

.btn--block { display: block; width: 100%; text-align: center; margin-top: 24px; }
.btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.checkout__pay-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin: 14px 0 0; }
.checkout__error { color: var(--crimson); font-size: 0.9rem; margin: 12px 0 0; min-height: 1em; }

.checkout__summary { background: var(--tint); border: 1px solid var(--line); border-radius: 16px; padding: 28px; position: sticky; top: 20px; }
.checkout__title { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0 0 18px; text-align: center; }
.checkout__cover { border-radius: 12px; overflow: hidden; margin-bottom: 20px; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); }
.checkout__cover img { width: 100%; display: block; }
.checkout__includes { list-style: none; padding: 0; margin: 0 0 20px; }
.checkout__includes li { position: relative; padding-left: 28px; margin-bottom: 10px; color: #333; }
.checkout__includes li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.checkout__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line); padding-top: 16px; margin-bottom: 22px; font-size: 1.1rem; }
.checkout__total strong { font-size: 1.6rem; color: var(--teal); }
.checkout__guarantee { text-align: center; margin: 0; color: #444; font-size: 0.95rem; }
.checkout__guarantee strong { color: var(--teal); }

/* ---------- OFFER EXPIRY STATES ---------- */
/* Default = live offer. When the countdown ends, html.offer-expired flips the
   page to the no-bonus version (bonus hidden, totals drop from $171 to $144). */
.total--expired { display: none; }
html.offer-expired .total--live { display: none; }
html.offer-expired .total--expired { display: inline; }
html.offer-expired .js-hide-expired { display: none !important; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  body { font-size: 17px; }
  .hero { padding: 36px 0 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 16px; }
  .checkout__grid { grid-template-columns: 1fr; gap: 28px; }
  .checkout__summary { position: static; order: -1; }
  .hero__sub { margin-bottom: 0.4em; }
  .section.section--imagine { padding-top: 32px; }
  .hero__copy { text-align: center; }
  .instructor {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "photo"
      "copy";
    gap: 22px;
  }
  .instructor__title { align-self: auto; text-align: center; }
  .instructor__copy { align-self: auto; }
  .instructor__photo { max-width: 420px; margin: 0 auto; }

  /* Technique stacks as text -> images -> closing line on mobile */
  .technique {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "images"
      "after";
    gap: 24px;
  }
  .technique__after { margin-top: 0; }
  .section { padding: 30px 0; }

  /* Give the money-back guarantee its own prominent line on mobile */
  .trust-badges__secure,
  .trust-badges__guarantee { display: block; }
  .trust-badges__guarantee {
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.02rem;
    color: #fff;
  }
  .trust-badges__guarantee::before { content: none; }

  /* Modules stack as title -> image -> description on mobile */
  .module,
  .module:nth-of-type(even) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "img"
      "body";
    gap: 14px;
  }
  .module__title { align-self: auto; }
  .module__body { align-self: auto; }

  /* Stack the other 2-col content layouts and put the image on top.
     The even-row override needs matching specificity to win here. */
  .bonus,
  .bonus:nth-of-type(even),
  .feature-bonus,
  .offer-summary__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .feature-bonus__img,
  .offer-summary__img {
    order: -1 !important;
    max-width: 420px;
    margin: 0 auto;
  }
  .module__img {
    max-width: 100%;
    margin: 0;
  }
  .bonus__img {
    order: -1 !important;
    max-width: 360px;
    margin: 0 auto;
  }
  .feature-bonus { margin-top: 18px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .section { padding: 24px 0; }

  .hero { padding: 26px 0 44px; }
  .hero__copy h1 { font-size: 2rem; }
  .hero__sub { font-size: 1.2rem; }

  .big-head { font-size: 2rem; }
  .lead { font-size: 1.1rem; }
  .guarantee-line { font-size: 1.4rem; }
  .imagine-list li { font-size: 1.05rem; }
  .anchor__price { font-size: 3.2rem; }

  .module__title { font-size: 1.6rem; }
  .module__img { max-width: 100%; }
  .instructor__title { font-size: 2rem; }
  .bonus { padding: 22px 20px; }
  .offer-summary { padding: 22px 18px; }

  /* Full-width, easy-to-tap CTAs */
  .btn { display: block; width: 100%; padding: 16px 20px; font-size: 1.05rem; }
  .btn--cta { padding: 20px 18px; font-size: 1.25rem; }

  /* Tighter price box */
  .price-box { padding: 32px 20px; }
  .price-box__price { font-size: 4rem; }
  .pay-logos img { height: 26px; }

  /* Keep the 3 timer blocks on one row even on 320px screens */
  .timer__clock { gap: 8px; }
  .timer__clock > div { min-width: 0; flex: 1; padding: 12px 6px; }
  .timer__num { font-size: 2rem; }
  .timer__unit { font-size: 0.65rem; letter-spacing: 0.06em; }

  .feature-row { gap: 10px 18px; }
}
