:root{
  --text:#202124;
  --muted:#5f6368;
  --blue:#1a73e8;
  --teal:#14b8a6;
  --yellow:#fbbc04;
  --border:#dadce0;
  --soft:#f8fafd;
  --white:#fff;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:var(--white);
  font-family:Inter,Arial,sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit}
img{max-width:100%}
.container{
  width:min(var(--container),calc(100% - 40px));
  margin:0 auto;
}
.nowrap{white-space:nowrap}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  border-bottom:1px solid var(--border);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
}
.header-inner{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:9px;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  letter-spacing:-.02em;
}
.brand-mark{
  width:27px;
  height:27px;
  border:2px solid var(--blue);
  border-radius:6px;
  display:grid;
  place-items:center;
  color:var(--blue);
  font-size:12px;
}
.brand-dot{color:var(--teal)}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:28px;
}
.desktop-nav a{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  text-decoration:none;
}
.desktop-nav a:hover{color:var(--text)}
.header-cta{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  padding:0 15px;
  border-radius:5px;
  background:var(--blue);
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
}

.hero{
  padding:86px 0 82px;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(420px,.96fr);
  gap:76px;
  align-items:center;
}
.eyebrow,.kicker{
  margin-bottom:16px;
  color:var(--muted);
  font-size:12px;
  line-height:1.4;
  font-weight:700;
  letter-spacing:.09em;
}
.hero h1{
  max-width:700px;
  margin:0;
  font-size:58px;
  line-height:1.06;
  letter-spacing:-.04em;
  font-weight:600;
}
.hero-accent{display:block;color:#3c4043}
.hero-lead{
  max-width:690px;
  margin:26px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.76;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}
.button{
  min-height:47px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border-radius:5px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}
.button-primary{background:var(--blue);color:#fff}
.button-secondary{
  border:1px solid var(--border);
  background:#fff;
  color:var(--blue);
}
.hero-audience{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  margin-top:24px;
  color:var(--muted);
  font-size:13px;
}
.hero-audience span::before{
  content:"";
  width:6px;
  height:6px;
  margin-right:8px;
  display:inline-block;
  border-radius:50%;
  background:var(--teal);
  vertical-align:middle;
}

.hero-board{
  position:relative;
  min-height:430px;
  padding:40px 34px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:8px;
  background:#fff;
}
.board-grid{
  position:absolute;
  inset:0;
  opacity:.8;
  background-image:
    linear-gradient(#edf0f2 1px,transparent 1px),
    linear-gradient(90deg,#edf0f2 1px,transparent 1px);
  background-size:48px 48px;
}
.board-row{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:46px 1fr;
  gap:22px;
  align-items:center;
}
.board-row+.board-row{margin-top:26px}
.board-number{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#fff;
  font-size:12px;
  font-weight:800;
}
.blue{background:var(--blue)}
.teal{background:var(--teal)}
.yellow{background:var(--yellow);color:#202124}
.board-card{
  padding:19px 20px;
  border:1px solid var(--border);
  border-radius:7px;
  background:#fff;
}
.board-card small{
  display:block;
  margin-bottom:5px;
  color:var(--muted);
  font-size:10px;
  letter-spacing:.07em;
}
.board-card strong{
  display:block;
  font-size:18px;
  font-weight:600;
}
.board-card p{
  margin:7px 0 0;
  color:var(--muted);
  font-size:13px;
}

.anchor-bar{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:#fff;
}
.anchor-inner{
  min-height:58px;
  display:flex;
  align-items:center;
  gap:34px;
  overflow-x:auto;
}
.anchor-inner a{
  white-space:nowrap;
  color:var(--muted);
  font-size:12px;
  font-weight:600;
  text-decoration:none;
}

.section{padding:82px 0}
.section-soft{background:var(--soft)}
.section-heading{max-width:820px;margin-bottom:42px}
.section-heading.narrow{max-width:760px}
.section-heading h2,
.audience-grid h2,
.mentor-copy h2,
.final-inner h2{
  margin:0;
  font-size:40px;
  line-height:1.18;
  letter-spacing:-.03em;
  font-weight:600;
}
.section-heading p,
.audience-grid>div>p,
.mentor-copy>p,
.final-inner p{
  margin:18px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.76;
}

.reason-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.reason-card{
  padding:26px;
  border:1px solid var(--border);
  border-radius:7px;
  background:#fff;
}
.reason-card span,
.outcome-grid article>span{
  color:var(--blue);
  font-size:12px;
  font-weight:800;
}
.reason-card h3,
.decision-grid h3,
.outcome-grid h3{
  margin:22px 0 10px;
  font-size:20px;
  line-height:1.3;
  font-weight:600;
}
.reason-card p,
.decision-grid p,
.outcome-grid p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

.decision-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:38px;
}
.decision-grid article{position:relative;padding-left:20px}
.decision-line{
  position:absolute;
  left:0;
  top:0;
  width:3px;
  height:100%;
}
.blue-line{background:var(--blue)}
.teal-line{background:var(--teal)}
.yellow-line{background:var(--yellow)}
.decision-grid strong{
  display:block;
  font-size:32px;
  line-height:1;
  font-weight:500;
}
.decision-grid h3{margin-top:26px}

.audience-grid{
  display:grid;
  grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);
  gap:88px;
  align-items:start;
}
.audience-list{border-top:1px solid var(--border)}
.audience-list article{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:26px;
  padding:22px 0;
  border-bottom:1px solid var(--border);
}
.audience-list span{
  color:var(--blue);
  font-size:13px;
  font-weight:700;
}
.audience-list h3{
  margin:0;
  font-size:18px;
  line-height:1.45;
  font-weight:500;
}

.mentor-section{padding-top:90px;padding-bottom:90px}
.mentor-grid{
  display:grid;
  grid-template-columns:minmax(320px,.82fr) minmax(0,1.18fr);
  gap:72px;
  align-items:center;
}
.mentor-photo{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--soft);
}
.mentor-photo img{
  width:100%;
  aspect-ratio:4/5;
  display:block;
  object-fit:cover;
  object-position:center 20%;
}
.mentor-role{
  margin-top:8px!important;
  color:var(--blue)!important;
  font-weight:600;
}
.mentor-copy blockquote{
  margin:30px 0 0;
  padding:26px 0 0;
  border-top:1px solid var(--border);
  font-size:25px;
  line-height:1.48;
  letter-spacing:-.02em;
}

.outcome-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.outcome-grid article{
  padding:24px;
  border:1px solid var(--border);
  border-radius:7px;
  background:#fff;
}
.outcome-grid h3{margin-top:28px}

.program-section{background:#fff}
.package-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.package-card{
  min-height:390px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:22px;
  border:1px solid var(--border);
  border-radius:7px;
  background:#fff;
}
.package-label{
  margin-bottom:12px;
  color:var(--muted);
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.package-card h3{
  margin:0;
  font-size:19px;
  line-height:1.3;
  font-weight:600;
}
.package-card p{
  margin:12px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}
.package-price{
  margin-top:26px;
  font-size:25px;
  line-height:1.2;
  font-weight:500;
}
.package-duration{
  margin-top:5px;
  color:var(--muted);
  font-size:12px;
}
.package-detail{
  display:block;
  margin:16px 0 10px;
  color:var(--blue);
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}
.package-cta{
  min-height:43px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  background:var(--blue);
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
}

.online-section{padding-top:0}
.online-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.7fr);
  gap:72px;
  align-items:center;
  padding-top:72px;
  padding-bottom:72px;
  border-top:1px solid var(--border);
}
.online-grid h2{
  margin:0;
  font-size:38px;
  line-height:1.2;
  letter-spacing:-.025em;
  font-weight:600;
}
.online-grid>div>p{
  max-width:680px;
  margin:18px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}
.online-card{
  padding:26px;
  border:1px solid var(--border);
  border-radius:7px;
  background:var(--soft);
}
.online-card>span{
  color:var(--muted);
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
}
.online-card h3{
  margin:12px 0;
  font-size:23px;
  line-height:1.3;
}
.online-card p{
  margin:0 0 20px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}
.online-card a{
  min-height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  background:var(--blue);
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
}

.faq-grid{
  display:grid;
  grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr);
  gap:72px;
}
.faq-grid h2{
  margin:0;
  font-size:38px;
  line-height:1.2;
  font-weight:600;
  letter-spacing:-.025em;
}
.faq-grid>div:first-child p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:15px;
}
.faq-list{
  border-top:1px solid var(--border);
}
.faq-list details{
  border-bottom:1px solid var(--border);
}
.faq-list summary{
  padding:18px 2px;
  cursor:pointer;
  list-style:none;
  font-size:15px;
  font-weight:500;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{
  content:"+";
  float:right;
  color:var(--blue);
}
.faq-list details[open] summary::after{content:"-"}
.faq-answer{
  padding:0 0 20px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.final-cta{padding:78px 0}
.final-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:46px;
}
.final-inner>div:first-child{max-width:760px}
.final-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:220px;
}

.site-footer{
  border-top:1px solid var(--border);
  padding:21px 0;
}
.footer-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:26px;
  align-items:center;
}
.footer-brand{font-size:15px}
.footer-brand .brand-mark{width:24px;height:24px}
.footer-inner small{
  color:var(--muted);
  font-size:9px;
  line-height:1.3;
  white-space:nowrap;
}
.footer-inner small:nth-child(2){
  justify-self:start;
}
.footer-inner small:last-child{
  justify-self:end;
}

@media(max-width:980px){
  .desktop-nav{display:none}
  .hero-grid{grid-template-columns:1fr;gap:44px}
  .hero-board{min-height:0}
  .reason-grid{grid-template-columns:1fr}
  .decision-grid{gap:22px}
  .audience-grid{grid-template-columns:1fr;gap:36px}
  .mentor-grid{grid-template-columns:1fr;gap:38px}
  .mentor-photo{max-width:520px}
  .outcome-grid{grid-template-columns:repeat(2,1fr)}
  .package-grid{grid-template-columns:repeat(2,1fr)}
  .online-grid{grid-template-columns:1fr;gap:32px}
  .faq-grid{grid-template-columns:1fr;gap:34px}
  .final-inner{align-items:flex-start;flex-direction:column}
  .final-actions{width:100%;max-width:360px}
  .footer-inner{grid-template-columns:1fr;gap:8px}
  .footer-inner small,
  .footer-inner small:nth-child(2),
  .footer-inner small:last-child{justify-self:start}
}

@media(max-width:640px){
  .container{width:min(100% - 30px,var(--container))}
  .header-inner{min-height:60px}
  .brand{font-size:16px}
  .brand-mark{width:25px;height:25px}
  .header-cta{min-height:38px;padding:0 12px;font-size:12px}

  .hero{padding:54px 0 48px}
  .hero-grid{gap:34px}
  .eyebrow,.kicker{font-size:10px;letter-spacing:.07em}
  .hero h1{
    font-size:39px;
    line-height:1.1;
    letter-spacing:-.035em;
  }
  .hero-accent{display:inline}
  .hero-lead{font-size:16px;line-height:1.72;margin-top:20px}
  .hero-actions{display:grid;grid-template-columns:1fr;margin-top:24px}
  .button{width:100%}
  .hero-audience{gap:10px 16px;margin-top:20px;font-size:12px}

  .hero-board{padding:24px 18px}
  .board-row{grid-template-columns:36px 1fr;gap:12px}
  .board-row+.board-row{margin-top:16px}
  .board-number{width:34px;height:34px;border-radius:6px}
  .board-card{padding:15px}
  .board-card strong{font-size:16px}
  .board-card p{font-size:12px}

  .anchor-inner{gap:24px;min-height:52px}
  .anchor-inner a{font-size:11px}

  .section{padding:58px 0}
  .section-heading{margin-bottom:30px}
  .section-heading h2,
  .audience-grid h2,
  .mentor-copy h2,
  .final-inner h2{
    font-size:30px;
    line-height:1.22;
  }
  .section-heading p,
  .mentor-copy>p,
  .final-inner p{font-size:16px;line-height:1.7}

  .reason-card{padding:21px}
  .reason-card h3,
  .decision-grid h3,
  .outcome-grid h3{font-size:18px}

  .decision-grid{grid-template-columns:1fr;gap:32px}
  .decision-grid article{min-height:150px}

  .audience-list article{
    grid-template-columns:1fr;
    gap:7px;
    padding:18px 0;
  }
  .audience-list h3{font-size:17px}

  .mentor-section{padding-top:58px;padding-bottom:58px}
  .mentor-photo{max-width:none}
  .mentor-photo img{aspect-ratio:4/4.6}
  .mentor-copy blockquote{
    margin-top:24px;
    padding-top:22px;
    font-size:21px;
    line-height:1.5;
  }

  .outcome-grid{grid-template-columns:1fr}
  .package-grid{grid-template-columns:1fr}
  .package-card{min-height:0}
  .package-card p{font-size:15px}
  .package-price{font-size:24px}

  .online-grid{padding-top:54px;padding-bottom:54px}
  .online-grid h2,.faq-grid h2{font-size:29px;line-height:1.22}

  .final-cta{padding:58px 0}
  .final-actions{max-width:none}

  .site-footer{padding:18px 0}
  .footer-inner small{
    font-size:8px;
    white-space:normal;
  }
}
/* ADMIN CMS DYNAMIC LAYOUT */
.container{width:min(var(--container,1180px),calc(100% - 40px))}
.section{padding-top:var(--section-space,82px);padding-bottom:var(--section-space,82px)}
.package-grid{grid-template-columns:repeat(var(--package-cols,4),minmax(0,1fr))}
.hero-grid-stacked{grid-template-columns:1fr!important}
.hero-grid-stacked .hero-copy{max-width:840px}
.hero-grid-stacked .hero-board{max-width:840px}
@media(max-width:980px){.package-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.container{width:min(100% - 30px,var(--container,1180px))}.section{padding-top:56px;padding-bottom:56px}.package-grid{grid-template-columns:1fr}}
/* FOOTER LEGAL LINKS */
.footer-inner{grid-template-columns:auto 1fr auto auto}
.footer-links{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.footer-links a{color:var(--muted);font-size:9px;font-weight:600;text-decoration:none;white-space:nowrap}
.footer-links a:hover{color:var(--blue)}
@media(max-width:980px){.footer-inner{grid-template-columns:1fr}.footer-links{gap:10px 14px}.footer-links a{font-size:9px}}
/* UPLOADED SITE LOGO */
.site-logo-img{display:block;width:auto;height:34px;max-width:190px;object-fit:contain}
.footer-site-logo{height:26px;max-width:150px}
@media(max-width:640px){.site-logo-img{height:29px;max-width:150px}.footer-site-logo{height:23px}}
/* MOBILE HAMBURGER MENU */
.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #dadce0;
    border-radius: 6px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #202124;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 820px) {

    .desktop-nav,
    .header-cta {
        display: none !important;
    }

    .header-inner {
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex: 0 0 auto;
    }

    .mobile-menu:not([hidden]) {
        display: block;
        background: #fff;
        border-top: 1px solid #e8eaed;
        border-bottom: 1px solid #dadce0;
    }

    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        padding-top: 10px;
        padding-bottom: 16px;
    }

    .mobile-menu-inner > a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 4px;
        border-bottom: 1px solid #f1f3f4;
        color: #202124;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-menu-inner > a:last-of-type {
        border-bottom: 0;
    }

    .mobile-menu-inner .mobile-menu-cta {
        justify-content: center;
        min-height: 46px;
        margin-top: 12px;
        padding: 0 18px;
        border: 0;
        border-radius: 5px;
        background: #1a73e8;
        color: #fff;
        font-weight: 700;
    }

    body.mobile-menu-open {
        overflow-x: hidden;
    }
}
/* CONVERSION UPGRADE V1 */
.conversion-hero-offer{display:inline-flex;align-items:center;gap:9px;margin:18px 0 2px;padding:9px 12px;border:1px solid #dadce0;border-radius:5px;background:#fff;color:#3c4043;font-size:12px;font-weight:700;line-height:1.45}
.conversion-offer-dot{width:7px;height:7px;border-radius:50%;background:#14b8a6;flex:0 0 auto}
.conversion-proof-wrap{margin-top:-12px;padding:0 0 54px;background:#fff}
.conversion-proof-strip{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid #dadce0;border-radius:6px;background:#fff}
.conversion-proof-strip>div{min-height:66px;display:flex;align-items:center;gap:12px;padding:14px 18px;border-right:1px solid #e8eaed}
.conversion-proof-strip>div:last-child{border-right:0}
.conversion-proof-strip span{color:#1a73e8;font-family:"JetBrains Mono",monospace;font-size:10px;font-weight:800}
.conversion-proof-strip strong{color:#202124;font-size:12px;font-weight:700}
.conversion-mid-section{padding:0 0 72px;background:#f8fafd}
.conversion-mid-cta{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:34px;align-items:center;padding:26px 30px;border:1px solid #dadce0;border-radius:6px;background:#fff}
.conversion-kicker{display:block;margin-bottom:7px;color:#1a73e8;font-family:"JetBrains Mono",monospace;font-size:9px;font-weight:800;letter-spacing:.08em}
.conversion-mid-cta h2,.conversion-program-intro h2{margin:0;color:#202124;font-size:24px;line-height:1.2;letter-spacing:-.02em}
.conversion-mid-cta p{max-width:720px;margin:8px 0 0;color:#5f6368;font-size:13px;line-height:1.65}
.conversion-mid-cta .button{white-space:nowrap}
.conversion-program-wrap{padding:68px 0 0;background:#fff}
.conversion-program-intro{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,460px);gap:52px;align-items:end;padding-bottom:22px;border-bottom:1px solid #dadce0}
.conversion-program-intro p{margin:0;color:#5f6368;font-size:13px;line-height:1.65}
.conversion-final-wrap{padding:0 0 18px;background:#fff}
.conversion-final-reassurance{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:18px 20px;border:1px solid #dadce0;border-radius:6px;background:#f8fafd}
.conversion-final-reassurance p{margin:0;color:#3c4043;font-size:13px;font-weight:600;line-height:1.55}
.conversion-final-reassurance a{flex:0 0 auto;color:#1a73e8;font-size:12px;font-weight:800;text-decoration:none}
.conversion-final-reassurance a:hover{text-decoration:underline}

@media(max-width:820px){
    .conversion-hero-offer{width:100%;margin-top:15px;font-size:11px}
    .conversion-proof-wrap{margin-top:0;padding-bottom:36px}
    .conversion-proof-strip{grid-template-columns:1fr}
    .conversion-proof-strip>div{min-height:52px;padding:11px 14px;border-right:0;border-bottom:1px solid #e8eaed}
    .conversion-proof-strip>div:last-child{border-bottom:0}
    .conversion-mid-section{padding-bottom:48px}
    .conversion-mid-cta{grid-template-columns:1fr;gap:18px;padding:22px 20px}
    .conversion-mid-cta h2,.conversion-program-intro h2{font-size:22px}
    .conversion-mid-cta .button{width:100%;justify-content:center}
    .conversion-program-wrap{padding-top:46px}
    .conversion-program-intro{grid-template-columns:1fr;gap:10px;align-items:start}
    .conversion-final-reassurance{align-items:flex-start;flex-direction:column;gap:10px}
}
/* CONVERSION POLISH V2 */
.conversion-mid-cta{
    position:relative;
    overflow:hidden;
    padding:30px 32px;
    border-color:#c7d7f4;
    box-shadow:0 1px 0 rgba(32,33,36,.03);
}
.conversion-mid-cta:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:4px;
    background:#1a73e8;
}
.conversion-final-reassurance{
    padding:22px 24px;
    border-color:#c7d7f4;
    background:#f7faff;
}
.conversion-final-reassurance p{
    max-width:760px;
    font-size:14px;
}
.featured-package-card{
    position:relative !important;
    border-color:#1a73e8 !important;
    box-shadow:0 0 0 1px rgba(26,115,232,.08) !important;
}
.featured-package-badge{
    display:inline-flex;
    align-items:center;
    min-height:24px;
    margin:0 0 10px;
    padding:0 8px;
    border-radius:4px;
    background:#e8f0fe;
    color:#174ea6;
    font-size:9px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}
@media(max-width:820px){
    .conversion-mid-cta{padding:24px 21px}
    .conversion-final-reassurance{padding:20px}
}
/* SALES POLISH V3 */
.sales-hero-mentor{
    display:flex;
    align-items:center;
    gap:9px;
    margin-top:12px;
    color:#3c4043;
    font-size:12px;
    font-weight:700;
}
.sales-hero-avatar{
    width:28px;
    height:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#e8f0fe;
    color:#174ea6;
    font-family:"JetBrains Mono",monospace;
    font-size:9px;
    font-weight:800;
}
.homepage-testimonials-section{
    padding:72px 0;
    background:#f8fafd;
    border-top:1px solid #edf0f2;
}
.homepage-testimonials-head{
    max-width:720px;
    margin-bottom:24px;
}
.homepage-testimonials-head h2{
    margin:8px 0 0;
    color:#202124;
    font-size:34px;
    line-height:1.16;
    letter-spacing:-.03em;
}
.homepage-testimonials-head p{
    margin:12px 0 0;
    color:#5f6368;
    font-size:14px;
    line-height:1.7;
}
.homepage-testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}
.homepage-testimonial-card{
    overflow:hidden;
    border:1px solid #dadce0;
    border-radius:7px;
    background:#fff;
}
.homepage-testimonial-image{
    height:170px;
    overflow:hidden;
    border-bottom:1px solid #e8eaed;
    background:#f1f3f4;
}
.homepage-testimonial-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.homepage-testimonial-body{
    padding:18px;
}
.homepage-testimonial-type{
    display:inline-flex;
    margin-bottom:12px;
    padding:5px 7px;
    border-radius:4px;
    background:#e8f0fe;
    color:#174ea6;
    font-family:"JetBrains Mono",monospace;
    font-size:8px;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}
.homepage-testimonial-body>p{
    min-height:76px;
    margin:0;
    color:#202124;
    font-size:14px;
    line-height:1.65;
}
.homepage-testimonial-person{
    margin-top:16px;
    padding-top:14px;
    border-top:1px solid #edf0f2;
}
.homepage-testimonial-person strong{
    display:block;
    font-size:12px;
}
.homepage-testimonial-person small{
    display:block;
    margin-top:3px;
    color:#5f6368;
    font-size:10px;
}
.sales-package-card{
    transition:border-color .18s ease, transform .18s ease;
}
.sales-package-card:hover{
    transform:translateY(-2px);
    border-color:#a8c7fa !important;
}
.sales-package-featured{
    border-color:#1a73e8 !important;
    box-shadow:0 0 0 1px rgba(26,115,232,.07);
}
.sales-package-difference{
    display:inline-flex;
    min-height:24px;
    align-items:center;
    margin:0 0 10px;
    padding:0 8px;
    border-radius:4px;
    background:#f1f3f4;
    color:#3c4043;
    font-size:9px;
    font-weight:800;
}
.sales-package-featured .sales-package-difference{
    background:#e8f0fe;
    color:#174ea6;
}
.sales-online-highlight-wrap{
    padding:0 0 70px;
    background:#fff;
}
.sales-online-highlight{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto auto;
    gap:28px;
    align-items:center;
    padding:26px 28px;
    border:1px solid #c7d7f4;
    border-radius:7px;
    background:#f8fbff;
}
.sales-online-highlight h3{
    margin:0;
    color:#202124;
    font-size:22px;
    line-height:1.2;
    letter-spacing:-.02em;
}
.sales-online-highlight p{
    max-width:620px;
    margin:8px 0 0;
    color:#5f6368;
    font-size:13px;
    line-height:1.65;
}
.sales-online-facts{
    display:flex;
    gap:24px;
}
.sales-online-facts>div{
    min-width:116px;
}
.sales-online-facts span{
    display:block;
    color:#5f6368;
    font-family:"JetBrains Mono",monospace;
    font-size:8px;
    font-weight:800;
    letter-spacing:.05em;
}
.sales-online-facts strong{
    display:block;
    margin-top:5px;
    color:#202124;
    font-size:15px;
}
.sales-final-detail{
    display:block;
    max-width:780px;
    margin-top:5px;
    color:#5f6368;
    font-size:11px;
    line-height:1.55;
}
@media(max-width:960px){
    .homepage-testimonials-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .sales-online-highlight{
        grid-template-columns:1fr;
        gap:18px;
    }
}
@media(max-width:640px){
    .homepage-testimonials-section{
        padding:50px 0;
    }
    .homepage-testimonials-head h2{
        font-size:27px;
    }
    .homepage-testimonials-grid{
        grid-template-columns:1fr;
    }
    .homepage-testimonial-body>p{
        min-height:0;
    }
    .sales-online-highlight-wrap{
        padding-bottom:50px;
    }
    .sales-online-highlight{
        padding:22px 20px;
    }
    .sales-online-facts{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:14px;
    }
    .sales-online-highlight .button{
        width:100%;
        justify-content:center;
    }
}
/* MOBILE CONVERSION FIX V4 */
.old-online-duplicate{
    display:none !important;
}

.homepage-testimonials-grid.is-single{
    grid-template-columns:minmax(0,760px) !important;
    max-width:760px;
}

.homepage-testimonial-card.is-single{
    display:grid;
    grid-template-columns:minmax(180px,280px) minmax(0,1fr);
}

.homepage-testimonial-card.is-single .homepage-testimonial-image{
    height:100%;
    min-height:240px;
    border-bottom:0;
    border-right:1px solid #e8eaed;
}

.sales-package-grid{
    align-items:stretch;
}

@media(max-width:820px){

    /* Header mobile: hanya logo + hamburger */
    .site-header .desktop-nav,
    .site-header .header-cta{
        display:none !important;
    }

    .site-header .mobile-menu-toggle{
        display:flex !important;
        margin-left:auto;
    }

    .site-header .header-inner{
        min-height:62px;
        display:flex !important;
        align-items:center;
        justify-content:space-between;
        gap:14px;
    }

    .site-header .brand{
        min-width:0;
        max-width:72%;
    }

    .site-header .site-logo-img{
        max-width:150px;
        height:28px;
    }

    .site-header .mobile-menu:not([hidden]){
        display:block !important;
    }

    /* Hero lebih ringkas */
    .mobile-sales-hero{
        padding-top:42px !important;
        padding-bottom:26px !important;
    }

    .mobile-sales-hero .hero-grid{
        gap:26px !important;
    }

    .mobile-sales-hero h1{
        font-size:38px !important;
        line-height:1.04 !important;
        letter-spacing:-.045em !important;
    }

    .mobile-sales-hero .hero-lead{
        font-size:15px !important;
        line-height:1.65 !important;
        margin-top:16px !important;
    }

    .mobile-sales-hero .conversion-hero-offer{
        font-size:12px !important;
        padding:10px 11px !important;
    }

    .mobile-sales-hero .sales-hero-mentor{
        margin-top:10px !important;
        font-size:12px !important;
    }

    .mobile-sales-hero .hero-actions{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:9px !important;
        margin-top:16px !important;
    }

    .mobile-sales-hero .hero-actions .button{
        width:100% !important;
        min-height:46px !important;
        justify-content:center !important;
        font-size:14px !important;
    }

    /* Proof strip tidak menempel ke hero */
    .conversion-proof-wrap{
        padding-top:10px !important;
        padding-bottom:34px !important;
    }

    .conversion-proof-strip{
        grid-template-columns:1fr !important;
    }

    .conversion-proof-strip>div{
        min-height:54px !important;
        padding:12px 14px !important;
    }

    .conversion-proof-strip strong{
        font-size:13px !important;
    }

    /* Paket 1 kartu per baris */
    .sales-package-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:14px !important;
    }

    .sales-package-card{
        width:100% !important;
        max-width:none !important;
        min-width:0 !important;
        margin:0 !important;
        padding:20px !important;
    }

    .sales-package-card h3,
    .sales-package-card h4{
        font-size:19px !important;
        line-height:1.25 !important;
    }

    .sales-package-card p{
        font-size:14px !important;
        line-height:1.6 !important;
    }

    .sales-package-card .button,
    .sales-package-card a[class*="button"]{
        width:100% !important;
        min-height:44px !important;
        justify-content:center !important;
        font-size:13px !important;
    }

    .sales-package-difference{
        font-size:10px !important;
        min-height:26px !important;
    }

    /* Testimoni tunggal jangan jadi kartu mini di kiri */
    .homepage-testimonials-grid,
    .homepage-testimonials-grid.is-single{
        grid-template-columns:1fr !important;
        max-width:none !important;
    }

    .homepage-testimonial-card.is-single{
        display:block !important;
    }

    .homepage-testimonial-card.is-single .homepage-testimonial-image{
        height:220px !important;
        min-height:0 !important;
        border-right:0 !important;
        border-bottom:1px solid #e8eaed !important;
    }

    .homepage-testimonial-body{
        padding:18px !important;
    }

    .homepage-testimonial-body>p{
        min-height:0 !important;
        font-size:15px !important;
        line-height:1.65 !important;
    }

    /* Online cukup satu section dan lebih kuat */
    .sales-online-highlight-wrap{
        padding:0 0 46px !important;
    }

    .sales-online-highlight{
        grid-template-columns:1fr !important;
        gap:18px !important;
        padding:22px 20px !important;
    }

    .sales-online-highlight h3{
        font-size:23px !important;
    }

    .sales-online-highlight p{
        font-size:14px !important;
    }

    .sales-online-facts{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:12px !important;
    }

    .sales-online-facts>div{
        min-width:0 !important;
        padding:12px !important;
        border:1px solid #e3e7ed;
        border-radius:5px;
        background:#fff;
    }

    .sales-online-facts strong{
        font-size:15px !important;
    }

    .sales-online-highlight .button{
        width:100% !important;
        min-height:46px !important;
        justify-content:center !important;
    }

    /* Final CTA jadi closing yang jelas */
    .mobile-final-cta .container,
    .mobile-final-cta [class*="container"]{
        grid-template-columns:1fr !important;
    }

    .mobile-final-cta .button,
    .mobile-final-cta a[class*="button"]{
        width:100% !important;
        min-height:46px !important;
        justify-content:center !important;
        margin-top:8px !important;
    }

    .conversion-final-reassurance{
        flex-direction:column !important;
        align-items:stretch !important;
        padding:20px !important;
    }

    .conversion-final-reassurance a{
        display:flex !important;
        width:100% !important;
        min-height:44px !important;
        align-items:center !important;
        justify-content:center !important;
        padding:0 14px !important;
        border:1px solid #1a73e8;
        border-radius:5px;
        text-decoration:none !important;
    }

    .sales-final-detail{
        font-size:12px !important;
        line-height:1.6 !important;
    }

    /* Teks sekunder jangan terlalu kecil */
    .section-copy,
    .section-copy p,
    .audience-copy,
    .program-copy,
    .program-card p,
    .program-card small,
    .homepage-testimonials-head p,
    .teaching-gallery-head p{
        font-size:13px !important;
        line-height:1.6 !important;
    }

    .eyebrow,
    .conversion-kicker{
        font-size:9px !important;
    }
}

@media(max-width:420px){
    .mobile-sales-hero h1{
        font-size:35px !important;
    }

    .site-header .brand{
        max-width:68%;
    }
}
/* MEDIA FIT FIX V1 */
.mentor-photo,
.mentor-photo-wrap{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    background:#f8fafd;
}

.mentor-photo img,
.mentor-photo-wrap img{
    display:block !important;
    width:auto !important;
    max-width:100% !important;
    height:auto !important;
    max-height:620px !important;
    aspect-ratio:auto !important;
    object-fit:contain !important;
    object-position:center !important;
    margin:0 auto !important;
}

.homepage-testimonial-image{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:auto !important;
    padding:10px;
    background:#f8fafd;
}

.homepage-testimonial-image img{
    display:block !important;
    width:auto !important;
    max-width:100% !important;
    height:auto !important;
    max-height:520px !important;
    aspect-ratio:auto !important;
    object-fit:contain !important;
    object-position:center !important;
    margin:0 auto !important;
}

@media (max-width:720px){
    .mentor-photo img,
    .mentor-photo-wrap img{
        max-height:520px !important;
    }

    .homepage-testimonial-image img{
        max-height:440px !important;
    }
}