
/* === Extracted inline style === */
html,body{overflow-x:hidden;max-width:100%}
/* Centred nav — works on every viewport, regardless of how .wrap is set up */
.wrap.nav{display:flex !important;justify-content:center !important;align-items:center !important;text-align:center}
nav{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;width:100%;margin:0 auto;text-align:center;gap:34px;font-weight:700;font-size:19px}
nav a{display:inline-block}
/* Active navigation underline + hover */
nav a{position:relative}
nav a:hover{color:var(--accent)}
nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:3px;
  background:var(--accent);
  border-radius:999px;
  box-shadow:0 0 10px rgba(212,255,25,.35);
  transition:width .25s ease;
}
nav a:hover::after,
nav a.active::after{
  width:100%;
}
nav a.active{
  color:var(--accent);
}

  @media (max-width:768px){
    header{position:static}
    .nav{min-height:auto;padding:18px 0}
    nav{gap:14px 18px;font-size:16px}
  }

  @media (max-width:560px){
    nav{gap:10px 14px;font-size:15px}
  }

  /* Hero panel: shrinks to fit its content and sits on the LEFT of the wrap.
     Everything inside is left-aligned on desktop. */
  .hero .hero-panel{
    display:inline-block;       /* box hugs its content */
    width:auto;
    max-width:760px;            /* don't go silly wide on desktop */
    text-align:left;
    margin-left:0;              /* anchor to the left of the .wrap */
    margin-right:auto;
  }
  .hero .hero-panel .kicker,
  .hero .hero-panel h1,
  .hero .hero-panel p{
    text-align:left;
    margin-left:0;
    margin-right:0;
  }
  .hero .hero-panel p{ max-width:680px; }
  .hero .hero-panel .actions{
    display:flex;
    justify-content:flex-start; /* buttons sit left under the copy */
    flex-wrap:wrap;
    gap:16px;
  }

  /* Mobile: panel goes full-width of the wrap; ONLY the titles centre,
     paragraph + buttons stay left-aligned. */
  @media (max-width:768px){
    .hero .hero-panel{
      display:block;
      max-width:100%;
      margin-left:0;
      margin-right:0;
    }
    .hero .hero-panel .kicker,
    .hero .hero-panel h1{ text-align:center; }
    .hero .hero-panel p,
    .hero .hero-panel .actions{
      text-align:left;
      justify-content:flex-start;
    }
  }

  /* MAKING THINGS SIMPLE — explicit sizing so it doesn't fight css/style.css */
  .hero .hero-panel h1{
    font-size: clamp(96px, 14vw, 168px) !important;
    line-height: .92 !important;
    letter-spacing: -.02em;
    font-weight: 900;
    margin: .15em 0 .35em;
  }
  @media (max-width:768px){
    .hero .hero-panel h1{
      font-size: clamp(72px, 17vw, 110px) !important;
    }
  }
  @media (max-width:560px){
    .hero .hero-panel h1{
      font-size: clamp(64px, 16vw, 92px) !important;
    }
  }


  /* ── Mobile nav overlay ── */
  .mob-nav-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:#0a110d;
  z-index:9999;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
  overflow-y:auto;
  padding:60px 32px;
}
.mob-nav-overlay.open{display:flex;}
.mob-nav-overlay a{
  font-size:22px;
  font-weight:700;
  color:#f3f5f7;
  text-decoration:none;
}
.mob-nav-overlay a.active{color:#d8ff3a;}
.mob-nav-close{
  position:absolute;
  top:24px;left:24px;
  background:none;border:none;cursor:pointer;
  color:#f3f5f7;font-size:26px;line-height:1;padding:6px;
}
.nav-hamburger{
  display:none;background:none;border:none;cursor:pointer;
  padding:8px;flex-direction:column;gap:5px;position:relative;z-index:100;
}
.nav-hamburger span{display:block;width:26px;height:2px;background:#f3f5f7;border-radius:2px;}
  @media(max-width:768px){
    .nav-hamburger{display:flex;}
    nav{display:none !important;}
    .wrap.nav{justify-content:space-between !important;padding:14px 20px;}
    header{position:relative;}
  }

  /* Icons are intentionally practical/operational rather than AI-heavy to keep the brand trustworthy. */


/* ══════════════════════════════════════════════════════
   FIX 2 — Hero desktop grid: prevent overflow / overlap
   ══════════════════════════════════════════════════════ */
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-right-col {
    display: none; /* hide right col on mobile — trust strip in hero covers it */
  }
}

/* ══════════════════════════════════════════════════════
   FIX 3 & 4 — Section heads: stack h2 above subtext (not side by side)
   ══════════════════════════════════════════════════════ */
.home-section-head {
  display: block !important;
  margin-bottom: 28px;
  text-align: center;
}
.home-section-head > div {
  text-align: center;
  width: 100%;
}
.home-section-head .kicker,
.home-section-head h2,
.home-section-head h3 {
  text-align: center;
}
.home-section-head > p {
  margin-top: 10px;
  text-align: center;
}

/* Subtext box style (used for "New here?" and "Free tools..." intros) */
.section-intro-box {
  background: rgba(216,255,58,.06);
  border: 1px solid rgba(216,255,58,.18);
  border-radius: 10px;
  padding: 14px 20px;
  color: #b8c0cc;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 28px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════
   FIX 5 — Testimonials: centre on desktop
   ══════════════════════════════════════════════════════ */
.sh-grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px;
}
@media (max-width: 860px) {
  .sh-grid-3 {
    grid-template-columns: 1fr !important;
  }
}
/* Centre the testimonial section header */
.testimonials-head {
  text-align: center;
}

/* ══════════════════════════════════════════════════════
   FIX 5b — Testimonial cards: text left, card centred in grid
   ══════════════════════════════════════════════════════ */
.sh-grid-3 .card {
  display: flex;
  flex-direction: column;
}

/* ══ Reviews 3-col grid (desktop) → 1-col (mobile) ══ */
.sh-reviews-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .sh-reviews-list {
    grid-template-columns: 1fr !important;
    max-width: 540px;
  }
}

/* ══ Suite card: don't stretch full height ══ */
.hero-right-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
  min-width: 0;
}
.hero-right-col > .card {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
}

/* ══ Suite card in hero: fix height stretch from min-height:100% ══ */
.hero-right-col .path-card {
  min-height: unset !important;
  height: auto !important;
  flex-grow: 0 !important;
}
.hero-right-col .path-card .actions {
  margin-top: 16px !important;
}

/* Proof rows as clickable links */
a.proof-row-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
  border: 1px solid transparent;
  margin: 0 -14px;
}
a.proof-row-link:hover {
  background: rgba(216,255,58,.07);
  border-color: rgba(216,255,58,.22);
}
a.proof-row-link .proof-icon { flex-shrink: 0; }
a.proof-row-link strong { color: #f3f5f7; }
a.proof-row-link span { color: #8a96a3; font-size: 13px; display: block; margin-top: 2px; }

/* ══ Trust strip: centre items so bottom row isn't stranded left ══ */
.trust-strip {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 700px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 420px) {
  .trust-strip {
    grid-template-columns: 1fr !important;
  }
}

/* ══ Section intro boxes: centre within wrap ══ */
.section-intro-box {
  margin-left: auto;
  margin-right: auto;
}

/* ══ home-section-head heading + intro: centre on page ══ */
.home-section-head {
  text-align: left;
  max-width: 760px;
}

/* ══ Section intro boxes: full width of wrap ══ */
.home-section-head .section-intro-box {
  max-width: 100%;
  margin-top: 14px;
}
.home-section-head h2 {
  max-width: 720px;
}

/* ══ Section heads: full-width, left-aligned heading + full-width intro box ══ */
.home-section-head {
  display: block !important;
  max-width: 100% !important;
  margin-bottom: 32px;
}
.home-section-head > div:first-child {
  max-width: 720px;
}
.home-section-head .section-intro-box {
  max-width: 100% !important;
  margin-top: 14px !important;
  box-sizing: border-box;
}
/* Centre the section itself so content sits in the middle of the page */
section.section > .wrap {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* ══ Start here + What's here: text centred ══ */
.home-section-head[style*="text-align:center"],
.home-section-head[style*="text-align:center"] .section-intro-box,
.home-section-head[style*="text-align:center"] h2,
.home-section-head[style*="text-align:center"] .kicker,
.home-section-head[style*="text-align:center"] > div {
  text-align: center !important;
}

/* ══ Section intro box: constrained width, centred ══ */
.home-section-head[style*="text-align:center"] .section-intro-box {
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* === Extracted inline style === */
.home-hero{padding:52px 0 36px;border-bottom:1px solid var(--line)}
  .home-hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:28px;align-items:stretch}
  .hero-panel.home-main{display:block;max-width:none;width:100%}
  .hero-panel.home-main h1{font-size:clamp(44px,7vw,86px)!important;line-height:.95!important;letter-spacing:-.05em;margin:0 0 22px!important}
  .hero-panel.home-main p{font-size:clamp(19px,2vw,25px);line-height:1.45;color:#d9dee5;max-width:760px;margin:0}
  .hero-proof-card{display:flex;flex-direction:column;gap:18px}
  .proof-row{display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:start;padding:16px;border:1px solid rgba(255,255,255,.08);border-radius:20px;background:rgba(255,255,255,.03)}
  .proof-icon{width:42px;height:42px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:rgba(216,255,58,.12);border:1px solid rgba(216,255,58,.25);font-size:22px}
  .proof-row strong{display:block;color:#f3f5f7;font-size:18px;margin-bottom:4px}
  .proof-row span{display:block;color:var(--muted);font-size:15px;line-height:1.45}
  .trust-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:24px}
  .trust-item{padding:18px;border-radius:20px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03);cursor:pointer;transition:border-color .2s,background .2s;display:block;}
  .trust-item:hover{border-color:rgba(216,255,58,.4);background:rgba(216,255,58,.05);}
  .trust-item strong{display:block;color:var(--accent);font-size:22px;line-height:1;margin-bottom:8px}
  .trust-item span{display:block;color:var(--muted);font-size:14px;font-weight:650}
  .start-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
  .path-card{display:flex;flex-direction:column;min-height:100%;gap:14px}
  .path-number{width:42px;height:42px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:var(--accent);color:#08100c;font-weight:900}
  .path-card h3{margin:0}
  .path-card p{font-size:18px!important;line-height:1.5!important}
  .home-section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;flex-wrap:wrap;margin-bottom:24px}
  .home-section-head p{max-width:650px;color:var(--muted);font-size:19px;margin:0}
  .resource-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
  .soft-note{border-left:4px solid var(--accent);padding:18px 20px;border-radius:18px;background:rgba(216,255,58,.07);color:#d9dee5;font-size:17px;line-height:1.55}
  @media(max-width:1100px){.home-hero-grid,.trust-strip,.start-grid,.resource-grid{grid-template-columns:1fr}.hero-panel.home-main h1{text-align:left!important}}
  @media(max-width:768px){.home-hero{padding:28px 0 16px}.hero-panel.home-main h1{text-align:center!important}.hero-panel.home-main p{text-align:left}.trust-strip{gap:12px}.home-section-head{align-items:flex-start}.start-grid,.resource-grid{gap:16px}}

/* === Extracted inline style === */
/* ── SimplicityHub injected components – mobile fixes ── */

/* Testimonial grids: 3-col → 1-col on mobile */
@media (max-width: 768px) {
  [data-sh-testimonials] > div,
  .sh-grid-3 {
    grid-template-columns: 1fr !important;
  }
}

/* Generic: any inline 3-col or 4-col grid in injected sections */
@media (max-width: 768px) {
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 4-col belt progression: 2-col on tablet, 1-col on small mobile */
@media (max-width: 520px) {
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}

/* 1fr auto splits (suite banner, YT CTA, WB callout): stack on mobile */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
  }
  /* Ensure CTA buttons inside split layouts go full-width */
  [style*="grid-template-columns:1fr auto"] a[style*="white-space:nowrap"],
  [style*="grid-template-columns:1fr auto"] a[style*="border-radius:18px"],
  [style*="grid-template-columns:1fr auto"] a[style*="border-radius:14px"] {
    width: 100% !important;
    white-space: normal !important;
    box-sizing: border-box;
  }
}

/* WB callout bar: stack on mobile */
@media (max-width: 640px) {
  [style*="display:flex;align-items:center;gap:20px;flex-wrap:wrap"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* Suite banner price tags: wrap nicely */
@media (max-width: 640px) {
  [style*="display:flex;flex-wrap:wrap;gap:10px"] {
    gap: 8px !important;
  }
}

/* Academy WB bar: stack on mobile */
@media (max-width: 640px) {
  [style*="display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  [style*="display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap"] > a {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box;
  }
}

/* Belt progression: fix border-radius on single column */
@media (max-width: 520px) {
  [style*="border-radius:16px 0 0 16px"],
  [style*="border-radius:0 16px 16px 0"] {
    border-radius: 16px !important;
    border-left: 1px solid rgba(255,255,255,.1) !important;
  }
  [style*="border:2px solid rgba(216,255,58,.4)"] {
    border-left: 2px solid rgba(216,255,58,.4) !important;
  }
}

/* Remove nowrap from CTAs on mobile */
@media (max-width: 480px) {
  a[style*="white-space:nowrap"] {
    white-space: normal !important;
  }
}

/* Suite card: remove auto margin on mobile so no huge gap */
@media (max-width: 768px) {
  .card.path-card .actions[style*="margin-top:auto"],
  .card.path-card .actions {
    margin-top: 20px !important;
  }
  /* Right column flex wrapper: remove stretch gap on mobile */
  .home-hero-grid > div[style*="flex-direction:column"] {
    gap: 16px !important;
  }
}
/* Hero right column: don't stretch to full height on mobile */
@media (max-width: 1100px) {
  .hero-right-col {
    align-items: stretch;
  }
  .hero-right-col .card.path-card {
    min-height: unset !important;
    height: auto !important;
  }
}


/* Price justification grid: 3-col → 1-col */
@media (max-width: 768px) {
  [style*="grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:24px"] {
    grid-template-columns: 1fr !important;
  }
}

/* YT CTA card: stack on mobile */
@media (max-width: 640px) {
  [style*="grid-template-columns:1fr auto;gap:24px;align-items:center;flex-wrap:wrap"] {
    grid-template-columns: 1fr !important;
  }
  [style*="display:flex;flex-direction:column;gap:10px;min-width:180px"],
  [style*="display:flex;flex-direction:column;gap:10px;min-width:200px"],
  [style*="display:flex;flex-direction:column;gap:12px;min-width:200px"] {
    min-width: 0 !important;
    width: 100% !important;
  }
}

/* Suite banner button column: full width on mobile */
@media (max-width: 768px) {
  [style*="min-width:200px"] {
    min-width: 0 !important;
    width: 100% !important;
  }
}

/* === Extracted inline style === */
/* ── Fix: centre section heads that have text-align:center ── */
.home-section-head[style*="text-align:center"] {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.home-section-head[style*="text-align:center"] > div,
.home-section-head[style*="text-align:center"] .kicker,
.home-section-head[style*="text-align:center"] h2,
.home-section-head[style*="text-align:center"] h3,
.home-section-head[style*="text-align:center"] .section-intro-box {
  text-align: center !important;
  align-self: center !important;
}

/* === Extracted inline style === */
@media (max-width: 768px) {
  .hero-panel.home-main {
    text-align: center !important;
  }
  .hero-panel.home-main .kicker,
  .hero-panel.home-main h1,
  .hero-panel.home-main p {
    text-align: center !important;
  }
  .hero-panel.home-main .actions {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  .hero-panel.home-main .actions .button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  .hero-panel.home-main > div[style*="display:flex"] {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

/* === Extracted inline style === */
.sh-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* Padding-bottom extends the hover zone down over the gap to the menu */
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.sh-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  text-decoration: none;
}
.sh-dropdown-trigger, .sh-dropdown-trigger * { cursor: pointer; }
.sh-chevron { transition: transform 0.22s ease; flex-shrink: 0; }
.sh-dropdown.is-open .sh-chevron { transform: rotate(180deg); }
.sh-dropdown-menu {
  display: none;
  position: fixed;
  top: auto;
  left: auto;
  width: min(560px, 96vw);
  background: #0d1525;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  padding: 20px 20px 0 20px;
  z-index: 1000;
  margin-top: 0;
}
.sh-dropdown.is-open .sh-dropdown-menu {
  display: block;
}


.sh-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 4px;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .sh-dropdown-grid { grid-template-columns: 1fr; }
}
.sh-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #f3f5f7;
  font-weight: normal;
  font-size: 14px;
  transition: background 0.15s ease;
}
.sh-dropdown-item:hover { background: rgba(255,255,255,0.06); color: #f3f5f7; }
.sh-dropdown-item:hover::after { display: none !important; }
.sh-dropdown-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(216,255,58,0.10);
  border: 1px solid rgba(216,255,58,0.18);
  color: #d8ff3a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sh-dropdown-title { font-weight: 700; font-size: 14px; color: #f3f5f7; line-height: 1.3; }
.sh-dropdown-desc { font-size: 12px; color: #7a8694; margin-top: 2px; line-height: 1.3; font-weight: 400; }
.sh-dropdown-viewall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #d8ff3a;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.15s ease;
  border-radius: 0 0 18px 18px;
  margin: 0 -20px;
}
.sh-dropdown-viewall:hover { opacity: 0.8; color: #d8ff3a; }
.sh-dropdown-viewall::after { display: none !important; }
.sh-dropdown-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #d8ff3a;
  font-size: 13px;
  line-height: 1;
  transition: background 0.15s;
  z-index: 10;
  padding: 0;
}
.sh-dropdown-close:hover {
  background: rgba(216,255,58,0.12);
}
    /* ── Calculators Mega-Menu ── */
    .calc-mega-menu{display:grid;grid-template-columns:1fr 1fr 1fr;gap:0 24px;padding-bottom:8px}
    .calc-menu-col h4{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:#d8ff3a;opacity:.75;margin-bottom:10px;padding-bottom:8px;border-bottom:1px solid rgba(216,255,58,.15)}
    .calc-menu-col a{display:flex;align-items:center;gap:8px;padding:6px 8px;border-radius:7px;font-size:13.5px;font-weight:500;color:#c5cdd8;transition:background .12s,color .12s;white-space:nowrap}
    .calc-menu-col a:hover{background:rgba(255,255,255,.06);color:#f3f5f7}
    .calc-menu-col a::before{content:"";display:inline-block;width:5px;height:5px;border-radius:50%;background:rgba(216,255,58,.4);flex-shrink:0}
    .calc-menu-footer{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.08);margin:8px -20px 0;padding:14px 20px;text-align:center;border-radius:0 0 18px 18px}
    .calc-menu-footer a{color:#d8ff3a;font-weight:700;font-size:13.5px;display:inline-flex;align-items:center;gap:6px;transition:opacity .15s}
    .calc-menu-footer a:hover{opacity:.75;color:#d8ff3a}
    @media(max-width:768px){.calc-mega-menu{grid-template-columns:1fr;gap:0}
.calc-menu-col{margin-bottom:14px}.calc-menu-col a{font-size:14px;padding:8px 8px}}

}

/* === Extracted inline style === */
#hero-primary-cta {
      display: inline-flex !important;
      align-items: center !important;
      background: #d8ff3a !important;
      color: #05100a !important;
      font-size: 17px !important;
      font-weight: 800 !important;
      line-height: 1.2 !important;
      padding: 18px 28px !important;
      border-radius: 18px !important;
      border: none !important;
      text-decoration: none !important;
      letter-spacing: -0.2px !important;
      transition: background .15s, transform .15s !important;
    }
    #hero-primary-cta:hover {
      background: #e8ff6a !important;
      transform: translateY(-2px) !important;
    }
    #hero-secondary-cta {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      background: rgba(216,255,58,.07) !important;
      border: 1.5px solid rgba(216,255,58,.4) !important;
      color: #d8ff3a !important;
      font-size: 16px !important;
      font-weight: 800 !important;
      text-decoration: none !important;
      padding: 17px 28px !important;
      border-radius: 18px !important;
      letter-spacing: -0.1px !important;
      transition: border-color .15s, background .15s, transform .15s !important;
    }
    #hero-secondary-cta:hover {
      border-color: rgba(216,255,58,.7) !important;
      background: rgba(216,255,58,.13) !important;
      transform: translateY(-2px) !important;
    }
    @media (max-width: 768px) {
      #hero-primary-cta, #hero-secondary-cta {
        display: flex !important;
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        font-size: 16px !important;
        padding: 17px 20px !important;
      }
      .home-hero { padding: 32px 0 20px !important; }
    }
    /* Fix #16: iPad landscape (769-1024px) — prevent CTA text truncation */
    @media (min-width: 769px) and (max-width: 1024px) {
      #hero-primary-cta {
        font-size: 15px !important;
        padding: 16px 18px !important;
        white-space: nowrap !important;
      }
      #hero-secondary-cta {
        font-size: 14px !important;
        padding: 15px 16px !important;
        white-space: nowrap !important;
      }
    }
    /* Fix #17: Card text truncation on very small screens (< 390px) */
    @media (max-width: 389px) {
      .proof-row strong, a.proof-row-link strong { font-size: 15px !important; }
      .proof-row span, a.proof-row-link span { font-size: 12px !important; }
      .proof-icon { width: 36px !important; height: 36px !important; }
      .card.hero-proof-card { padding: 14px !important; }
      a.proof-row-link { gap: 10px !important; padding: 12px !important; }
    }

/* === Extracted inline style === */
.sh-banner{position:relative;overflow:hidden;border-radius:18px;padding:26px 30px;
  background:linear-gradient(135deg,#141b12 0%,#0f1710 60%,#0d1b0f 100%);
  border:1px solid rgba(216,255,58,.20);box-shadow:0 12px 34px rgba(0,0,0,.4);
  display:flex;align-items:center;gap:24px;min-height:150px;}
.sh-banner-inner{position:relative;z-index:2;flex:1 1 auto;text-align:left;}
.sh-banner-kicker{display:inline-block;font-size:12px;font-weight:800;letter-spacing:.14em;
  color:#d8ff3a;text-transform:uppercase;margin-bottom:8px;}
.sh-banner-title{margin:0 0 6px;font-size:30px;line-height:1.1;color:#fff;font-weight:800;}
.sh-banner-title .lime{color:#d8ff3a;}
.sh-banner-sub{margin:0;color:#aeb6c0;font-size:15px;line-height:1.5;max-width:520px;}
.sh-banner-cta{display:inline-block;margin-top:16px;background:#d8ff3a;color:#0d1b0f;
  font-weight:800;font-size:14px;padding:11px 20px;border-radius:999px;text-decoration:none;
  transition:transform .15s ease,box-shadow .15s ease;}
.sh-banner-cta:hover{transform:translateY(-1px);box-shadow:0 8px 22px rgba(216,255,58,.35);}
.sh-banner-diamond{position:relative;z-index:2;flex:0 0 auto;width:92px;height:92px;
  background:#d8ff3a;transform:rotate(45deg);border-radius:14px;
  display:flex;align-items:center;justify-content:center;box-shadow:0 10px 26px rgba(216,255,58,.3);}
.sh-banner-diamond span{transform:rotate(-45deg);color:#0d1b0f;line-height:1;}
.sh-diamond-stars{font-size:16px;letter-spacing:2px;font-weight:900;display:block;white-space:nowrap;text-align:center;line-height:1;}
.sh-banner-enrolled{padding-left:210px;min-height:172px;}
.sh-banner-lady{position:absolute;left:8px;bottom:0;height:190px;width:auto;z-index:1;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,.5));pointer-events:none;}
.sh-banner::before{content:"";position:absolute;top:-40%;left:-10%;width:55%;height:180%;
  background:linear-gradient(120deg,rgba(216,255,58,.08),transparent 70%);
  transform:rotate(8deg);z-index:0;}
@media(max-width:768px){
  .sh-banner{flex-direction:column;text-align:center;padding:22px 20px;min-height:0;gap:14px;}
  .sh-banner-inner{text-align:center;}
  .sh-banner-sub{margin-left:auto;margin-right:auto;}
  .sh-banner-title{font-size:24px;}
  .sh-banner-enrolled{padding-left:20px;padding-bottom:150px;}
  .sh-banner-lady{height:150px;left:50%;transform:translateX(-50%);}
  .sh-banner-diamond{width:76px;height:76px;}
  .sh-diamond-stars{font-size:13px;letter-spacing:1px;}
}

/* === Extracted inline style === */
#trust-strip .ts-wrap{max-width:920px;margin:0 auto;background:linear-gradient(180deg,#0d0f0d 0%,#141814 100%);border:1px solid rgba(216,255,58,.18);border-radius:22px;padding:30px 26px 26px;box-shadow:0 18px 50px -18px rgba(0,0,0,.75),inset 0 1px 0 rgba(255,255,255,.04);text-align:center;transition:box-shadow .35s ease,transform .35s ease,border-color .35s ease;}
#trust-strip .ts-wrap:hover{border-color:rgba(216,255,58,.4);box-shadow:0 26px 70px -20px rgba(216,255,58,.22),0 18px 50px -18px rgba(0,0,0,.8),inset 0 1px 0 rgba(255,255,255,.06);transform:translateY(-2px);}
#trust-strip .ts-eyebrow{margin:0 0 20px;font-size:.72rem;font-weight:700;letter-spacing:.22em;color:#8fae6f;text-transform:uppercase;}
#trust-strip .ts-logos{display:flex;flex-wrap:wrap;align-items:stretch;justify-content:center;gap:16px;}
#trust-strip .ts-tile{display:flex;align-items:center;gap:13px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.07);border-radius:15px;padding:18px 24px;text-decoration:none;color:#eafbe2;transition:transform .28s cubic-bezier(.2,.8,.25,1),background .28s ease,border-color .28s ease,box-shadow .28s ease;overflow:hidden;position:relative;min-height:78px;box-sizing:border-box;}
#trust-strip .ts-tile:hover{transform:translateY(-4px);background:rgba(216,255,58,.06);border-color:rgba(216,255,58,.35);box-shadow:0 14px 30px -12px rgba(0,0,0,.7);}
#trust-strip .ts-tile img{width:52px;height:52px;border-radius:50%;background:#fff;padding:4px;flex:0 0 auto;}
#trust-strip .ts-tile .reed-mark{width:46px;height:46px;flex:0 0 46px;min-width:46px;border-radius:50%;box-shadow:none;background:#E0007A;display:inline-flex;align-items:center;justify-content:center;flex-direction:column;overflow:hidden;}
#trust-strip .ts-tile .udemy-mark{width:46px;height:46px;flex:0 0 46px;min-width:46px;border-radius:50%;box-shadow:none;background:#a435f0;display:inline-flex;align-items:center;justify-content:center;flex-direction:column;overflow:hidden;}
#trust-strip .ts-tile .udemy-mark-u{color:#fff;font-family:Arial,Helvetica,sans-serif;font-weight:900;font-size:24px;line-height:1;margin-top:-3px;}
#trust-strip .ts-label{display:flex;flex-direction:column;align-items:flex-start;line-height:1.25;}
#trust-strip .ts-label strong{font-size:.98rem;font-weight:700;}
#trust-strip .ts-label span{font-size:.78rem;color:#a9c497;}

#trust-strip .ts-foot{margin:22px 0 0;font-size:.92rem;color:#c6dcb6;}
#trust-strip .ts-foot strong{color:#d8ff3a;}
@media(max-width:560px){#trust-strip .ts-tile{width:280px;justify-content:center;}}

/* === Extracted inline style === */
.reed-strip{position:relative;background:rgba(255,255,255,.03);border:1px solid rgba(224,0,122,.28);border-radius:20px;padding:20px 26px;}
#reed-panel .reed-link{display:block;text-decoration:none;color:inherit;cursor:default;pointer-events:none;}
#reed-panel .reed-dim{filter:grayscale(1) opacity(.6);pointer-events:none;user-select:none;transition:filter .3s,opacity .3s;}
.reed-strip-inner{display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;text-align:left;}
.reed-mark{position:relative;width:46px;height:46px;flex:0 0 auto;border-radius:50%;background:#E0007A;display:inline-flex;align-items:center;justify-content:center;flex-direction:column;box-shadow:0 6px 16px rgba(224,0,122,.4);}
.reed-mark-r{color:#fff;font-family:Arial,Helvetica,sans-serif;font-weight:900;font-size:24px;line-height:1;margin-top:-3px;}
.reed-mark-dots{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);width:18px;height:4px;background-image:radial-gradient(circle,#fff 45%,transparent 46%);background-size:6px 4px;background-repeat:repeat-x;}
.reed-strip-text{display:flex;flex-direction:column;gap:2px;}
.reed-word{display:inline-flex;align-items:baseline;gap:6px;font-family:Arial,Helvetica,sans-serif;font-weight:800;font-size:26px;line-height:1;}
.reed-word-reed{color:#e6edf5;}
.reed-word-courses{color:#3aa935;}
.reed-strip-sub{font-size:14px;color:#b8c0cc;font-weight:600;}
.reed-ribbon{position:absolute;top:16px;right:-46px;transform:rotate(45deg);background:linear-gradient(90deg,#E0007A,#ff2e9a);color:#fff;font-weight:900;font-size:11px;letter-spacing:.1em;text-transform:uppercase;padding:6px 56px;box-shadow:0 6px 16px rgba(224,0,122,.45);z-index:5;}
.reed-ribbon span{display:block;white-space:nowrap;}
#reed-panel.reed-live .reed-ribbon{display:none;}
#reed-panel.reed-live .reed-dim{filter:none;opacity:1;pointer-events:auto;}
#reed-panel.reed-live .reed-link{pointer-events:auto;cursor:pointer;}
#reed-panel.reed-live.reed-strip{border-color:rgba(224,0,122,.6);box-shadow:0 8px 24px rgba(224,0,122,.15);}
#reed-panel.reed-live:hover{transform:translateY(-2px);transition:transform .2s;}
@media(max-width:640px){.reed-strip-inner{justify-content:flex-start;}.reed-word{font-size:22px;}.reed-ribbon{font-size:10px;padding:5px 50px;right:-44px;}}

/* === Extracted inline style === */
.footer-links a{
  color:#f3f5f7;
  text-decoration:none;
  transition:color .15s ease;
  font-weight:500;
}
.footer-links a:hover{
  color:#d8ff3a;
  text-decoration:none;
}
.footer-sep{
  color:#6f7a88;
}

/* === Extracted inline style === */
/* ---- Review Carousel ---- */
.sh-rc-wrap    { position:relative; }
.sh-rc-outer   { overflow:hidden; }
/* track uses CSS gap — no per-slide margin needed */
.sh-rc-track   { display:flex; gap:22px; transition:transform .45s cubic-bezier(.4,0,.2,1); will-change:transform; align-items:stretch; }
/* slide width is set via JS so it's always exact pixels, not % */
.sh-rc-slide   { flex:0 0 auto; box-sizing:border-box; }
/* Card */
.sh-review-card   { background:#1a2e1c; border-top:4px solid rgba(216,255,58,.75); border-radius:14px; padding:20px 18px 16px; display:flex; flex-direction:column; text-align:left; height:100%; box-sizing:border-box; }
.sh-review-quote  { font-size:14px; color:#d9dee5; line-height:1.4; margin:0 0 14px; height:100px; overflow:hidden; flex-shrink:0; }
.sh-review-author { display:flex; align-items:flex-start; gap:10px; margin-bottom:8px; }
.sh-review-avatar { width:32px; height:32px; border-radius:50%; background:#2a3d2c; display:flex; align-items:center; justify-content:center; font-weight:800; color:#d8ff3a; font-size:14px; flex-shrink:0; margin-top:1px; }
.sh-review-name   { font-weight:700; font-size:14px; color:#f3f5f7; line-height:1.3; margin-bottom:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sh-review-meta   { font-size:12px; color:#8a96a3; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sh-review-stars  { font-size:14px; color:#fff; letter-spacing:2px; margin-top:auto; }
@media (max-width:480px){
  .sh-review-card{padding:16px 14px 14px}
  .sh-review-quote{height:88px;margin:0 0 12px}
}
/* Nav arrows */
.sh-rc-btn  { position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; background:rgba(14,20,32,.85); border:1px solid rgba(216,255,58,.3); color:#d8ff3a; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:10; font-size:20px; line-height:1; transition:background .2s,border-color .2s; backdrop-filter:blur(4px); }
.sh-rc-btn:hover { background:rgba(216,255,58,.15); border-color:#d8ff3a; }
.sh-rc-prev { left:-20px; }
.sh-rc-next { right:-20px; }
/* Dots */
.sh-rc-dots { display:flex; justify-content:center; gap:8px; margin-top:22px; flex-wrap:wrap; }
.sh-rc-dot  { width:8px; height:8px; border-radius:50%; background:rgba(216,255,58,.25); border:none; cursor:pointer; transition:background .2s,transform .2s; padding:0; }
.sh-rc-dot.active { background:#d8ff3a; transform:scale(1.3); }

/* === Extracted inline style === */
.sh-enroll-course { font-size:14px; color:#d9dee5; line-height:1.4; margin:6px 0 12px; }
.sh-enroll-badge   { display:inline-block; font-size:11px; font-weight:700; padding:4px 10px; border-radius:999px; letter-spacing:.02em; margin-top:auto; }
.sh-enroll-course-badge { margin-left:auto; width:40px; height:40px; object-fit:contain; flex-shrink:0; align-self:flex-start; }

/* === Extracted inline style === */
#sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4, 7, 11, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(216, 255, 58, 0.25);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
#sticky-cta-bar.visible { transform: translateY(0); }
#sticky-cta-bar .sticky-label { color: #b8c0cc; font-size: 14px; font-weight: 600; flex-shrink: 0; }
#sticky-cta-bar .sticky-label strong { color: #f3f5f7; display: block; font-size: 15px; }
#sticky-cta-bar .sticky-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #d8ff3a; color: #08100c; font-weight: 800; font-size: 15px;
  padding: 12px 24px; border-radius: 16px; text-decoration: none;
  white-space: nowrap; transition: background 0.15s ease, transform 0.15s ease; flex-shrink: 0;
}
#sticky-cta-bar .sticky-btn:hover { background: #c8ef2a; transform: translateY(-1px); }
#sticky-cta-bar .sticky-close {
  background: none; border: none; color: #666; font-size: 20px;
  cursor: pointer; padding: 4px 6px; line-height: 1; flex-shrink: 0;
}
#sticky-cta-bar .sticky-close:hover { color: #aaa; }
@media (max-width: 560px) {
  #sticky-cta-bar { flex-wrap: wrap; padding: 12px 16px; gap: 10px; position: fixed; }
  #sticky-cta-bar .sticky-label { flex: 1; min-width: 0; }
  #sticky-cta-bar .sticky-btn { width: 100%; font-size: 15px; padding: 13px 20px; }
  #sticky-cta-bar .sticky-close { position: absolute; top: 10px; right: 12px; }
}

/* === Trust strip mobile fix === */
@media (max-width: 600px) {
  #trust-strip .ts-logos { flex-direction: column; align-items: center; }
  #trust-strip .ts-tile  { width: 280px; justify-content: center; padding:16px 20px; }
  #trust-strip .ts-label { align-items: center; text-align: center; }
}

.udemy-strip{position:relative;background:rgba(255,255,255,.03);border:1px solid rgba(164,53,240,.28);border-radius:20px;padding:20px 26px;}
.udemy-strip-inner{display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;text-align:left;}
.udemy-mark{width:46px;height:46px;flex:0 0 46px;min-width:46px;border-radius:50%;background:#a435f0;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 6px 16px rgba(164,53,240,.4);}
.udemy-mark-u{color:#fff;font-family:Arial,Helvetica,sans-serif;font-weight:900;font-size:28px;line-height:1;}
.udemy-strip-text{display:flex;flex-direction:column;gap:2px;}
.udemy-word{font-size:20px;font-weight:700;color:#fff;letter-spacing:-.02em;}
.udemy-strip-sub{font-size:14px;color:#b8c0cc;font-weight:600;}
.udemy-link{text-decoration:none;color:inherit;display:block;}
.udemy-link:hover .udemy-strip{border-color:rgba(164,53,240,.5);box-shadow:0 8px 24px rgba(164,53,240,.15);}
.udemy-ribbon{position:absolute;top:12px;right:-32px;transform:rotate(35deg);background:#a435f0;color:#fff;font-size:.65rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;padding:4px 40px;z-index:2;}
.udemy-kick{opacity:.7;}
.udemy-dim{opacity:.55;transition:opacity .35s ease;}
.udemy-coming .udemy-dim{opacity:.55;}
.udemy-coming .udemy-link{pointer-events:none;cursor:default;}
#udemy-panel.udemy-live .udemy-dim{opacity:1;}
#udemy-panel.udemy-live .udemy-ribbon{display:none;}
#udemy-panel.udemy-live .udemy-link{pointer-events:auto;cursor:pointer;}
#udemy-panel.udemy-live.udemy-strip{border-color:rgba(164,53,240,.6);box-shadow:0 8px 24px rgba(164,53,240,.15);}
@media(max-width:600px){.udemy-strip-inner{flex-direction:column;text-align:center;gap:12px;}.udemy-ribbon{right:-28px;font-size:.58rem;padding:3px 36px;}}
/* ===== Udemy tile inside trust-strip ===== */
.ts-tile-udemy{cursor:default;}

/* ===== Launching soon top strip on Reed + Udemy tiles ===== */
/* Strip-tiles: green bar pinned to top, then a horizontal logo+label row that
   matches the plain CSSC/Yell tiles so all four badges + labels line up. */
#trust-strip .ts-has-strip{overflow:hidden;padding:0;flex-direction:column;align-items:stretch;gap:0;justify-content:flex-start;}
#trust-strip .ts-strip{display:block;width:100%;text-align:center;font-size:.58rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:#08100c;background:#d8ff3a;padding:4px 0 3px;line-height:1;flex-shrink:0;}
/* the row below the strip replicates the default tile's flex layout */
#trust-strip .ts-has-strip > .ts-row{display:flex;align-items:center;gap:13px;padding:18px 24px;flex:1 1 auto;}
@media(max-width:560px){#trust-strip .ts-has-strip > .ts-row{justify-content:center;padding:16px 20px;}}
