f:root {
      --blue-900: #0f2747;
      --blue-800: #173963;
      --blue-700: #1d4f86;
      --blue-100: #eaf1f8;
      --gold-500: #c6922b;
      --gold-600: #a7771b;
      --text: #1e2a35;
      --muted: #5f6f7f;
      --border: #d9e3ed;
      --bg: #ffffff;
      --bg-soft: #f6f9fc;
      --max: 1120px;
      --radius: 18px;
      --shadow: 0 10px 30px rgba(15,39,71,.08);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Roboto', Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.55;
    }

    img { max-width: 100%; display: block; height: auto; }
    a { color: inherit; }

    .container {
      width: min(94%, var(--max));
      margin: 0 auto;
    }

    .site-header {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 10px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      text-decoration: none;
    }

    .brand-mark {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #fff;
      display: grid;
      place-items: center;
      overflow: hidden;
      flex: 0 0 auto;
      box-shadow: var(--shadow);
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-copy .title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue-900);
      line-height: 1.2;
    }

    .brand-copy .subtitle {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.2;
      margin-top: 4px;
    }

    .nav-toggle {
      display: none;
      background: var(--blue-800);
      color: #fff;
      border: 0;
      border-radius: 10px;
      padding: 10px 14px;
      font-weight: 700;
      cursor: pointer;
    }

    .main-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .main-nav a {
      text-decoration: none;
      color: var(--text);
      font-size: 1.1rem;
      font-weight: 500;
    }

    .main-nav a:hover { color: var(--blue-700); }

    .btn {
      display: inline-block;
      text-decoration: none;
      border-radius: 999px;
      padding: 13px 22px;
      font-weight: 700;
      font-size: 1rem;
      border: 0;
      cursor: pointer;
      transition: transform .15s ease, background-color .15s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: var(--gold-500);
      color: #fff;
      box-shadow: var(--shadow);
      border: 1px solid var(--gold-600);
    }

    .btn-primary:hover { background: var(--gold-600); }

    .btn-secondary {
      background: #fff;
      color: var(--blue-800);
      border: 1px solid rgba(255,255,255,.65);
    }

    .hero {
  position: relative;
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,39,71,.85) 0%,
    rgba(23,57,99,.75) 50%,
    rgba(23,57,99,.60) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
      gap: 34px;
      align-items: center;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: .8rem;
      font-weight: 700;
      color: #f2d28b;
      margin-bottom: 12px;
    }

    .hero h1 {
      margin: 0 0 16px;
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.05;
      font-weight: 700;
      
    }

    .hero p.lead {
      font-size: 1.28rem;
      line-height: 1.55;
      color: #f3f6fb;
      max-width: 700px;
      margin: 0 0 26px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-card {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 22px;
      padding: 26px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(6px);
    }

    .hero-card h2 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.35rem;
      line-height: 1.2;
    }

    .hero-card p {
      margin: 0 0 10px;
      color: #eef3f8;
    }

    .hero-card p:last-child { margin-bottom: 0; }

    .section {
      padding: 76px 0;
    }

    .section-soft { background: var(--bg-soft); }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 38px;
      align-items: center;
    }

    .image-panel {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .placeholder-image {
      min-height: 360px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 28px;
      color: var(--blue-800);
      font-weight: 700;
      background:
        linear-gradient(rgba(255,255,255,.25), rgba(255,255,255,.25)),
        linear-gradient(135deg, #dce8f4, #c4d5e7);
    }

    .copy-block h2 {
      margin: 0 0 14px;
      color: var(--blue-900);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.14;
      font-weight: 700;
    }

    .copy-block h3 {
      margin: 0 0 14px;
      color: var(--blue-900);
      font-size: 1.65rem;
      line-height: 1.2;
    }

    .copy-block p {
      margin: 0 0 14px;
      font-size: 1.18rem;
    }

    .copy-block p:last-child { margin-bottom: 0; }

    .section-head {
      max-width: 820px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .section-head h2 {
      margin: 0 0 12px;
      color: var(--blue-900);
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      line-height: 1.14;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .step-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .step-number {
      display: inline-block;
      margin-bottom: 12px;
      font-size: .82rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold-600);
    }

    .step-card h3 {
      margin: 0 0 12px;
      color: var(--blue-900);
      font-size: 1.32rem;
      line-height: 1.22;
    }

    .step-card p {
      margin: 0 0 16px;
      color: var(--text);
      font-size: 1.18rem;
    }

    .step-card a {
      color: var(--blue-700);
      font-weight: 700;
      text-decoration: none;
    }

    .step-card a:hover { text-decoration: underline; }

    .highlight-box {
      max-width: 980px;
      margin: 0 auto;
      background: #fff;
      border: 1px solid var(--border);
      border-left: 8px solid var(--gold-500);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .highlight-box p {
      margin: 0 0 14px;
      font-size: 1.5rem;
    }

    .highlight-box p:last-child { margin-bottom: 0; }

    .closing {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }

    .closing p {
      margin: 0 0 14px;
      font-size: 1.18rem;
    }

    .closing strong { color: var(--blue-900); }

    .footer {
      background: linear-gradient(90deg, rgba(15,39,71,.94) 0%, rgba(23,57,99,.90) 48%, rgba(23,57,99,.70) 100%);
      color: #e7eef7;
      padding: 46px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 28px;
    }

    .footer h3 {
      margin: 0 0 12px;
      color: #fff;
      font-size: 1.02rem;
    }

    .footer p,
    .footer li,
    .footer a {
      color: #ffffff;
      text-decoration: none;
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer li { margin-bottom: 8px; }

    .footer a:hover {
      text-decoration: none;
      color: #ffffff;
    }
    .highlight-media {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 20px;
      align-items: center;
    }

    .back-to-top {
      margin-top: 20px;
    }

    #training {
      scroll-margin-top: 120px;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .split,
      .steps,
      .footer-grid,
      .highlight-media {
        grid-template-columns: 1fr;
      }

      .hero-content {
        position: relative;
        background: linear-gradient(
          90deg,
          rgba(15,39,71,.95) 0%,
          rgba(23,57,99,.92) 100%
        );
        padding: 56px 0;
      }

      .hero-image {
        aspect-ratio: 16 / 9;
      }

      .hero-card {
        max-width: 620px;
      }
    }

    @media (max-width: 760px) {
      .nav-toggle {
        display: inline-block;
      }

      .main-nav {
        display: none;
        width: 100%;
      }

      .main-nav.open {
        display: block;
      }

      .header-inner {
        flex-wrap: wrap;
      }

      .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 10px;
        gap: 12px;
      }

      .brand-copy .title {
        font-size: 1rem;
      }

      .brand-copy .subtitle {
        font-size: .78rem;
      }

      .brand-mark {
        width: 46px;
        height: 46px;
      }

      .hero-image {
        aspect-ratio: 4 / 3;
      }

      .hero-content {
        padding: 38px 0;
      }

      .hero h1 {
        font-size: 2.15rem;
      }

      .hero p.lead {
        font-size: 1.05rem;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
        text-align: center;
      }

      .section {
        padding: 44px 0;
      }

      .copy-block p,
      .step-card p,
      .closing p {
        font-size: 1.05rem;
      }

      .highlight-box {
        padding: 22px;
      }

      .highlight-box p {
        font-size: 1.15rem;
      }

      .placeholder-image {
        min-height: 280px;
      }
      
      /* Step/video pages hero */
body .hero > .container.hero-grid {
  padding: 84px 0 74px;
}

body .hero:not(:has(.hero-image)) {
  background:
    linear-gradient(90deg, rgba(15,39,71,.94) 0%, rgba(23,57,99,.90) 48%, rgba(23,57,99,.70) 100%),
    url('/images/mens-conference-2.jpg') center/cover no-repeat;
  color: #fff;
}

.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 28px;
}

.video-card-body {
  padding: 28px;
}

.video-card h3 {
  margin: 0 0 14px;
  color: var(--blue-900);
  font-size: 1.6rem;
  line-height: 1.22;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.resource-links a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: none;
}

.checklist-box {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 8px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.question-list {
  margin: 18px 0 0;
  padding-left: 24px;
}

.question-list li {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

@media (max-width: 760px) {
  body .hero > .container.hero-grid {
    padding: 48px 0;
  }

  .video-card-body {
    padding: 22px;
  }

  .video-card h3 {
    font-size: 1.25rem;
  }

  .checklist-box {
    padding: 22px;
  }
}

.video-card {
  border: 10px solid red !important;
}
.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 28px;
}

.video-card-body {
  padding: 28px;
}

.video-card h3 {
  margin: 0 0 14px;
  color: var(--blue-900);
  font-size: 1.6rem;
  line-height: 1.22;
}

.video-card p {
  margin: 0 0 14px;
  font-size: 1.08rem;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b0f16;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.resource-links a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: none;
}

.resource-links a:hover {
  text-decoration: underline;
}

.checklist-box {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 8px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.checklist-box h3 {
  margin: 0 0 16px;
  color: var(--blue-900);
  font-size: 1.55rem;
}

.question-list {
  margin: 18px 0 0;
  padding-left: 24px;
}

.question-list li {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

/* =========================================
   MOBILE FIXES FOR STEP PAGES
========================================= */

@media (max-width: 980px) {

  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {

  .video-card-body {
    padding: 22px;
  }

  .video-card h3 {
    font-size: 1.25rem;
  }

  .checklist-box {
    padding: 22px;
  }

  .question-list {
    padding-left: 18px;
  }

.header-inner {
  flex-wrap: wrap;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .main-nav a {
    font-size: 0.95rem;
  }

  .main-nav ul {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 10px;
  }
/* Hero style for pages that do NOT use hero-image / hero-content structure */
.hero > .container.hero-grid {
  padding: 84px 0 74px;
}

.hero .hero-card img {
  border-radius: 18px;
}

@media (max-width: 980px) {
  .hero > .container.hero-grid {
    padding: 64px 0;
  }
}

@media (max-width: 760px) {
  .hero > .container.hero-grid {
    padding: 44px 0;
  }

  .hero .hero-card {
    padding: 14px;
  }

}