/* ==========================================================================
   Tokens
   ========================================================================== */
:root{
  --navy: #345187;
  --navy-soft: #345187;
  --green: #2F6FE0;
  --green-dark: #255ABE;
  --green-darker: #1D4A9C;
  --green-light: #8FB8FF;
  --amber: #F1B61A;
  --amber-dark: #D99F0F;
  --red: #E63946;
  --red-dark: #C4293A;

  --bg: #F5F8FC;
  --bg-alt: #EAF2FC;
  --bg-blue: #EEF3FA;
  --bg-navy-tint: #345187;
  --card: #FFFFFF;

  --text: #141C24;
  --text-muted: #4C5866;
  --text-invert: #FFFFFF;
  --border: #E1E8F0;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(14,42,61,0.06);
  --shadow-md: 0 8px 24px rgba(14,42,61,0.10);
  --shadow-lg: 0 16px 40px rgba(14,42,61,0.16);

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1120px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: var(--card);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,svg{ display:block; max-width:100%; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,p{ margin:0; }
button{ font-family: inherit; cursor:pointer; border:none; }
a{ color:inherit; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  font-weight: 800;
  text-align:center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  letter-spacing: .2px;
}
.btn--primary{
  position: relative;
  overflow: hidden;
  background: var(--amber);
  color: #1A1300;
  box-shadow: 0 12px 22px rgba(20,32,28,0.14);
}
.btn--primary::after{
  content:"";
  position:absolute;
  top:0; left:-100%;
  width: 60%; height: 100%;
  background: rgba(255,255,255,0.35);
  transform: skewX(-20deg);
  animation: btnShine 2.5s ease-in-out 1s infinite;
  pointer-events: none;
}
.btn--primary:hover{ background: var(--amber-dark); transform: translateY(-1px) scale(1.01); box-shadow: 0 16px 28px rgba(20,32,28,0.18); }
.btn--primary:active{ transform: translateY(0) scale(0.99); }

@keyframes btnShine{
  0%{ left:-100%; }
  100%{ left: 150%; }
}
@media (prefers-reduced-motion: reduce){
  .btn--primary::after{ animation: none; }
}
.btn--large{
  width:100%;
  padding: 18px 24px;
  font-size: clamp(15px, 4vw, 18px);
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  background-color: var(--card);
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255,255,255,0.95), transparent 70%),
    linear-gradient(to right, rgba(231,233,238,0.49) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(231,233,238,0.49) 1px, transparent 1px);
  background-size: auto, 27px 27px, 27px 27px;
  padding: 0 0 40px;
  position: relative;
  overflow: hidden;
}
.hero__inner{ position:relative; z-index:1; }

.trust-pill{
  display:block;
  width: calc(100% - 40px);
  max-width: 620px;
  margin: 0 auto 18px;
  text-align:center;
  background: var(--navy);
  color: var(--text-invert);
  font-size: clamp(13px, 2.6vw, 16px);
  font-weight: 800;
  line-height:1.4;
  padding: 14px 24px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.eyebrow{
  text-align:center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.eyebrow--accent{ color: var(--red); }

.hero__title{
  text-align:center;
  font-family: 'Outfit', var(--font);
  font-size: clamp(24px, 6.2vw, 42px);
  line-height: 1.22;
  font-weight: 800;
  color: var(--text);
  margin: 0 auto 14px;
  max-width: 780px;
}
.hero__title--accent{ color: #345187; }
.hero__title--underline{ text-decoration: underline; text-decoration-color: #345187; text-decoration-thickness: 3px; text-underline-offset: 4px; }
.hero__title--small{
  display: block;
  font-size: clamp(18px, 4.4vw, 24px);
  font-weight: 600;
  margin-top: 10px;
}
.hero__title--highlight{
  white-space: nowrap;
  border-bottom: 3px solid #25D366;
  box-shadow: 0 4px 0 -2px #25D366;
  padding-bottom: 1px;
}

.hero__subtitle{
  text-align:center;
  font-size: clamp(15px, 3.6vw, 18px);
  font-weight: 500;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 26px;
  line-height: 1.6;
}
.hero__subtitle strong{ color: var(--text); font-weight: 800; }

.hero__grid{
  display:flex;
  flex-direction:column;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto 26px;
}

.hero__photo-wrap{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
}
.hero__photo{
  width: 100%;
  max-width: 260px;
  height: auto;
  position: relative;
  z-index: 1;
}
.hero__photo-badge{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  text-align: center;
  width: 90%;
  max-width: 280px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.hero__photo-badge__name{ font-size: 19px; font-weight: 800; color: #345187; }
.hero__photo-badge__role{ font-size: 13.5px; font-weight: 700; color: var(--text); margin-top: 2px; }
.hero__photo-badge__company{ font-size: 12px; font-weight: 600; color: var(--text-muted); margin-top: 2px; }

.media-placeholder{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  background: var(--bg-blue);
  border: 1px solid #DCE4F2;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  color: #8494AD;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.media-placeholder__icon{ width:40px; height:40px; fill: #A9B7CE; }

.info-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.info-card{
  display:flex;
  align-items:center;
  gap:10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}
.info-card__icon{
  font-size: 18px;
  width: 38px; height: 38px;
  flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: var(--navy);
  border-radius: 10px;
}
.info-card__label{ font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); font-weight:700; }
.info-card__value{ font-size: 13.5px; font-weight: 800; color: var(--text); }

/* ==========================================================================
   CTA block (repeated component)
   ========================================================================== */
.cta-block{
  max-width: 520px;
  margin: 0 auto;
  text-align:center;
}

.cta-btn-wrap{
  position: relative;
  display: inline-block;
  width: 100%;
}
.live-badge{
  position: absolute;
  top: -13px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #D41816;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.live-badge__dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink:0;
}
.cta-block__title{
  margin-top: 14px;
  font-size: clamp(13px, 3.4vw, 15px);
  font-weight: 700;
}
.price-strike{ color: var(--red); text-decoration: line-through; opacity:.85; }
.price-free{ color: var(--green); font-weight: 800; }
.hero .price-free, .cta-strip .price-free{ color: var(--green); }
.cta-block__note{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  opacity: .7;
}

.cta-strip{
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip .cta-block__title{ color: var(--text); }
.cta-strip .cta-block__note{ color: var(--text-muted); }

/* ==========================================================================
   Sections generic
   ========================================================================== */
.section{ padding: 48px 0; }
.section-title{
  text-align:center;
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 800;
  line-height:1.25;
  margin-bottom: 8px;
  color: var(--navy);
}
.section-title--light{ color: var(--text-invert); margin-bottom:0; }
.section-title--accent{ color: var(--green-darker); }
.section-title--accent-green{ color: var(--green-darker); margin-bottom: 24px; }
.section-kicker{
  text-align:center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-darker);
  margin-bottom: 28px;
}

/* ==========================================================================
   Pain points
   ========================================================================== */
.pain-points{ padding-top: 44px; }
.two-col{ display:grid; grid-template-columns: 1fr; gap: 20px; }

.pain-col{
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.pain-col--bad{ background: #FFF1F1; border: 1px solid #FFD9D9; }
.pain-col--good{ background: var(--bg-alt); border: 1px solid #CFE0F7; }
.pain-col__title{
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy);
}

.check-list{ display:flex; flex-direction:column; gap: 12px; }
.check-list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 15px;
  line-height:1.5;
  font-weight: 600;
  color: var(--text);
}
.check-list__icon{
  flex-shrink:0;
  width: 24px; height:24px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}
.check-list--bad .check-list__icon{ background: var(--red); color:#fff; }
.check-list--good .check-list__icon{ background: var(--green); color:#fff; }
.check-list--compact li{ font-size: 13.5px; }
.check-list--wide{ max-width: 720px; margin:0 auto; }

/* ==========================================================================
   Curriculum / stages
   ========================================================================== */
.curriculum{ background: var(--bg-alt); }
.curriculum .section-title{ max-width: 780px; margin-left:auto; margin-right:auto; }

.stage-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.stage-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.stage-card__num{
  display:inline-block;
  background: var(--navy);
  color: var(--text-invert);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.stage-card__title{ font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.stage-card__sub{ font-size: 13.5px; color: var(--text-muted); font-weight:600; margin-bottom: 14px; line-height:1.4; }
.stage-card__discover{ font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing:.4px; color: var(--green-darker); margin-bottom: 10px; }

/* ==========================================================================
   Demo / SEE IT
   ========================================================================== */
.demo{
  background: var(--navy);
  color: var(--text-invert);
  border-radius: var(--radius-lg);
  margin: 0 16px;
  padding: 40px 0;
}
.demo .container{ max-width: 720px; }
.demo__seeit{
  text-align:center;
  font-size: clamp(30px, 8vw, 46px);
  font-weight: 800;
  color: var(--green-light);
  margin: 4px 0 16px;
}
.demo__desc{
  text-align:center;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.feature-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feature-pill{
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
}
.feature-pill__check{
  color: var(--green-light);
  font-weight: 800;
  margin-right: 2px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials .section-title{ margin-bottom: 30px; line-height:1.3; }
.testimonial-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.testimonial-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  text-align:center;
}
.media-placeholder--sm{ aspect-ratio: 4/3; margin-bottom: 10px; border-radius: var(--radius-sm); }
.media-placeholder--sm .media-placeholder__icon{ width:26px; height:26px; }
.testimonial-card__name{ font-size: 13.5px; font-weight: 800; color: var(--navy); }
.testimonial-card__role{ font-size: 11.5px; color: var(--text-muted); font-weight:600; }

/* ==========================================================================
   Trainer
   ========================================================================== */
.trainer{ background: var(--bg-alt); }
.trainer-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 18px;
  text-align:center;
}
.media-placeholder--photo{
  width: 140px; height:140px; aspect-ratio: auto;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid #CFE0F7;
  color: #4C7FC7;
  overflow: hidden;
  padding: 0;
}
.media-placeholder--photo .media-placeholder__icon{ width: 48px; height:48px; fill:#4C7FC7; }
.trainer-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.trainer-card__name{ font-size: 22px; font-weight: 800; color: var(--navy); }
.trainer-card__title{ font-size: 14.5px; font-weight: 700; color: var(--green-darker); margin-top: 4px; }
.trainer-card__bio{ font-size: 14.5px; color: var(--text-muted); margin-top: 12px; line-height:1.6; }
.trainer-card__mission{ font-size: 14.5px; margin-top: 12px; }
.flow-line{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap: 6px;
  margin-top: 16px;
}
.flow-line span:not(.flow-line__arrow){
  background: var(--bg-alt);
  border: 1px solid #CFE0F7;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-darker);
}
.flow-line__arrow{ color: var(--text-muted); font-weight:700; }
.trainer-card__note{ font-size: 13px; color: var(--text-muted); margin-top: 16px; font-style: italic; }

/* ==========================================================================
   Bonuses
   ========================================================================== */
.bonus-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 26px;
}
.bonus-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.bonus-card__tag{
  display:inline-block;
  background: var(--amber);
  color: #402C00;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing:.4px;
}
.bonus-card__title{ font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height:1.35; }
.bonus-card__desc{ font-size: 13.5px; color: var(--text-muted); line-height:1.5; margin-bottom: 10px; }
.bonus-card__value{ font-size: 13.5px; font-weight: 800; color: var(--green-darker); }

.bonus-summary{
  background: var(--navy);
  color: var(--text-invert);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align:center;
}
.bonus-summary__label{ font-size: 14px; font-weight: 700; opacity:.85; margin-bottom: 8px; }
.bonus-summary__total{ font-size: clamp(18px,5vw,24px); font-weight: 800; margin-bottom: 6px; }
.bonus-summary__total span{ color: var(--amber); }
.bonus-summary__price{ font-size: 14px; font-weight: 700; opacity:.8; margin-bottom: 6px; }
.bonus-summary__free{ font-size: clamp(18px,5vw,24px); font-weight: 800; color: var(--green-light); }

/* ==========================================================================
   Walk away
   ========================================================================== */
.walk-away{ background: var(--bg-alt); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list{ max-width: 720px; margin: 0 auto; display:flex; flex-direction:column; gap: 12px; }
.faq-item{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 18px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  font-size: 20px;
  font-weight: 700;
  color: var(--green-darker);
  flex-shrink:0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after{ content:"−"; }
.faq-item p{
  font-size: 14px;
  color: var(--text-muted);
  line-height:1.6;
  padding-bottom: 16px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta{ padding-bottom: 90px; }
.final-cta__title{
  text-align:center;
  font-size: clamp(20px,5vw,28px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 620px;
  margin-left:auto; margin-right:auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 20px 0 100px;
  text-align:center;
  font-size: 12.5px;
}

/* ==========================================================================
   Sticky CTA bar
   ========================================================================== */
.sticky-cta{
  position: fixed;
  left:0; right:0; bottom:0;
  z-index: 40;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(14,42,61,0.12);
  display: flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  transform: translateY(0);
  transition: transform .3s ease;
}
.sticky-cta.is-hidden{ transform: translateY(120%); }

.sticky-cta__left{ display:flex; flex-direction:column; gap:2px; line-height:1.2; flex-shrink:0; }
.sticky-cta__price-row{ display:flex; align-items:baseline; gap:10px; }
.sticky-cta__price-free{ font-size: clamp(24px, 5vw, 32px); font-weight: 800; color: var(--green-darker); }
.sticky-cta__price-row .price-strike{ font-size: clamp(15px, 3vw, 20px); }
.sticky-cta__urgency{
  font-size: clamp(12px, 2.4vw, 15px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--red);
}

.sticky-cta__badge-pill{
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  display: none;
}

.sticky-cta__right{ flex-shrink:0; width:auto; }
.sticky-cta .btn{ padding: 18px 32px; font-size: clamp(16px, 3vw, 20px); }
.sticky-cta .live-badge{ font-size: 11px; padding: 5px 10px; top: -13px; left: 16px; }

@media (min-width: 480px){
  .sticky-cta__badge-pill{ display: block; }
}

/* ==========================================================================
   Modal
   ========================================================================== */
.modal{
  position: fixed;
  inset:0;
  z-index: 100;
  display:flex;
  align-items:flex-end;
  visibility: hidden;
  opacity:0;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal.is-open{ visibility:visible; opacity:1; }
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(14,42,61,0.55);
  backdrop-filter: blur(2px);
}
.modal__panel{
  position:relative;
  z-index:1;
  background: var(--card);
  width:100%;
  max-height: 92vh;
  overflow-y:auto;
  border-radius: 24px 24px 0 0;
  padding: 28px 22px calc(28px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .3s ease;
}
.modal.is-open .modal__panel{ transform: translateY(0); }
.modal__close{
  position:absolute;
  top:14px; right:14px;
  width:32px; height:32px;
  border-radius:50%;
  background: var(--bg-alt);
  color: var(--navy);
  font-size:20px;
  display:flex; align-items:center; justify-content:center;
}
.modal__title{ font-size: 21px; font-weight: 800; color: var(--navy); text-align:center; }
.modal__subtitle{ font-size: 13.5px; color: var(--text-muted); text-align:center; margin-top:6px; margin-bottom: 22px; font-weight:600; }

.reg-form{ display:flex; flex-direction:column; gap: 14px; }
.reg-form__field{ display:flex; flex-direction:column; gap: 6px; }
.reg-form__field span{ font-size: 13px; font-weight: 700; color: var(--text); }
.reg-form__field input{
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  outline:none;
  transition: border-color .15s ease;
}
.reg-form__field input:focus{ border-color: var(--green); }
.reg-form__submit{ margin-top: 6px; }
.reg-form__privacy{ font-size: 11.5px; color: var(--text-muted); text-align:center; margin-top: 8px; line-height:1.5; }

.modal__success-state{ text-align:center; padding: 20px 0; }
.modal__success-icon{
  width: 64px; height:64px;
  border-radius:50%;
  background: var(--green);
  color:#fff;
  font-size: 30px;
  font-weight: 800;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 18px;
}
.modal__success-state .btn{ margin-top: 20px; padding: 14px 28px; }

/* ==========================================================================
   Tablet / Desktop
   ========================================================================== */
@media (min-width: 640px){
  .two-col{ grid-template-columns: 1fr 1fr; }
  .hero__grid{ flex-direction:row; align-items:center; max-width: 900px; }
  .hero__grid .hero__photo-wrap{ flex: 1.1; }
  .hero__grid .info-cards{ flex: 1; grid-template-columns: 1fr 1fr; align-self:stretch; }
  .info-cards{ grid-template-columns: repeat(4, 1fr); max-width: 720px; }
  .stage-grid{ grid-template-columns: 1fr 1fr; }
  .feature-grid{ grid-template-columns: 1fr 1fr 1fr 1fr; }
  .testimonial-grid{ grid-template-columns: repeat(3, 1fr); }
  .bonus-grid{ grid-template-columns: 1fr 1fr; }
  .trainer-card{ flex-direction:row; text-align:left; align-items:flex-start; padding: 36px; }
  .trainer-card__name, .trainer-card__title{ }
  .flow-line{ justify-content:flex-start; }
  .modal{ align-items:center; justify-content:center; }
  .modal__panel{ max-width: 460px; border-radius: 24px; transform: translateY(20px) scale(.98); }
  .modal.is-open .modal__panel{ transform: translateY(0) scale(1); }
  .btn--large{ width:auto; padding: 18px 40px; }
  .cta-block{ max-width: 620px; }
  .cta-btn-wrap{ width:auto; display:inline-block; }
}

@media (min-width: 960px){
  .hero__title{ max-width: 900px; margin-left:auto; margin-right:auto; }
  .stage-grid{ grid-template-columns: 1fr 1fr 1fr; }
}

@media (hover:hover) and (pointer:fine){
  .stage-card:hover, .bonus-card:hover, .testimonial-card:hover{
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .stage-card, .bonus-card, .testimonial-card{ transition: box-shadow .2s ease, transform .2s ease; }
}
