:root {
     --navy: #071a3d;
     --navy-2: #0d2b5f;
     --orange: #ff6a00;
     --orange-deep: #ff8a22;
     --gold: #f6c85f;
     --ink: #13213b;
     --muted: #667085;
     --line: #e6ebf3;
     --soft: #f6f8fc;
     --white: #fff;
     --shadow: 0 24px 60px rgba(7, 26, 61, .12);
     --radius: 22px;
}
 * {
     box-sizing: border-box;
}
 html {
     scroll-behavior: smooth;
}
 body {
     margin: 0;
     font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     color: var(--ink);
     background: var(--white);
     padding-bottom: 74px;
}
 a {
     color: inherit;
     text-decoration: none;
}
 img {
     max-width: 100%;
     display: block;
}
 .container {
     width: min(1160px, calc(100% - 32px));
     margin: 0 auto;
}
/* Header */
 .site-header {
     position: sticky;
     top: 0;
     z-index: 50;
     background: rgba(255,255,255,.94);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--line);
}
 .nav {
     min-height: 66px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 14px;
}
 .brand {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-weight: 900;
     letter-spacing: .11em;
     color: var(--navy);
     font-size: 13px;
}
 .brand-logo {
     width: 30px;
     height: 30px;
     object-fit: contain;
}
 .nav-links {
     display: none;
}
 .mobile-top-cta {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 10px 13px;
     border-radius: 999px;
     background: var(--navy);
     color: #fff;
     font-size: 12px;
     font-weight: 900;
}
/* Typography */
 .section {
     padding: 68px 0;
}
 .section-soft {
     background: var(--soft);
}
 .section-heading {
     max-width: 820px;
     margin: 0 auto 34px;
     text-align: center;
}
 .section-heading.left {
     margin-left: 0;
     text-align: left;
}
 .section-heading.compact {
     margin-bottom: 26px;
}
 .section-kicker {
     display: inline-block;
     margin-bottom: 10px;
     color: var(--orange-deep);
     text-transform: uppercase;
     letter-spacing: .12em;
     font-size: 11px;
     font-weight: 900;
}
 .section-kicker.light {
     color: #ffbd55;
}
 .section-heading h2 {
     margin: 0;
     color: var(--navy);
     font-size: clamp(31px, 7.2vw, 52px);
     line-height: 1.06;
     letter-spacing: -.045em;
}
 .section-heading p {
     margin: 14px 0 0;
     color: var(--muted);
     font-size: 15px;
     line-height: 1.7;
}
/* Hero */
 .hero {
     position: relative;
     overflow: hidden;
     background: linear-gradient(145deg, #fff 0%, #f7faff 53%, #edf3fb 100%);
}
 .hero::after {
     content: "";
     position: absolute;
     width: 260px;
     height: 260px;
     right: -90px;
     top: -70px;
     background: rgba(249,164,0,.11);
     border-radius: 50%;
     filter: blur(8px);
}
 .hero-bg {
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at 82% 18%, rgba(249,164,0,.15), transparent 24%), linear-gradient(135deg, transparent 0 65%, rgba(7,26,61,.04) 65% 66%, transparent 66%);
}
 .hero-grid {
     position: relative;
     z-index: 2;
     display: grid;
     gap: 34px;
     padding: 44px 0 58px;
}
 .hero-copy {
     position: relative;
     z-index: 3;
}
 .hero-eyebrow {
     display: inline-flex;
     max-width: 100%;
     padding: 8px 12px;
     border-radius: 999px;
     background: var(--navy);
     color: #fff;
     font-size: 10px;
     line-height: 1.3;
     letter-spacing: .08em;
}
 .hero h1 {
     margin: 18px 0 0;
     font-size: clamp(38px, 13vw, 36px);
     line-height: .86;
     letter-spacing: -.065em;
     color: var(--navy);
     text-transform: uppercase;
}
 .hero h1 em {
     display: block;
     font-style: normal;
     color: var(--orange);
}
 .hero-lead {
     margin: 22px 0 0;
     font-size: clamp(10px, 6.4vw, 20px);
     line-height: 1.05;
     font-weight: 800;
     letter-spacing: -.035em;
     color: var(--navy);
}
 .hero-lead strong {
     color: var(--orange-deep);
}
 .hero-description {
     margin: 18px 0 0;
     color: #45536c;
     font-size: 15px;
     line-height: 1.75;
     max-width: 680px;
}
 .hero-meta {
     display: grid;
     gap: 10px;
     margin: 22px 0 0;
}
 .hero-meta span {
     display: flex;
     align-items: flex-start;
     gap: 9px;
     color: var(--navy);
     font-size: 13px;
     font-weight: 800;
}
 .hero-meta span::before {
     content: "";
     width: 8px;
     height: 8px;
     margin-top: 5px;
     flex: 0 0 8px;
     border-radius: 50%;
     background: var(--orange);
}
 .hero-actions {
     display: grid;
     gap: 10px;
     margin-top: 24px;
}
 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     min-height: 54px;
     padding: 0 18px;
     border-radius: 14px;
     border: 0;
     font-size: 14px;
     font-weight: 900;
     text-align: center;
     cursor: pointer;
     transition: transform .2s ease, box-shadow .2s ease;
}
 .btn:hover {
     transform: translateY(-2px);
}
 .btn-primary {
     color: #fff;
     background: linear-gradient(135deg, var(--orange), var(--orange-deep));
     box-shadow: 0 16px 28px rgba(232,137,0,.22);
}
 .btn-secondary {
     color: var(--navy);
     background: #fff;
     border: 1px solid #d9e0eb;
}
 .btn-ghost {
     color: #fff;
     background: rgba(255,255,255,.08);
     border: 1px solid rgba(255,255,255,.25);
}
 .btn-large {
     min-height: 58px;
}
 .audience {
     margin: 16px 0 0;
     color: #46546d;
     font-size: 13px;
     line-height: 1.5;
}
 .audience b {
     color: var(--orange-deep);
}
 .hero-visual {
     min-height: 350px;
     position: relative;
     display: grid;
     align-items: end;
}
 .hero-image-wrap {
     min-height: 340px;
     display: grid;
     place-items: center;
     overflow: hidden;
}
 .hero-image {
     width: min(100%, 540px);
     filter: drop-shadow(0 24px 30px rgba(7,26,61,.15));
     object-fit: contain;
}
 .hero-floating {
     position: relative;
     width: min(88%, 340px);
     margin: -24px auto 0;
     padding: 16px 18px;
     border-radius: 18px;
     background: var(--navy);
     color: #fff;
     box-shadow: var(--shadow);
}
 .floating-label {
     display: block;
     color: #ffbd55;
     font-size: 9px;
     letter-spacing: .12em;
     font-weight: 900;
}
 .hero-floating strong {
     display: block;
     margin-top: 5px;
     font-size: 18px;
}
 .hero-floating small {
     color: rgba(255,255,255,.76);
}
/* Problem */
 .section-problem {
     background: #fff;
}
 .problem-list {
     display: grid;
     gap: 0;
     border-top: 1px solid var(--line);
}
 .problem-item {
     display: grid;
     grid-template-columns: 46px 1fr;
     gap: 14px;
     padding: 20px 0;
     border-bottom: 1px solid var(--line);
}
 .problem-number {
     width: 38px;
     height: 38px;
     display: grid;
     place-items: center;
     border-radius: 12px;
     background: #fff5e7;
     color: var(--orange-deep);
     font-size: 11px;
     font-weight: 900;
}
 .problem-item h3 {
     margin: 0;
     font-size: 17px;
     line-height: 1.32;
     color: var(--navy);
}
 .problem-item p {
     margin: 6px 0 0;
     color: var(--muted);
     font-size: 13px;
     line-height: 1.55;
}
/* Transformation */
 .transformation-grid {
     display: grid;
     gap: 14px;
}
 .transform-card {
     padding: 22px;
     background: #fff;
     border: 1px solid var(--line);
     border-radius: 18px;
}
 .transform-top {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
}
 .transform-top span {
     width: 36px;
     height: 36px;
     display: grid;
     place-items: center;
     border-radius: 50%;
     background: var(--navy);
     color: #fff;
     font-size: 11px;
     font-weight: 900;
}
 .transform-top i {
     font-style: normal;
     color: var(--orange-deep);
     font-size: 22px;
}
 .transform-card h3 {
     margin: 0;
     font-size: 18px;
     line-height: 1.25;
     color: var(--navy);
}
 .transform-card p {
     margin: 8px 0 0;
     color: var(--muted);
     font-size: 13px;
     line-height: 1.6;
}
/* Program mechanism */
 .program-section {
     background: #fff;
}
 .timeline {
     max-width: 820px;
     margin: 0 auto;
}
 .timeline-step {
     display: grid;
     grid-template-columns: 48px 1fr;
     gap: 14px;
     align-items: start;
}
 .timeline-index {
     width: 42px;
     height: 42px;
     display: grid;
     place-items: center;
     border-radius: 50%;
     background: var(--orange);
     color: #fff;
     font-size: 12px;
     font-weight: 900;
     box-shadow: 0 10px 18px rgba(232,137,0,.22);
}
 .timeline-content {
     padding-top: 1px;
}
 .timeline-content span {
     color: var(--orange-deep);
     font-size: 10px;
     letter-spacing: .12em;
     font-weight: 900;
}
 .timeline-content h3 {
     margin: 5px 0 0;
     font-size: 21px;
     color: var(--navy);
}
 .timeline-content p {
     margin: 7px 0 0;
     color: var(--muted);
     font-size: 13px;
     line-height: 1.65;
}
 .timeline-line {
     width: 2px;
     height: 34px;
     margin: 0 0 0 20px;
     background: #e8edf5;
}
 .outcome-box {
     margin-top: 34px;
     padding: 22px;
     border-radius: 20px;
     background: linear-gradient(135deg, var(--navy), var(--navy-2));
     color: #fff;
     text-align: center;
     box-shadow: var(--shadow);
}
 .outcome-box span {
     color: #ffbd55;
     font-size: 10px;
     font-weight: 900;
     letter-spacing: .15em;
}
 .outcome-box strong {
     display: block;
     margin-top: 8px;
     font-size: 25px;
     letter-spacing: -.03em;
}
 .outcome-box p {
     margin: 8px 0 0;
     color: rgba(255,255,255,.76);
     font-size: 13px;
     line-height: 1.6;
}
/* Fit */
 .fit-grid {
     display: grid;
     gap: 28px;
}
 .fit-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     gap: 11px;
}
 .fit-list li {
     position: relative;
     padding-left: 28px;
     color: #45536c;
     font-size: 14px;
     line-height: 1.55;
}
 .fit-list li::before {
     content: "✓";
     position: absolute;
     left: 0;
     top: 1px;
     width: 20px;
     height: 20px;
     display: grid;
     place-items: center;
     border-radius: 50%;
     background: #eaf8ef;
     color: #159447;
     font-size: 11px;
     font-weight: 900;
}
 .not-fit-box {
     padding: 24px;
     border-radius: 20px;
     background: #fff;
     border: 1px solid #f1dfc4;
}
 .not-fit-kicker {
     color: var(--orange-deep);
     font-size: 10px;
     letter-spacing: .12em;
     font-weight: 900;
}
 .not-fit-box h3 {
     margin: 9px 0 13px;
     color: var(--navy);
     font-size: 20px;
}
 .not-fit-box ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     gap: 10px;
}
 .not-fit-box li {
     position: relative;
     padding-left: 27px;
     color: var(--muted);
     font-size: 13px;
     line-height: 1.5;
}
 .not-fit-box li::before {
     content: "×";
     position: absolute;
     left: 0;
     top: 0;
     color: #c96b00;
     font-weight: 900;
     font-size: 18px;
}

/* Social Proof */
.proof-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(249,164,0,.08), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.proof-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -140px;
  top: 70px;
  border-radius: 50%;
  border: 1px solid rgba(7,26,61,.07);
  box-shadow: 0 0 0 34px rgba(7,26,61,.018), 0 0 0 68px rgba(7,26,61,.012);
  pointer-events: none;
}
.proof-section .container { position: relative; z-index: 1; }
.proof-section .section-heading { max-width: 850px; }
.proof-section .section-heading p { max-width: 720px; margin-inline: auto; }

.proof-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 auto 28px;
  max-width: 1080px;
}
.proof-highlight {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e2e7ef;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 26px rgba(7,26,61,.06);
}
.proof-highlight strong {
  display: block;
  color: var(--orange-deep);
  font-size: clamp(28px, 8vw, 44px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
  white-space: nowrap;
}
.proof-highlight span {
  display: block;
  margin-top: 8px;
  color: #5e687b;
  font-size: 12px;
  line-height: 1.55;
}

.proof-video-block {
  max-width: 1120px;
  margin: 0 auto 34px;
}
.proof-video-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.proof-video-heading span {
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.proof-video-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.proof-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}
.proof-video-card {
  min-width: 0;
  padding: 8px;
  border: 1px solid #dfe5ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7,26,61,.08);
  overflow: hidden;
}
.proof-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #071a3d, #0d2b5f);
}
.proof-video-landscape { aspect-ratio: 16 / 9; }
.proof-video-portrait { aspect-ratio: 9 / 16; }
.proof-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.proof-video-card-portrait {
  width: min(100%, 350px);
  justify-self: center;
}
.proof-video-placeholder-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 26px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 20%, rgba(249,164,0,.18), transparent 30%),
    linear-gradient(145deg, #071a3d, #0d2b5f);
}
.proof-video-placeholder-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 12px 26px rgba(249,164,0,.24);
}
.proof-video-placeholder-content strong {
  font-size: 15px;
  line-height: 1.3;
}
.proof-video-placeholder-content small {
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1.5;
}

.proof-gallery {
  columns: 1;
  column-gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}
.proof-shot {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  padding: 8px;
  break-inside: avoid;
  page-break-inside: avoid;
  border: 1px solid #dfe5ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7,26,61,.08);
  overflow: hidden;
}
.proof-shot img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #f2f4f7;
}
.proof-shot::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(7,26,61,.025);
  pointer-events: none;
}
.proof-caption {
  max-width: 760px;
  margin: 22px auto 0;
  color: #7b8494;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

@media (min-width: 620px) {
  .proof-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proof-video-heading { flex-direction: row; align-items: end; justify-content: space-between; gap: 20px; }
  .proof-video-heading p { max-width: 560px; text-align: right; }
  .proof-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .proof-video-card { padding: 9px; border-radius: 20px; }
  .proof-video-frame { border-radius: 13px; }
  .proof-video-card-portrait { grid-column: 1 / -1; width: min(52%, 350px); }
  .proof-gallery { columns: 2; column-gap: 16px; }
  .proof-shot { margin-bottom: 16px; padding: 9px; border-radius: 20px; }
  .proof-shot img, .proof-shot::after { border-radius: 13px; }
}

@media (min-width: 980px) {
  .proof-highlights { gap: 16px; margin-bottom: 34px; }
  .proof-highlight { padding: 22px 24px; }
  .proof-video-block { margin-bottom: 42px; }
  .proof-video-grid { gap: 18px; }
  .proof-video-card {
    padding: 10px;
    border-radius: 22px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  .proof-video-card:hover {
    transform: translateY(-3px);
    border-color: #f0cf91;
    box-shadow: 0 18px 42px rgba(7,26,61,.11);
  }
  .proof-video-frame { border-radius: 14px; }
  .proof-video-card-portrait { width: 330px; }
  .proof-gallery { columns: 3; column-gap: 18px; }
  .proof-shot {
    margin-bottom: 18px;
    padding: 10px;
    border-radius: 22px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  .proof-shot:hover {
    transform: translateY(-3px);
    border-color: #f0cf91;
    box-shadow: 0 18px 42px rgba(7,26,61,.11);
  }
  .proof-shot img, .proof-shot::after { border-radius: 14px; }
}
/* Event */
 .event-section {
     background: #fff;
     padding-top: 28px;
}
 .event-banner {
     display: grid;
     gap: 28px;
     padding: 26px;
     border-radius: 26px;
     background: linear-gradient(135deg, var(--navy), #091533 60%, #132e61);
     color: #fff;
     box-shadow: var(--shadow);
}
 .event-copy h2 {
     margin: 0;
     font-size: clamp(28px, 7vw, 46px);
     line-height: 1.05;
     letter-spacing: -.05em;
}
 .event-copy p {
     margin: 12px 0 0;
     color: rgba(255,255,255,.75);
     font-size: 14px;
     line-height: 1.6;
}
 .event-details {
     display: grid;
     gap: 10px;
}
 .event-details > div {
     display: grid;
     grid-template-columns: 36px 1fr;
     gap: 10px;
     align-items: center;
     padding: 13px 0;
     border-top: 1px solid rgba(255,255,255,.12);
}
 .event-details span {
     width: 30px;
     height: 30px;
     display: grid;
     place-items: center;
     border-radius: 50%;
     background: rgba(255,255,255,.08);
}
 .event-details small {
     display: block;
     color: #ffbd55;
     font-size: 9px;
     font-weight: 900;
     letter-spacing: .1em;
}
 .event-details b {
     display: block;
     margin-top: 3px;
     font-size: 13px;
     line-height: 1.45;
}
/* Coach */
 .coach-grid {
     display: grid;
     gap: 14px;
}
 .coach-card {
     display: grid;
     grid-template-columns: 86px 1fr;
     gap: 14px;
     align-items: center;
     padding: 14px;
     border: 1px solid var(--line);
     border-radius: 18px;
     background: #fff;
}
 .coach-card.coach-featured {
     border-color: #f1d49a;
     background: linear-gradient(135deg, #fff, #fffaf0);
}
 .coach-photo {
     width: 86px;
     height: 98px;
     border-radius: 15px;
     background-position: center top;
     background-size: cover;
     background-repeat: no-repeat;
     background-color: #eef2f8;
}
/* Mapping follows the existing coach asset set used by the uploaded landing page. */
 .coach-henri {
     background-image: url('assets/coaches/8.png');
}
 .coach-teddy {
     background-image: url('assets/coaches/3.png');
}
 .coach-erry {
     background-image: url('assets/coaches/1.png');
}
 .coach-alfia {
     background-image: url('assets/coaches/4.png');
}
 .coach-ridwan {
     background-image: url('assets/coaches/7.png');
}
 .coach-copy h3 {
     margin: 0;
     color: var(--navy);
     font-size: 17px;
     line-height: 1.25;
}
 .coach-role {
     margin: 4px 0 0;
     color: var(--orange-deep);
     font-size: 11px;
     line-height: 1.4;
     font-weight: 900;
}
 .coach-copy p:last-child {
     margin: 7px 0 0;
     color: var(--muted);
     font-size: 11px;
     line-height: 1.45;
}
 .lead-coach {
     display: inline-block;
     margin-bottom: 5px;
     padding: 4px 7px;
     border-radius: 999px;
     background: var(--orange);
     color: #fff;
     font-size: 8px;
     font-weight: 900;
     letter-spacing: .08em;
}
/* Final CTA */
 .final-cta {
     padding: 72px 0;
     background: linear-gradient(135deg, var(--navy), #06122d 70%);
     color: #fff;
}
 .final-grid {
     display: grid;
     gap: 28px;
     align-items: center;
}
 .final-cta h2 {
     margin: 0;
     font-size: clamp(37px, 9vw, 62px);
     line-height: .98;
     letter-spacing: -.06em;
}
 .final-cta > .container > div > p {
     margin: 16px 0 0;
     max-width: 680px;
     color: rgba(255,255,255,.76);
     font-size: 15px;
     line-height: 1.7;
}
 .final-panel {
     padding: 18px;
     border-radius: 20px;
     background: rgba(255,255,255,.08);
     border: 1px solid rgba(255,255,255,.12);
}
 .final-panel .btn + .btn {
     margin-top: 8px;
}
 .limited {
     margin: 14px 0 0;
     text-align: center;
     color: #ffbd55;
     font-size: 9px;
     font-weight: 900;
     letter-spacing: .13em;
}
 .contact-list {
     display: grid;
     gap: 5px;
     margin-top: 12px;
     text-align: center;
     color: rgba(255,255,255,.72);
     font-size: 11px;
     font-weight: 700;
}
/* Footer */
 .site-footer {
     padding: 30px 0 90px;
     background: #fff;
     border-top: 1px solid var(--line);
}
 .footer-grid {
     display: grid;
     gap: 22px;
     text-align: center;
     align-items: center;
}
 .footer-grid div {
     display: grid;
     justify-items: center;
     gap: 5px;
}
 .footer-grid b {
     color: var(--navy);
     font-size: 11px;
     letter-spacing: .12em;
}
 .footer-grid span {
     color: var(--muted);
     font-size: 10px;
}
/* Mobile sticky CTA */
 .mobile-sticky-cta {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 100;
     padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
     background: rgba(255,255,255,.96);
     border-top: 1px solid #dfe5ef;
     backdrop-filter: blur(12px);
}
 .mobile-sticky-cta a {
     display: flex;
     min-height: 50px;
     align-items: center;
     justify-content: center;
     border-radius: 14px;
     background: linear-gradient(135deg, #39BA4B, #1DAA61);
     color: #fff;
     font-size: 13px;
     font-weight: 900;
     box-shadow: 0 12px 24px rgba(232,137,0,.22);
}
 @media (min-width: 760px) {
     body {
         padding-bottom: 0;
    }
     .container {
         width: min(1160px, calc(100% - 48px));
    }
     .mobile-top-cta {
         display: none;
    }
     .nav {
         min-height: 76px;
    }
     .brand {
         font-size: 14px;
    }
     .brand-logo {
         width: 34px;
         height: 34px;
    }
     .nav-links {
         display: flex;
         align-items: center;
         gap: 18px;
         font-size: 11px;
         font-weight: 800;
         color: #31405f;
    }
     .nav-links a:not(.nav-cta):hover {
         color: var(--orange-deep);
    }
     .nav-cta {
         padding: 11px 15px;
         border-radius: 999px;
         background: var(--navy);
         color: #fff;
    }
     .hero-grid {
         grid-template-columns: 1.06fr .94fr;
         gap: 46px;
         padding: 66px 0 76px;
         align-items: center;
    }
     .hero-actions {
         display: flex;
         flex-wrap: wrap;
    }
     .hero-actions .btn {
         width: auto;
    }
     .hero-visual {
         min-height: 500px;
    }
     .hero-image-wrap {
         min-height: 500px;
    }
     .hero-floating {
         margin: -40px 0 0 auto;
         width: 330px;
    }
     .problem-list {
         border-top: 0;
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 0 28px;
    }
     .problem-item {
         padding: 22px 0;
    }
     .transformation-grid {
         grid-template-columns: repeat(2, 1fr);
    }
     .transform-card:last-child {
         grid-column: span 2;
    }
     .fit-grid {
         grid-template-columns: 1.1fr .9fr;
         align-items: start;
    }
     .proof-grid {
         grid-template-columns: repeat(3, 1fr);
    }
     .event-banner {
         grid-template-columns: 1.1fr .9fr;
         padding: 42px;
    }
     .coach-grid {
         grid-template-columns: repeat(2, 1fr);
    }
     .final-grid {
         grid-template-columns: 1.1fr .9fr;
    }
     .footer-grid {
         grid-template-columns: repeat(3, 1fr);
    }
     .site-footer {
         padding-bottom: 36px;
    }
     .mobile-sticky-cta {
         display: none;
    }
}
 @media (min-width: 1060px) {
     .nav-links {
         gap: 22px;
         font-size: 12px;
    }
     .hero h1 {
         font-size: 72px;
    }
     .hero-lead {
         font-size: 30px;
    }
     .transformation-grid {
         grid-template-columns: repeat(5, 1fr);
    }
     .transform-card:last-child {
         grid-column: auto;
    }
     .coach-grid {
         grid-template-columns: repeat(5, 1fr);
    }
     .coach-card {
         grid-template-columns: 1fr;
         text-align: center;
         padding: 18px;
    }
     .coach-photo {
         width: 100%;
         height: 220px;
         border-radius: 16px;
         background-size: cover;
    }
     .coach-copy {
         padding: 0 2px;
    }
     .lead-coach {
         margin-top: 4px;
    }
}


/* Investment */
.investment-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(249,164,0,.10), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(7,26,61,.06), transparent 30%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}
.investment-section::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -110px;
  top: 80px;
  border: 1px solid rgba(249,164,0,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(249,164,0,.035), 0 0 0 64px rgba(249,164,0,.02);
}
.investment-section .container { position: relative; z-index: 1; }
.investment-section .section-heading { max-width: 760px; }
.investment-section .section-heading h2 { max-width: 720px; margin-inline: auto; }
.investment-section .section-heading p { max-width: 650px; margin-inline: auto; }
.investment-grid {
  display: grid;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: stretch;
}
.investment-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid #dde4ee;
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 32px rgba(7,26,61,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, opacity .25s ease;
}
.investment-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(7,26,61,.035);
}
.investment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.investment-card.investment-active {
  padding: 25px;
  border: 2px solid var(--orange);
  background:
    radial-gradient(circle at 100% 0%, rgba(249,164,0,.20), transparent 32%),
    linear-gradient(145deg, #fff9ef 0%, #fff 58%, #fff 100%);
  box-shadow: 0 24px 54px rgba(232,137,0,.18), 0 8px 20px rgba(7,26,61,.06);
  transform: translateY(-4px);
}
.investment-ribbon {
  position: absolute;
  top: 16px;
  right: -36px;
  padding: 6px 42px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  transform: rotate(38deg);
  box-shadow: 0 8px 18px rgba(232,137,0,.20);
}
.investment-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}
.muted-badge { background: #eff2f6; color: #7b8494; }
.active-badge { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color: #fff; box-shadow: 0 8px 18px rgba(232,137,0,.20); }
.investment-status-dot { width: 9px; height: 9px; border-radius: 50%; background: #d4dae4; }
.investment-label { margin-top: 20px; color: #8a94a6; font-size: 10px; letter-spacing: .13em; font-weight: 900; }
.investment-price { margin-top: 7px; color: var(--navy); font-size: clamp(37px, 10vw, 58px); line-height: .95; letter-spacing: -.065em; font-weight: 900; }
.investment-active .investment-price { color: var(--orange-deep); text-shadow: 0 5px 16px rgba(232,137,0,.10); }
.investment-price-sub { margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.investment-divider { height: 1px; margin: 17px 0 14px; background: #e8edf3; }
.investment-card p { margin: 0; color: #667085; font-size: 13px; line-height: 1.65; }
.investment-savings { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 17px; }
.investment-savings span { padding: 5px 8px; border-radius: 7px; background: #fff0dc; color: #9f5900; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.investment-savings strong { color: #9f5900; font-size: 15px; }
.investment-compare { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 9px; color: #8b94a3; font-size: 11px; }
.investment-compare b { text-decoration: line-through; font-size: 12px; color: #8a92a1; }
.investment-live { display: inline-flex; align-items: center; gap: 5px; color: #18854b; font-size: 9px; font-weight: 900; letter-spacing: .09em; }
.investment-live i { width: 7px; height: 7px; border-radius: 50%; background: #24b765; box-shadow: 0 0 0 4px rgba(36,183,101,.10); }
.investment-cta-wrap { margin-top: 21px; }
.investment-cta { width: 100%; min-height: 56px; font-size: 13px; }
.investment-cta span { font-size: 18px; line-height: 1; }
.btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 14px;
  background: #edf0f4;
  color: #9aa2af;
  border: 1px solid #e1e5eb;
  font-weight: 900;
  cursor: not-allowed;
  box-shadow: none;
}
.btn-disabled:hover { transform: none; box-shadow: none; }
.investment-note {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 20px auto 0;
  max-width: 720px;
  color: #707b8d;
  text-align: center;
  font-size: 11px;
  line-height: 1.55;
}
.investment-note::before { content: "●"; color: var(--orange); font-size: 8px; padding-top: 2px; }

@media (min-width: 760px) {
  .investment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .investment-card { padding: 28px; }
  .investment-card.investment-active { padding: 31px; transform: translateY(-8px); }
  .investment-normal { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .investment-card:hover:not(.investment-active) { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(7,26,61,.09); }
  .investment-card.investment-active:hover { transform: translateY(-11px); box-shadow: 0 28px 62px rgba(232,137,0,.20), 0 8px 20px rgba(7,26,61,.06); }
}

@media (min-width: 1060px) {
  .investment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .investment-normal { grid-column: auto; width: auto; justify-self: stretch; }
  .investment-card { padding: 26px; }
  .investment-card.investment-active { padding: 29px; }
  .investment-price { font-size: clamp(38px, 4vw, 52px); }
}

