:root {
  --red: #e8453c;
  --red-dark: #c73930;
  --navy: #2e4480;
  --navy-deep: #1e2f5e;
  --navy-mid: #354f96;
  --white: #ffffff;
  --mist: #f5f6fa;
  --border: #dde2ee;
  --text: #1e2f5e;
  --text-mid: #4a5c80;
  --text-soft: #8896b8;
  --teal: #1a8c8c;
  --teal-pale: #e3f5f5;
  --gold-pale: #fef6e8;
  --gold: #f0a630;
}

/* BREADCRUMB */
.breadcrumb-bar {
  background: var(--mist);
  border-bottom: 1px solid var(--border);
  padding: 10px 56px;
  font-size: 0.77rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-bar a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-bar a:hover {
  color: var(--red);
}

.bc-sep {
  opacity: 0.35;
}

.bc-cur {
  color: var(--text-mid);
  font-weight: 700;
}

/* HERO */
.course-header {
  background: var(--navy);
  padding: 0 56px;
  padding-top: 134px;
}

.chi {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1fr 364px;
  gap: 56px;
  align-items: end;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 69, 60, 0.18);
  border: 1px solid rgba(232, 69, 60, 0.38);
  color: #ffada9;
  padding: 5px 13px;
  border-radius: 20px;
  font-family: "Raleway", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.course-type-label {
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

h1.course-title {
  font-family: "Raleway", sans-serif;
  font-size: 2.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

h1.course-title em {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
}

.hero-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.74;
  max-width: 490px;
  margin-bottom: 26px;
  font-weight: 300;
}

.hero-pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.mpill {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* PAGE WRAP */
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 364px;
  gap: 56px;
  align-items: start;
}

.content-col {
  padding: 46px 0 80px;
}

.card-col {
  padding-top: 46px;
}

/* ENROLL CARD */
.enroll-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 40px rgba(30, 47, 94, 0.16);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.card-visual {
  width: 100%;
  height: 190px;
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-mid) 60%,
    #3b6aaa 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 25% 55%,
      rgba(232, 69, 60, 0.24),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.06),
      transparent 50%
    );
}

.cvt {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cvt-eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.cvt-name {
  font-family: "Raleway", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.cvt-name em {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
}

.card-body {
  padding: 22px;
}

.card-rows {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 2px 0;
}

.cr-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
}

.cr-text strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  line-height: 1.3;
}

.cr-text span {
  font-size: 0.73rem;
  color: var(--text-soft);
}

.btn-enroll {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  padding: 13px;
  border-radius: 8px;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-enroll:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-brochure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  text-decoration: none;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-brochure:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.card-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.71rem;
  color: var(--text-soft);
  display: flex;
  gap: 7px;
  line-height: 1.5;
}

/* SECTION SHARED */
.section {
  margin-bottom: 52px;
}

.eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.sec-title {
  font-family: "Raleway", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.sec-title em {
  font-style: normal;
  font-weight: 800;
  color: var(--navy);
}

.divider {
  width: 34px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 12px 0 20px;
}

/* OBJECTIVES */
.obj-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
}

.obj-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.obj-item:last-child {
  border-bottom: none;
}

.obj-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
}

.obj-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 600;
}

/* WHY */
.why-paras p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 10px;
}

.reality-dark {
  background: var(--navy);
  border-radius: 11px;
  padding: 22px 24px;
  margin-top: 20px;
}

.rd-label {
  font-family: "Raleway", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.rd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.rd-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.rx {
  color: #e8453c;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.insight {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
  margin-top: 18px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.65;
}

.insight strong {
  color: var(--gold);
}

/* SOLVES — two brand colors only */
.solves-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.solve-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 17px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.solve-row:hover {
  box-shadow: 0 2px 12px rgba(46, 68, 128, 0.1);
}

.solve-row:nth-child(odd) {
  background: #fdecea;
}

.solve-row:nth-child(odd):hover {
  border-color: var(--red);
}

.solve-row:nth-child(even) {
  background: #eaedfa;
}

.solve-row:nth-child(even):hover {
  border-color: var(--navy);
}

.s-num {
  font-family: "Raleway", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  min-width: 32px;
  line-height: 1;
}

.solve-row:nth-child(odd) .s-num {
  color: var(--red);
}

.solve-row:nth-child(even) .s-num {
  color: var(--navy);
}

.s-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.45;
}

/* TABS */
.tabs-row {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 24px;
  background: var(--white);
  border: none;
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.81rem;
  font-weight: 700;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s;
  border-right: 1.5px solid var(--border);
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.oc-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 13px 15px;
  transition: border-color 0.2s;
}

.oc-item:hover {
  border-color: var(--navy-mid);
}

.oc-chk {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.oc-item p {
  font-size: 0.835rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* MODULES */
.module-block {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 9px;
  transition: border-color 0.2s;
}

.module-block.open {
  border-color: var(--navy);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  background: var(--white);
  user-select: none;
  transition: background 0.15s;
}

.module-header:hover {
  background: var(--mist);
}

.m-badge {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--mist);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-soft);
  flex-shrink: 0;
  transition: all 0.2s;
}

.module-block.open .m-badge {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.m-text {
  flex: 1;
}

.m-text strong {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.3;
  margin-bottom: 2px;
}

.m-text span {
  font-size: 0.73rem;
  color: var(--text-soft);
}

.m-chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-soft);
  transition: transform 0.25s;
}

.module-block.open .m-chev {
  transform: rotate(180deg);
}

.module-body {
  display: none;
  padding: 0 18px 16px;
  border-top: 1px solid var(--border);
  background: var(--mist);
}

.module-block.open .module-body {
  display: block;
}

.module-body-inner {
  padding-top: 12px;
}

.lesson-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.81rem;
  color: var(--text-mid);
}

.lesson-row:last-child {
  border-bottom: none;
}

.li-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── WHO SHOULD ATTEND — illustrated cards ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.who-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  cursor: default;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(46, 68, 128, 0.13);
  border-color: transparent;
}

.who-card-illustration {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.wc-1 .who-card-illustration {
  background: linear-gradient(145deg, #1e2f5e, #2e4480);
}

.wc-2 .who-card-illustration {
  background: linear-gradient(145deg, #c73930, #e8453c);
}

.wc-3 .who-card-illustration {
  background: linear-gradient(145deg, #1e2f5e, #354f96);
}

.wc-4 .who-card-illustration {
  background: linear-gradient(145deg, #c73930, #e8453c);
}

.who-card-illustration svg {
  width: 58px;
  height: 58px;
  position: relative;
  z-index: 1;
}

.who-card-illustration::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.who-card-title {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.who-card-title h4 {
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.who-card-body {
  padding: 11px 14px 15px;
  background: var(--white);
}

.who-card-body p {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* TRANSFORM */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.t-col {
  border-radius: 11px;
  padding: 20px;
  position: relative;
}

.t-col.before {
  background: var(--mist);
  border: 1.5px solid var(--border);
}

.t-col.after {
  background: var(--navy);
}

.t-label {
  font-family: "Raleway", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.t-col.before .t-label {
  color: var(--text-soft);
}

.t-col.after .t-label {
  color: rgba(255, 173, 169, 0.85);
}

.t-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t-list li {
  font-size: 0.82rem;
  line-height: 1.5;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

.t-col.before .t-list li {
  color: var(--text-mid);
}

.t-col.after .t-list li {
  color: rgba(255, 255, 255, 0.82);
}

.t-col.before .t-list li::before {
  content: "—";
  color: var(--text-soft);
  flex-shrink: 0;
}

.t-col.after .t-list li::before {
  content: "✓";
  color: #ffada9;
  flex-shrink: 0;
  font-weight: 800;
}

.t-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* CTA */
.cta-strip {
  background: var(--navy);
  padding: 68px 56px;
  text-align: center;
}

.cta-strip h2 {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cta-strip h2 em {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
  font-size: 0.93rem;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cta-red {
  padding: 13px 34px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}

.cta-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.cta-outline {
  padding: 11px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-outline:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 960px) {
  .page-wrap,
  .chi {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .course-header,
  .breadcrumb-bar,
  nav,
  .topbar,
  .cta-strip,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .enroll-card {
    position: static;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .transform-grid {
    grid-template-columns: 1fr;
  }

  .t-arrow {
    display: none;
  }

  h1.course-title {
    font-size: 2rem;
  }

  .obj-grid,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}
