/* ================================================
   SHC Sales Page (Homepage) Styles
   Loaded via functions.php on page-template-shc-home.php
   ================================================ */

/* ── DIVI WRAPPER OVERRIDES ── */
body,
body.et_divi_theme,
body.et-tb-has-header {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#page-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
#et-main-area {
  padding-top: 0 !important;
}
#page-container,
#et-main-area {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow-x: hidden;
}

  :root {
    --navy:       #1B2A4A;
    --navy-deep:  #111c33;
    --teal:       #1D6E6B;
    --teal-light: #EAF4F3;
    --coral:      #C44B35;
    --coral-bg:   #FDF0ED;
    --gold:       #9C6B1E;
    --gold-bg:    #FEF9EE;
    --slate:      #4A5568;
    --grey-lt:    #F7F8FA;
    --grey-mid:   #CBD5E0;
    --white:      #FFFFFF;
    --ink:        #1A202C;
    --serif:      'DM Serif Display', Georgia, serif;
    --sans:       'DM Sans', system-ui, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    font-size: 17px;
  }

  /* ── UTILITIES ──────────────────────────────────────────────── */
  .container { max-width: 820px; margin: 0 auto; padding: 0 28px; }
  .container-wide { max-width: 1060px; margin: 0 auto; padding: 0 28px; }

  .serif { font-family: var(--serif); }
  .teal  { color: var(--teal); }
  .coral { color: var(--coral); }
  .navy  { color: var(--navy); }
  .gold  { color: var(--gold); }

  /* ── TOP BAR ─────────────────────────────────────────────────── */
  .topbar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.75);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.02em;
  }
  .topbar strong { color: #fff; }

  /* ── NAVIGATION ──────────────────────────────────────────────── */
  nav {
    background: var(--white);
    border-bottom: 1px solid #e8ecf0;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--navy);
    line-height: 1.2;
  }
  .nav-logo span { display: block; font-family: var(--sans); font-size: 10px; color: var(--slate); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
  .nav-cta {
    background: var(--coral);
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: #a83d2c; }

  /* ── HERO ────────────────────────────────────────────────────── */
  .hero {
    background: var(--navy);
    background-image:
      radial-gradient(ellipse at 70% 50%, rgba(29,110,107,0.25) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(196,75,53,0.12) 0%, transparent 50%);
    color: white;
    padding: 96px 28px 80px;
    text-align: center;
  }

  .hero-eyebrow {
    display: inline-block;
    background: rgba(29,110,107,0.3);
    border: 1px solid rgba(29,110,107,0.5);
    color: #7dd8d5;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.15;
    color: white;
    max-width: 760px;
    margin: 0 auto 20px;
  }

  .hero h1 em {
    font-style: italic;
    color: #7dd8d5;
  }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.65;
  }

  .hero-sub strong { color: rgba(255,255,255,0.95); }

  .hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }

  .btn-primary {
    background: var(--coral);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(196,75,53,0.4);
  }
  .btn-primary:hover { background: #a83d2c; transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    display: inline-block;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: white; }

  .hero-proof {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .proof-item {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
  }
  .proof-item strong { display: block; font-size: 22px; font-family: var(--serif); color: white; margin-bottom: 2px; }

  /* ── RECOGNITION BAND ────────────────────────────────────────── */
  .recognition {
    background: var(--teal-light);
    border-top: 3px solid var(--teal);
    padding: 28px;
    text-align: center;
  }
  .recognition p {
    font-size: 15px;
    color: var(--teal);
    font-style: italic;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ── SECTIONS ────────────────────────────────────────────────── */
  section { padding: 80px 28px; }
  section.alt { background: var(--grey-lt); }
  section.dark { background: var(--navy); color: white; }
  section.navy-soft { background: #f0f3f8; }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
    display: block;
  }
  section.dark .section-label { color: #7dd8d5; }

  h2.section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
  }
  section.dark h2.section-title { color: white; }

  .section-intro {
    font-size: 17px;
    color: var(--slate);
    max-width: 640px;
    line-height: 1.75;
    margin-bottom: 44px;
  }
  section.dark .section-intro { color: rgba(255,255,255,0.7); }

  /* ── REALITY SECTION ─────────────────────────────────────────── */
  .reality-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 44px;
  }
  @media (max-width: 640px) { .reality-split { grid-template-columns: 1fr; } }

  .reality-card {
    background: white;
    border-radius: 12px;
    padding: 28px 24px;
    border-left: 4px solid var(--coral);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .reality-card .rc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
  }
  .reality-card p { color: var(--slate); font-size: 15.5px; line-height: 1.7; }

  /* ── CLINICAL VOICE BLOCK ────────────────────────────────────── */
  .clinical-voice {
    background: var(--navy);
    border-radius: 12px;
    padding: 36px 40px;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
  }
  .clinical-voice::before {
    content: '"';
    font-family: var(--serif);
    font-size: 160px;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
  }
  .clinical-voice p {
    font-family: var(--serif);
    font-size: clamp(20px, 2.5vw, 26px);
    color: white;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }
  .clinical-voice p em { color: #7dd8d5; font-style: italic; }

  /* ── THE SHIFT ───────────────────────────────────────────────── */
  .shift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  @media (max-width: 700px) { .shift-grid { grid-template-columns: 1fr; } }

  .shift-card {
    background: white;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border-top: 3px solid var(--teal);
  }
  .shift-num {
    font-family: var(--serif);
    font-size: 40px;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 12px;
  }
  .shift-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .shift-card p { font-size: 14.5px; color: var(--slate); line-height: 1.65; }

  /* ── COURSE MODULES ──────────────────────────────────────────── */
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 40px;
  }
  @media (max-width: 640px) { .modules-grid { grid-template-columns: 1fr; } }

  .module-item {
    background: white;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border: 1px solid #e8ecf4;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .module-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); transform: translateY(-1px); }

  .module-num {
    background: var(--navy);
    color: white;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 600;
    min-width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .module-text strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 3px; }
  .module-text span { font-size: 13px; color: var(--slate); line-height: 1.5; }

  .module-new .module-num { background: var(--coral); }
  .module-new { border-color: rgba(196,75,53,0.2); }
  .new-badge {
    display: inline-block;
    background: var(--coral);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1px 7px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
  }

  /* ── SIMULATOR SECTION ───────────────────────────────────────── */
  .sim-wrap {
    background: var(--navy);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 44px;
  }
  .sim-header {
    background: var(--teal);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .sim-dot { width: 10px; height: 10px; border-radius: 50%; }
  .sim-header-text { color: white; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; }
  .sim-body { padding: 36px 32px; }
  .sim-body p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
  .sim-body p strong { color: white; }

  .sim-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
  }
  @media (max-width: 600px) { .sim-cases { grid-template-columns: 1fr; } }

  .sim-case {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
  }
  .sim-case::before { content: '▸'; color: var(--teal); font-size: 12px; flex-shrink: 0; }

  .sim-feedback {
    background: rgba(29,110,107,0.2);
    border: 1px solid rgba(29,110,107,0.4);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
  }
  .sim-feedback p { color: rgba(255,255,255,0.85); font-size: 14.5px; margin: 0; }
  .sim-feedback strong { color: #7dd8d5; }

  /* ── BENEFITS ────────────────────────────────────────────────── */
  .benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  @media (max-width: 640px) { .benefits-list { grid-template-columns: 1fr; } }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  }
  .benefit-icon {
    width: 36px;
    height: 36px;
    background: var(--teal-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
  }
  .benefit-item h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .benefit-item p { font-size: 13.5px; color: var(--slate); line-height: 1.6; }

  /* ── WHO THIS IS FOR ─────────────────────────────────────────── */
  .who-list { margin-top: 32px; }
  .who-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--grey-mid);
    align-items: flex-start;
  }
  .who-item:last-child { border-bottom: none; }
  .who-check {
    width: 24px;
    height: 24px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: white;
    font-size: 12px;
    font-weight: 700;
  }
  .who-item p { font-size: 16px; color: var(--slate); line-height: 1.65; }
  .who-item p strong { color: var(--navy); }

  /* ── AUTHORITY ───────────────────────────────────────────────── */
  .authority-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 52px;
    align-items: start;
  }
  @media (max-width: 760px) { .authority-wrap { grid-template-columns: 1fr; } }

  .authority-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }
  .cred-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--teal-light);
    border-radius: 8px;
    border-left: 3px solid var(--teal);
  }
  .cred-item p { font-size: 14.5px; color: var(--navy); line-height: 1.55; }

  .authority-proof {
    background: var(--navy);
    border-radius: 14px;
    padding: 28px 24px;
    color: white;
  }
  .proof-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7dd8d5;
    margin-bottom: 14px;
    display: block;
  }
  .authority-proof p { font-size: 14.5px; color: rgba(255,255,255,0.75); line-height: 1.7; }
  .authority-proof strong { color: white; }
  .journal-tag {
    display: inline-block;
    background: rgba(29,110,107,0.3);
    border: 1px solid rgba(29,110,107,0.5);
    color: #7dd8d5;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-top: 14px;
    letter-spacing: 0.05em;
  }

  /* ── GUARANTEE ───────────────────────────────────────────────── */
  .guarantee-wrap {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 36px;
    align-items: center;
    background: var(--teal-light);
    border: 2px solid var(--teal);
    border-radius: 16px;
    padding: 36px 40px;
  }
  @media (max-width: 600px) { .guarantee-wrap { grid-template-columns: 1fr; } }

  .guarantee-badge {
    text-align: center;
    background: var(--teal);
    border-radius: 50%;
    width: 116px;
    height: 116px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.5;
    margin: 0 auto;
    padding: 8px;
  }
  .guarantee-badge span { font-family: var(--serif); font-size: 26px; display: block; margin-bottom: 4px; line-height: 1; }

  .guarantee-text h3 { font-family: var(--serif); font-size: 24px; color: var(--navy); margin-bottom: 12px; }
  .guarantee-text p { font-size: 15.5px; color: var(--slate); line-height: 1.75; }

  /* ── PRICING ─────────────────────────────────────────────────── */
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 44px;
  }
  @media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

  .pricing-card {
    background: white;
    border-radius: 14px;
    padding: 36px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 2px solid #e8ecf4;
    position: relative;
  }
  .pricing-card.featured {
    border-color: var(--teal);
    box-shadow: 0 8px 40px rgba(29,110,107,0.15);
  }
  .featured-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
  }
  .pricing-card h3 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin-bottom: 6px; }
  .price-display { font-family: var(--serif); font-size: 48px; color: var(--navy); line-height: 1; margin: 16px 0 6px; }
  .price-display sup { font-size: 22px; vertical-align: top; margin-top: 10px; font-family: var(--sans); }
  .price-note { font-size: 13px; color: var(--slate); margin-bottom: 24px; }
  .price-includes { list-style: none; margin-bottom: 28px; }
  .price-includes li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 14.5px;
    color: var(--slate);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .price-includes li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .price-includes li:last-child { border-bottom: none; }

  .btn-enrol {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-enrol-primary { background: var(--coral); color: white; }
  .btn-enrol-primary:hover { background: #a83d2c; }
  .btn-enrol-secondary { background: var(--teal-light); color: var(--teal); border: 1.5px solid var(--teal); }
  .btn-enrol-secondary:hover { background: var(--teal); color: white; }

  /* ── FINAL CTA ───────────────────────────────────────────────── */
  .final-cta {
    background: var(--navy);
    background-image: radial-gradient(ellipse at 50% 0%, rgba(29,110,107,0.3) 0%, transparent 60%);
    color: white;
    text-align: center;
    padding: 100px 28px;
  }
  .final-cta h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 46px);
    color: white;
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.2;
  }
  .final-cta h2 em { color: #7dd8d5; font-style: italic; }
  .final-cta p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

  /* ── FOOTER ──────────────────────────────────────────────────── */
  footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 28px;
    font-size: 12.5px;
  }

  /* ── HORIZONTAL RULE ─────────────────────────────────────────── */
  .section-rule {
    width: 60px;
    height: 3px;
    background: var(--teal);
    margin-bottom: 28px;
    border-radius: 2px;
  }
  section.dark .section-rule { background: #7dd8d5; }

  
/* ── MOBILE FIXES ─────────────────────────────────────────── */

/* Global overflow fix - stops page floating right */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* About section - stack on mobile */
@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .about-creds-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Testimonials - single column on mobile */
@media (max-width: 700px) {
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
  .testimonial-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Sim cases - single column on mobile */
@media (max-width: 600px) {
  .sim-cases {
    grid-template-columns: 1fr !important;
  }
  .sim-body {
    padding: 18px 2px !important;
  }
  .sim-header {
    padding: 14px 6px !important;
  }
}

/* Benefits - single column on mobile */
@media (max-width: 640px) {
  .benefits-list {
    grid-template-columns: 1fr !important;
  }
}

/* Modules - single column on mobile */
@media (max-width: 640px) {
  .modules-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Pricing - single column on mobile */
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Reality split - single column on mobile */
@media (max-width: 640px) {
  .reality-split {
    grid-template-columns: 1fr !important;
  }
}

/* Shift grid - single column on mobile */
@media (max-width: 700px) {
  .shift-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Authority section - single column on mobile */
@media (max-width: 760px) {
  .authority-wrap {
    grid-template-columns: 1fr !important;
  }
}

/* Nav - constrain on mobile */
@media (max-width: 600px) {
  nav { padding: 12px 16px; }
  .nav-logo { font-size: 13px; }
  .nav-logo span { font-size: 9px; letter-spacing: 0.08em; }
  .nav-cta {
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    min-width: auto;
  }
}

/* Section padding reduction on mobile */
@media (max-width: 600px) {
  section {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .container, .container-wide {
    padding-left: 2px !important;
    padding-right: 2px !important;
    max-width: none !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .btn-primary,
  .btn-ghost {
    width: 100% !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    padding: 16px 20px !important;
    box-sizing: border-box !important;
  }
  .final-cta .btn-primary {
    width: auto !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    padding: 16px 32px !important;
  }
  /* All nested card/box padding tightened */
  .benefit-item {
    padding: 14px 10px !important;
  }
  .guarantee-wrap {
    padding: 20px 10px !important;
  }
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
  .testimonial-card {
    padding: 20px 12px !important;
  }
  .cred-item {
    padding: 10px !important;
  }
  .authority-proof {
    padding: 18px 10px !important;
  }
}

/* Sim cases wider on mobile */
@media (max-width: 600px) {
  .sim-wrap { border-radius: 10px; }
  .pricing-card-wrap {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .pricing-header {
    padding: 24px 10px !important;
  }
  .pricing-checklist {
    padding: 24px 10px !important;
  }
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero > * { animation: fadeUp 0.6s ease both; }
  .hero .hero-eyebrow { animation-delay: 0.1s; }
  .hero h1              { animation-delay: 0.2s; }
  .hero .hero-sub       { animation-delay: 0.35s; }
  .hero-cta-group       { animation-delay: 0.45s; }
  .hero-proof           { animation-delay: 0.55s; }

/* ── MEDIA STRIP ── */
.media-strip-section {
  padding: 40px 0;
  background: #F7F8FA;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  overflow: hidden;
}
.media-strip-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #718096;
  margin-bottom: 32px;
  display: block;
  text-align: center;
}
.media-logos-desktop {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 0 20px;
}
.media-logo-card {
  background: white;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 140px;
  height: 100px;
  transition: box-shadow 0.3s, transform 0.3s, filter 0.3s, opacity 0.3s;
  filter: grayscale(1);
  opacity: 0.65;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
}
.media-logo-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
  filter: grayscale(0);
  opacity: 1;
}
.media-logo-card img {
  max-height: 64px;
  max-width: 110px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.media-logo-card.logo-wide       { max-width: 160px; }
.media-logo-card.logo-wide img   { max-width: 130px; max-height: 64px; }
.media-logo-card.logo-smh        { max-width: 160px; }
.media-logo-card.logo-smh img    { max-height: 64px; max-width: 140px; width: 100%; object-fit: contain; }
.media-logo-card.logo-livejasmin { max-width: 160px; }
.media-logo-card.logo-livejasmin img { max-height: 44px; max-width: 140px; width: 100%; }
.media-logos-mobile { display: none !important; }
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  background: white;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 90px;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.7;
}
.marquee-item img {
  max-height: 56px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.marquee-item.logo-smh img       { max-height: 56px; max-width: 120px; object-fit: contain; }
.marquee-item.logo-livejasmin img { max-height: 36px; max-width: 110px; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .media-logos-desktop { display: none !important; }
  .media-logos-mobile  { display: block !important; overflow: hidden; padding: 0; }
}

/* ── MEDIA LOGOS ANIMATION ── */
.media-logos { animation: scroll-logos 20s linear infinite; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-30px); }
  100% { transform: translateX(0); }
}
.media-item {
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s, transform 0.3s;
  cursor: default;
}
.media-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.08);
  color: #1D6E6B !important;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* ── SCROLL REVEAL ── */
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Sticky nav shadow on scroll */
nav { transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

/* Smooth hover on module items */
.module-item { transition: transform 0.2s, box-shadow 0.2s; }
