/* ==========================================================================
   Tokens
   ========================================================================== */
:root{
  --navy: #0A1E4D;
  --navy-soft: #0A1E4D;
  --green: #0080F8;
  --green-dark: #0058E8;
  --green-darker: #0040C8;
  --green-light: #29C2FF;
  --amber: #F1B61A;
  --amber-dark: #D99F0F;
  --red: #E63946;
  --red-dark: #C4293A;

  --bg: #F5F8FC;
  --bg-alt: #EAF2FC;
  --bg-blue: #EEF3FA;
  --bg-navy-tint: #0A1E4D;
  --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; text-decoration:none; }

.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--whatsapp{
  position: relative;
  overflow: hidden;
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 12px 22px rgba(6,35,26,0.2);
  gap: 10px;
}
.btn--whatsapp::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--whatsapp:hover{ background: #1DA851; transform: translateY(-1px) scale(1.01); box-shadow: 0 16px 28px rgba(6,35,26,0.26); }
.btn--whatsapp:active{ transform: translateY(0) scale(0.99); }
@media (prefers-reduced-motion: reduce){
  .btn--whatsapp::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:flex;
  align-items:center;
  justify-content:center;
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 20px auto 18px;
  text-align:center;
  background: linear-gradient(135deg, #0A1E4D 0%, #0058E8 55%, #29C2FF 100%);
  color: var(--text-invert);
  font-size: clamp(12px, 2.6vw, 14.5px);
  font-weight: 500;
  line-height:1.4;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.trust-pill strong{ font-weight: 800; }

.hero__logo{
  display:block;
  height: 48px;
  width: auto;
  margin: 0 auto 18px;
}

.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 28px;
  max-width: 780px;
}
.hero__title--accent{ color: #0A1E4D; }
.hero__title--underline{ text-decoration: underline; text-decoration-color: var(--text-muted); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.hero__title--small{
  display: block;
  color: var(--text-muted);
  font-size: clamp(18px, 4.4vw, 24px);
  font-weight: 300;
  margin-top: 28px;
}
.hero__title--highlight{
  white-space: nowrap;
  background: linear-gradient(90deg, #0A1E4D 0%, #0058E8 55%, #29C2FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  border-bottom: 3px solid var(--green);
  box-shadow: 0 4px 0 -2px var(--green);
  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__video{
  max-width: 720px;
  margin: 0 auto 22px;
}
.hero__video .video-embed{ border-color: var(--border); }

.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: #0A1E4D; }
.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;
  flex-shrink: 0;
  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__img{
  display:block;
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--bg-soft, #f4f6f8);
  border-radius: 8px;
  margin-bottom: 14px;
}
.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); }
.sticky-cta__price-unit{ font-size: clamp(11px, 2.2vw, 13px); font-weight: 700; color: #5A5A5A; margin-left: 2px; }
.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; }
}

@media (max-width: 479px){
  .sticky-cta{
    gap: 10px;
    padding: 12px 14px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  .sticky-cta__price-row{ gap: 6px; }
  .sticky-cta .btn{
    padding: 14px 18px;
    font-size: clamp(14px, 4vw, 17px);
    white-space: nowrap;
  }
}

/* ==========================================================================
   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__field .iti{ display: block; width: 100%; }
.reg-form__field .iti input{ width: 100%; }
.reg-form__field .iti__selected-country{ padding: 0 8px 0 12px; border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.reg-form__field .iti__selected-country:hover,
.reg-form__field .iti__selected-country:focus{ background: var(--bg-alt); }
.reg-form__field .iti__selected-country-primary{ gap: 6px; }
.reg-form__field .iti__dial-code{ color: var(--text-muted); }
.reg-form__field .iti__search-input{
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}
.reg-form__submit{ margin-top: 6px; }
.reg-form__submit-dots{ display: flex; align-items: center; justify-content: center; gap: 7px; }
.reg-form__dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: regDotBounce 1.2s infinite ease-in-out both;
}
.reg-form__dot:nth-child(1){ animation-delay: -0.24s; }
.reg-form__dot:nth-child(2){ animation-delay: -0.12s; }
.reg-form__dot:nth-child(3){ animation-delay: 0s; }
@keyframes regDotBounce{
  0%, 80%, 100%{ transform: scale(0.6); opacity: 0.5; }
  40%{ transform: scale(1); opacity: 1; }
}
.reg-form__submit[disabled]{ opacity: 0.85; cursor: default; }
.reg-form__privacy{ font-size: 11.5px; color: var(--text-muted); text-align:center; margin-top: 8px; line-height:1.5; }

/* ==========================================================================
   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; }
  .sticky-cta__price-unit{ font-size: 11px; }
}

@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; }
}

/* ==========================================================================
   Thank You page
   ========================================================================== */
.ty-body{ background: var(--card); }

.ty-hero{
  background-color: var(--card);
  background-image:
    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: 27px 27px, 27px 27px;
  min-height: 100vh;
  padding: 48px 0 60px;
}
.ty-hero__inner{ max-width: 620px; margin: 0 auto; padding: 0 20px; text-align: center; }

.ty-icon{ position: relative; width: 100px; height: 100px; margin: 0 auto 24px; }
.ty-icon__ring{ position: absolute; inset: 0; border-radius: 50%; }
.ty-icon__ring--outer{ background: rgba(37,211,102,0.12); }
.ty-icon__ring--outer::before,
.ty-icon__ring--outer::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: tyPulseRing 2.2s ease-out infinite;
}
.ty-icon__ring--outer::after{ animation-delay: 1.1s; }
.ty-icon__ring--inner{
  inset: 14px;
  background: rgba(37,211,102,0.18);
  border: 2px solid rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tyBlink 2.2s ease-in-out infinite;
}
.ty-icon__check{ width: 34px; height: 34px; fill: var(--green-darker); }

@keyframes tyPulseRing{
  0%{ transform: scale(0.75); opacity: 0.7; }
  100%{ transform: scale(1.7); opacity: 0; }
}
@keyframes tyBlink{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce){
  .ty-icon__ring--outer::before,
  .ty-icon__ring--outer::after,
  .ty-icon__ring--inner{ animation: none; }
}

.ty-title{
  font-family: 'Outfit', var(--font);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}
.ty-subtitle{
  font-size: clamp(15px, 3.6vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 26px;
}
.ty-subtitle strong{ color: var(--text); }

.ty-steps{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.ty-steps__pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
}
.ty-steps__pill--done{ color: var(--green-darker); background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); }
.ty-steps__pill--active{ color: #fff; background: var(--navy); border-color: var(--navy); }
.ty-steps__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  font-size: 10px;
}
.ty-steps__pill--active .ty-steps__num{ background: rgba(255,255,255,0.25); }
.ty-steps__check{ color: var(--green-darker); }
.ty-steps__arrow{ color: var(--text-muted); font-size: 13px; }

.ty-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 4px solid #25D366;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 22px;
  margin-bottom: 28px;
}
.ty-card__badge{
  display: inline-block;
  background: rgba(230,57,70,0.1);
  color: var(--red);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.ty-card__title{
  font-family: 'Outfit', var(--font);
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.ty-card__desc{
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}
.ty-card__desc strong{ color: var(--text); }
.ty-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ty-card__btn-icon{ width: 22px; height: 22px; fill: #FFFFFF; flex-shrink: 0; }
.ty-card__note{
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.ty-details{ margin-bottom: 28px; }
.ty-details__title{
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--green-darker);
  margin-bottom: 14px;
}
.ty-details__grid{ grid-template-columns: 1fr 1fr; }

.ty-tips{ text-align: left; margin-bottom: 36px; }
.ty-tips__title{
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  text-align: center;
}
.ty-tips__list{ background: var(--bg-alt); border-radius: var(--radius-lg); padding: 20px 22px; }

.ty-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.ty-footer__author{ display: flex; align-items: center; gap: 10px; }
.ty-footer__avatar{ width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: center top; }
.ty-footer__name{ font-size: 14px; font-weight: 800; color: var(--text); }
.ty-footer__role{ font-size: 12px; color: var(--text-muted); }
.ty-footer__back{ font-size: 13.5px; font-weight: 700; color: var(--green-darker); }

@media (min-width: 480px){
  .ty-footer{ flex-direction: row; justify-content: space-between; }
}

/* ==========================================================================
   TotalCRM: Countdown timer
   ========================================================================== */
.countdown{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 18px;
}
.countdown__label{
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--red);
}
.countdown__units{ display:flex; align-items:center; gap: 6px; }
.countdown__unit{
  background: var(--text);
  color: #fff;
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 17px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-width: 38px;
  text-align: center;
}
.countdown__sep{ font-weight:800; color: var(--text-muted); }
.countdown--strip{ margin-bottom:0; }
.sticky-cta .countdown__unit{ background: var(--red); font-size:14px; padding:4px 6px; min-width:30px; }
.sticky-cta .countdown{ margin:0; gap:6px; }
.sticky-cta .countdown__label{ display:none; }

@media (min-width: 480px){
  .sticky-cta .countdown__label{ display:inline; }
}

/* ==========================================================================
   TotalCRM: GHL badge
   ========================================================================== */
.ghl-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  flex-wrap: wrap;
  text-align:center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  margin: 14px auto 0;
}
.ghl-badge__pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background: var(--bg-alt);
  border: 1px solid #CFE0F7;
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
}

/* ==========================================================================
   TotalCRM: Feature grid (product capabilities)
   ========================================================================== */
.capability-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.capability-card{
  display:flex;
  align-items:flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.capability-card__icon{
  flex-shrink:0;
  width: 40px; height:40px;
  border-radius: 12px;
  background: var(--bg-alt);
  display:flex; align-items:center; justify-content:center;
  font-size: 19px;
}
.capability-card__title{ font-size: 15.5px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.capability-card__desc{ font-size: 13.5px; color: var(--text-muted); line-height:1.5; }

/* ==========================================================================
   TotalCRM: Video embed
   ========================================================================== */
.video-embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.14);
}
.video-embed iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

/* ==========================================================================
   TotalCRM: Pricing card
   ========================================================================== */
.pricing-card{
  max-width: 460px;
  margin: 0 auto;
  background: var(--card);
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align:center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing-card__badge{
  position:absolute;
  top:-14px; left:50%;
  transform: translateX(-50%);
  background: var(--red);
  color:#fff;
  font-size: 12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.4px;
  padding: 6px 16px;
  border-radius: 999px;
  white-space:nowrap;
  box-shadow: var(--shadow-sm);
}
.pricing-card__was{ font-size: 15px; color: var(--text-muted); font-weight:700; margin-top:10px; }
.pricing-card__was span{ color: var(--red); text-decoration: line-through; }
.pricing-card__now{ font-size: clamp(38px, 10vw, 52px); font-weight:800; color: var(--green-darker); margin-top: 4px; line-height:1; }
.pricing-card__now sup{ font-size: 22px; top:-1.2em; }
.pricing-card__tag{ font-size: 13px; font-weight:800; color: var(--text-muted); text-transform:uppercase; letter-spacing:.4px; margin-top: 6px; }
.pricing-card__list{ text-align:left; margin: 20px 0; }
.pricing-card__note{ font-size: 12px; color: var(--text-muted); margin-top: 14px; }

/* ==========================================================================
   Tablet / Desktop — TotalCRM additions
   ========================================================================== */
@media (min-width: 640px){
  .capability-grid{ grid-template-columns: 1fr 1fr; }
}
@media (hover:hover) and (pointer:fine){
  .capability-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .capability-card{ transition: box-shadow .2s ease, transform .2s ease; }
}
