.site-shell {
  min-height: 100vh;
  background: var(--page);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  background: #020381;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.utility-bar p {
  color: #e9eef8;
  margin: 0;
}

.utility-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #ffba00;
  font-weight: 700;
  text-decoration: none;
}

.utility-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(2, 3, 129, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 122px;
  height: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
}

.primary-nav a {
  color: #2f343b;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--teal);
}

.primary-nav .nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--coral);
  border-radius: 6px;
}

.primary-nav .nav-cta:hover {
  color: #ffffff;
  background: #cf2e2e;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #020381;
  background: #eef5fb;
  border: 1px solid #d8e4ef;
  border-radius: 6px;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  min-height: min(760px, 78vh);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #020381;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 3, 129, 0.96) 0%, rgba(23, 31, 71, 0.88) 52%, rgba(34, 40, 72, 0.78) 100%),
    url('/assets/co-working.jpeg');
  background-position: center;
  background-size: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 430px);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding: clamp(70px, 11vh, 118px) 0;
}

.hero-inner h1 {
  max-width: 680px;
  margin: 14px 0 20px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 650px;
  color: #e9eef8;
  font-size: 20px;
  line-height: 1.55;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: #ffba00;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  color: #ffffff;
  background: var(--coral);
}

.button-primary:hover {
  color: #ffffff;
  background: #cf2e2e;
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-secondary:hover {
  color: #020381;
  background: #ffffff;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 16px;
  max-width: 680px;
  margin-top: 44px;
}

.highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
}

.highlight svg {
  grid-row: span 2;
  width: 22px;
  height: 22px;
  color: #ffba00;
}

.highlight strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.highlight span {
  color: #e9eef8;
  font-size: 14px;
  line-height: 1.25;
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 251, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.hero-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce3ef;
}

.hero-panel-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel-header span svg {
  width: 18px;
  height: 18px;
}

.hero-panel-header strong {
  max-width: 170px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.04;
  text-align: right;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stat-grid div {
  min-height: 122px;
  padding: 13px;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 7px;
}

.hero-stat-grid span,
.hero-stat-grid small {
  display: block;
}

.hero-stat-grid span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stat-grid strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.08;
}

.hero-stat-grid small {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-bundle-card {
  padding: 20px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 186, 0, 0.18), rgba(46, 162, 204, 0.22)),
    #020381;
  border-radius: 8px;
}

.hero-bundle-card p {
  margin: 0 0 14px;
  color: #ffba00;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-bundle-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-bundle-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #f2f5ff;
  font-weight: 700;
  line-height: 1.35;
}

.hero-bundle-card li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: #ffba00;
}

.hero-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.hero-path span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #020381;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.hero-path svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
}

.logo-strip {
  padding: 26px 0;
  background: #ffffff;
  border-bottom: 1px solid #dce3ef;
}

.logo-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-inner span {
  flex: 0 0 auto;
  color: #5f6670;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.customer-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(66px, 1fr));
  gap: 14px;
  width: 100%;
  align-items: center;
}

.customer-logos img {
  width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
}

.section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.product-section {
  background: #f7f8fb;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 680px;
  margin-bottom: 30px;
}

.section-heading h2,
.course-copy h2,
.teams-copy h2,
.testimonial-intro h2,
.faq-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.04;
}

.section-heading p,
.course-copy p,
.teams-copy p,
.testimonial-intro p,
.faq-intro p {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.65;
}

.bundle-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.builder-panel,
.bundle-summary {
  border: 1px solid #dce3ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(2, 3, 129, 0.07);
}

.builder-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 32px);
}

.builder-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.builder-step > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #020381;
  border-radius: 999px;
  font-weight: 900;
}

.builder-step h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.builder-step p {
  margin: 0;
  color: #4b5563;
}

.addon-heading {
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid #e1e6ef;
}

.product-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-option {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  min-height: 144px;
  align-items: center;
  padding: 18px;
  color: var(--ink);
  background: #f7f8fb;
  border: 2px solid #dce3ef;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.product-option:hover,
.product-option.is-selected {
  border-color: var(--coral);
  background: #ffffff;
}

.product-option img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e1e6ef;
  border-radius: 8px;
}

.product-option strong,
.product-option small {
  display: block;
}

.product-option strong {
  font-size: 18px;
  line-height: 1.24;
}

.product-option small {
  margin-top: 8px;
  color: var(--coral);
  font-size: 17px;
  font-weight: 900;
}

.addon-list {
  display: grid;
  gap: 12px;
}

.addon-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 16px;
  background: #f7f8fb;
  border: 2px solid #dce3ef;
  border-radius: 8px;
  cursor: pointer;
}

.addon-option.is-selected {
  border-color: var(--coral);
  background: #ffffff;
}

.addon-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
}

.addon-option strong,
.addon-option small {
  display: block;
}

.addon-option strong {
  color: var(--ink);
  line-height: 1.25;
}

.addon-option small {
  margin-top: 4px;
  color: #4b5563;
  line-height: 1.35;
}

.addon-option b {
  color: var(--coral);
  font-size: 18px;
  white-space: nowrap;
}

.bundle-summary {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 30px);
}

.summary-logo {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  background: #f7f8fb;
  border: 1px solid #dce3ef;
  border-radius: 8px;
}

.summary-logo img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.bundle-summary h3 {
  margin: -8px 0 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.08;
}

.bundle-summary p {
  color: #4b5563;
  line-height: 1.55;
}

.bundle-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bundle-summary li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #2f343b;
  font-weight: 700;
  line-height: 1.35;
}

.bundle-summary li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--teal);
}

.summary-lines {
  display: grid;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid #e1e6ef;
  border-bottom: 1px solid #e1e6ef;
}

.summary-lines div,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.summary-lines span,
.summary-total span {
  color: #4b5563;
  line-height: 1.35;
}

.summary-lines strong {
  color: var(--ink);
  white-space: nowrap;
}

.summary-total strong {
  color: var(--coral);
  font-size: 42px;
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-card,
.step-card,
.support-card,
.testimonial-card,
.faq-item,
.quote-form {
  border: 1px solid #dce3ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(2, 3, 129, 0.07);
}

.product-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 34px);
}

.product-card h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.08;
}

.product-card p {
  color: #4b5563;
  line-height: 1.65;
}

.product-eyebrow {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-block {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid #e1e6ef;
  border-bottom: 1px solid #e1e6ef;
}

.price-block span {
  color: #6b7280;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-block strong {
  color: var(--ink);
  font-size: 40px;
  line-height: 1;
}

.product-card ul,
.curriculum-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card li,
.curriculum-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2f343b;
  line-height: 1.45;
}

.product-card li svg,
.curriculum-list li svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--teal);
}

.button-card {
  width: fit-content;
  color: #ffffff;
  background: var(--coral);
}

.button-card:hover {
  color: #ffffff;
  background: var(--teal);
}

.button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.checkout-message {
  margin: -6px 0 0;
  color: #3c4a5f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.checkout-message a {
  color: var(--coral);
}

.checkout-message.is-error {
  color: #a61b1b;
}

/* Alternate selectable template: Streamlined Catalog */
body.template-streamlined {
  --page: #f4f6f8;
  --ink: #111827;
  --teal: #247fa6;
  --coral: #e1251b;
  --gold: #f2b705;
  --soft: #e9eef3;
  background: #f4f6f8;
}

.template-streamlined .site-shell {
  background: #f4f6f8;
}

.template-streamlined .utility-bar {
  min-height: 38px;
  justify-content: flex-end;
  padding-inline: clamp(18px, 4vw, 56px);
  background: #111827;
  font-size: 13px;
}

.template-streamlined .utility-bar a {
  color: #f2b705;
}

.template-streamlined .site-header {
  min-height: 84px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #d7dfeb;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.template-streamlined .brand img {
  width: 148px;
}

.template-streamlined .primary-nav a {
  color: #344054;
}

.template-streamlined .primary-nav a:hover {
  color: #020381;
}

.template-streamlined .primary-nav .nav-cta {
  color: #ffffff;
  background: #020381;
}

.template-streamlined .primary-nav .nav-cta:hover {
  background: #e1251b;
}

.template-streamlined .hero-section {
  min-height: auto;
  color: #111827;
  background:
    radial-gradient(circle at 88% 22%, rgba(242, 183, 5, 0.2), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f6f8 52%, #e9eef3 100%);
}

.template-streamlined .hero-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 246, 248, 0.86) 54%, rgba(233, 238, 243, 0.72) 100%),
    url('/assets/co-working.jpeg');
  background-position: center right;
  background-size: cover;
  opacity: 0.28;
}

.template-streamlined .hero-content {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 420px);
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(70px, 10vw, 112px) 0 clamp(54px, 8vw, 82px);
}

.template-streamlined .hero-copy {
  max-width: 760px;
  color: #344054;
}

.template-streamlined .hero-content h1 {
  color: #111827;
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 1.02;
}

.template-streamlined .hero-section .eyebrow {
  color: #e1251b;
}

.template-streamlined .button-primary {
  background: #e1251b;
}

.template-streamlined .button-primary:hover {
  background: #b91c1c;
}

.template-streamlined .button-secondary {
  color: #020381;
  background: #ffffff;
  border-color: #cbd5e1;
}

.template-streamlined .button-secondary:hover {
  color: #ffffff;
  background: #111827;
}

.template-streamlined .hero-highlights {
  max-width: none;
  margin-top: 32px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7dfeb;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.template-streamlined .hero-highlights div {
  min-height: 92px;
  padding: 14px 14px 14px 16px;
  border-left: 4px solid #f2b705;
  background: #ffffff;
  border-radius: 6px;
}

.template-streamlined .hero-highlights strong {
  color: #111827;
}

.template-streamlined .hero-highlights small {
  color: #506176;
}

.template-streamlined .hero-bundle-card {
  min-height: 360px;
  padding: clamp(24px, 4vw, 34px);
  color: #ffffff;
  background:
    linear-gradient(155deg, rgba(2, 3, 129, 0.96), rgba(17, 24, 39, 0.98)),
    #111827;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.22);
}

.template-streamlined .hero-bundle-card h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.03;
}

.template-streamlined .hero-bundle-card p {
  color: #f2b705;
}

.template-streamlined .hero-bundle-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #f2f5ff;
}

.template-streamlined .logo-strip {
  background: #ffffff;
  border-block: 1px solid #d7dfeb;
}

.template-streamlined .logo-row {
  max-width: 1180px;
}

.template-streamlined .catalog-section {
  background: #f4f6f8;
}

.template-streamlined .catalog-section .section-heading {
  max-width: 920px;
}

.template-streamlined .catalog-section .section-heading h2,
.template-streamlined .course-copy h2,
.template-streamlined .teams-copy h2,
.template-streamlined .faq-intro h2 {
  color: #111827;
  line-height: 1.04;
}

.template-streamlined .guided-builder {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  gap: 18px;
}

.template-streamlined .guided-card,
.template-streamlined .guided-summary {
  border-color: #d7dfeb;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
}

.template-streamlined .guided-card {
  padding: clamp(20px, 3vw, 28px);
}

.template-streamlined .guided-step-heading > span {
  background: #111827;
}

.template-streamlined .training-option,
.template-streamlined .package-option,
.template-streamlined .guided-addon {
  min-height: 148px;
  background: #ffffff;
  border-color: #d7dfeb;
}

.template-streamlined .training-option:hover,
.template-streamlined .package-option:hover,
.template-streamlined .guided-addon:hover {
  border-color: #247fa6;
  box-shadow: 0 12px 28px rgba(36, 127, 166, 0.12);
}

.template-streamlined .training-option.is-selected,
.template-streamlined .package-option.is-selected,
.template-streamlined .guided-addon.is-selected {
  border-color: #020381;
  box-shadow: inset 0 0 0 2px #020381, 0 16px 34px rgba(2, 3, 129, 0.08);
}

.template-streamlined .training-option span,
.template-streamlined .package-option span,
.template-streamlined .guided-addon span,
.template-streamlined .selection-chips span {
  color: #020381;
  background: #edf2ff;
}

.template-streamlined .training-option.is-selected span,
.template-streamlined .package-option.is-selected span,
.template-streamlined .guided-addon.is-selected span {
  color: #ffffff;
  background: #e1251b;
}

.template-streamlined .guided-summary {
  top: 106px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfe);
}

.template-streamlined .summary-product-head {
  padding-bottom: 14px;
  border-bottom: 1px solid #d7dfeb;
}

.template-streamlined .selected-price-row div {
  background: #f4f6f8;
  border-color: #d7dfeb;
}

.template-streamlined .combination-note {
  color: #263842;
  background: #eaf4f8;
  border-left-color: #247fa6;
}

.template-streamlined .course-section,
.template-streamlined .support-section,
.template-streamlined .faq-section {
  background: #ffffff;
}

.template-streamlined .course-layout {
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
}

.template-streamlined .course-media {
  min-height: 390px;
  background:
    linear-gradient(135deg, rgba(2, 3, 129, 0.08), rgba(242, 183, 5, 0.18)),
    #f8fafc;
  border: 1px solid #d7dfeb;
}

.template-streamlined .metric-row div {
  background: #f4f6f8;
  border-left-color: #e1251b;
}

.template-streamlined .teams-section {
  background:
    linear-gradient(180deg, #f4f6f8 0%, #e9eef3 100%);
}

.template-streamlined .team-program-panel .program-card,
.template-streamlined .program-metrics div,
.template-streamlined .quote-form,
.template-streamlined .support-card,
.template-streamlined .faq-item {
  border: 1px solid #d7dfeb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.template-streamlined .program-card strong {
  color: #020381;
}

.template-streamlined .program-card p {
  color: #4b5563;
}

.template-streamlined .faq-tab-list {
  background: #ffffff;
  border-color: #d7dfeb;
}

.template-streamlined .faq-tab-list button[aria-selected='true'] {
  background: #111827;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.16);
}

.template-streamlined .faq-panel-heading {
  background: #f4f6f8;
  border-color: #d7dfeb;
}

.template-streamlined .quote-form {
  padding: clamp(22px, 4vw, 32px);
}

.template-streamlined .redeem-panel {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(2, 3, 129, 0.92)),
    #111827;
}

.template-streamlined .site-footer {
  background: #111827;
}

@media (max-width: 1040px) {
  .template-streamlined .hero-content,
  .template-streamlined .guided-builder,
  .template-streamlined .course-layout {
    grid-template-columns: 1fr;
  }

  .template-streamlined .hero-bundle-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .template-streamlined .utility-bar {
    justify-content: center;
  }

  .template-streamlined .hero-content {
    padding-top: 54px;
  }

  .template-streamlined .hero-highlights {
    grid-template-columns: 1fr;
  }
}

/* Trusted-by logo strip */
.logo-row {
  display: grid;
  grid-template-columns: minmax(150px, max-content) repeat(7, minmax(76px, 1fr));
  gap: clamp(16px, 2.6vw, 34px);
  align-items: center;
}

.logo-row strong {
  color: #3f515d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.logo-row img {
  width: 100%;
  max-width: 104px;
  max-height: 42px;
  justify-self: center;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

@media (max-width: 820px) {
  .logo-strip {
    padding: 22px 0;
  }

  .logo-row {
    grid-template-columns: repeat(4, minmax(58px, 1fr));
    gap: 16px 20px;
  }

  .logo-row strong {
    grid-column: 1 / -1;
    text-align: center;
  }

  .logo-row img {
    max-width: 84px;
    max-height: 34px;
  }
}

@media (max-width: 460px) {
  .logo-row {
    grid-template-columns: repeat(3, minmax(58px, 1fr));
  }
}

/* Catalog refresh */
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 9vh, 108px) 0;
}

.hero-content h1 {
  max-width: 760px;
  margin: 14px 0 20px;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
}

.hero-bundle-card {
  align-self: stretch;
  min-height: 320px;
  display: grid;
  align-content: center;
}

.catalog-section {
  scroll-margin-top: 86px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 48%, #eef5fb 100%);
}

.catalog-section .section-heading {
  max-width: 850px;
}

.path-guides {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 28px;
}

.path-guide {
  min-height: 178px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(2, 3, 129, 0.06);
}

.path-guide:nth-child(2) {
  border-top-color: var(--coral);
}

.path-guide:nth-child(3) {
  border-top-color: var(--gold);
}

.path-guide span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #506176;
  font-size: 13px;
  font-weight: 900;
}

.path-guide h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.14;
}

.path-guide p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.catalog-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  color: #2f343b;
  background: #ffffff;
  border: 1px solid #cfd8e5;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.catalog-filter span {
  display: inline-flex;
  min-width: 24px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  color: #020381;
  background: #eef5fb;
  border-radius: 999px;
  font-size: 12px;
}

.catalog-filter.is-active {
  color: #ffffff;
  background: #020381;
  border-color: #020381;
}

.catalog-filter.is-active span {
  color: #020381;
  background: #ffba00;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto auto;
  gap: 16px;
  min-height: 560px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(2, 3, 129, 0.07);
}

.catalog-card.is-featured {
  border-color: rgba(255, 16, 16, 0.52);
  box-shadow: 0 22px 54px rgba(255, 16, 16, 0.11);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  color: #ffffff;
  background: var(--coral);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.catalog-card-top {
  display: flex;
  min-height: 86px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-right: 0;
}

.catalog-card.is-featured .catalog-card-top {
  padding-right: 94px;
}

.catalog-logo {
  width: 86px;
  height: 86px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: #f7f8fb;
  border: 1px solid #e2e8f2;
  border-radius: 8px;
}

.catalog-logo img {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

.catalog-type {
  display: inline-flex;
  max-width: 150px;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 10px;
  color: #020381;
  background: #eef5fb;
  border: 1px solid #dce3ef;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.catalog-main h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.catalog-main p,
.catalog-best {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.catalog-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.catalog-meta div {
  min-height: 70px;
  padding: 12px;
  background: #f7f8fb;
  border-left: 4px solid var(--teal);
}

.catalog-meta div:nth-child(2) {
  border-left-color: var(--gold);
}

.catalog-meta span {
  display: block;
  margin-bottom: 4px;
  color: #506176;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-meta strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.catalog-best strong {
  color: var(--ink);
}

.catalog-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-includes li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: #2f343b;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.catalog-actions .button {
  flex: 1 1 170px;
}

.catalog-detail {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  color: #020381;
  border: 1px solid #cfd8e5;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.catalog-detail:hover {
  color: #ffffff;
  background: #020381;
}

.catalog-message {
  margin: -2px 0 0;
  color: #3c4a5f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.catalog-message.is-error {
  color: #a61b1b;
}

.button.is-loading {
  opacity: 0.74;
}

@media (max-width: 1080px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 76px 0 88px;
  }

  .path-guides {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-content h1 {
    font-size: 42px;
  }

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

  .catalog-card {
    min-height: auto;
  }

  .catalog-card-top {
    padding-right: 0;
  }

  .featured-badge {
    position: static;
    width: max-content;
  }

  .catalog-meta {
    grid-template-columns: 1fr;
  }
}

/* Modern product selector */
.commerce-selector {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.55fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: start;
  margin-top: 34px;
}

.selector-rail,
.selector-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(2, 3, 129, 0.06);
}

.rail-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.selector-rail h3,
.selector-summary h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}

.selector-tabs {
  display: grid;
  gap: 8px;
}

.selector-tab {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  color: #2f343b;
  background: #f7f8fb;
  border: 1px solid #dce3ef;
  border-radius: 6px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.selector-tab span {
  display: inline-flex;
  min-width: 26px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  color: #020381;
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
}

.selector-tab.is-active {
  color: #ffffff;
  background: #020381;
  border-color: #020381;
}

.selector-tab.is-active span {
  background: #ffba00;
}

.selector-note {
  padding-top: 16px;
  border-top: 1px solid #e4ebf3;
}

.selector-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.selector-note p,
.selector-summary p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.selector-list {
  display: grid;
  gap: 10px;
}

.selector-product {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(100px, max-content);
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 128px;
  padding: 16px;
  color: inherit;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(2, 3, 129, 0.045);
  text-align: left;
  cursor: pointer;
}

.selector-product:hover,
.selector-product.is-selected {
  border-color: rgba(46, 162, 204, 0.8);
  box-shadow: 0 16px 34px rgba(46, 162, 204, 0.13);
}

.selector-product.is-selected {
  background: linear-gradient(90deg, #ffffff 0%, #f3fbff 100%);
}

.selector-product.is-featured {
  border-left: 5px solid var(--coral);
}

.selector-product[hidden] {
  display: none;
}

.selector-product-logo {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: #f7f8fb;
  border: 1px solid #e2e8f2;
  border-radius: 8px;
}

.selector-product-logo img {
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
}

.selector-product-main,
.selector-product-price {
  display: grid;
  gap: 7px;
}

.selector-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.selector-product-meta span,
.selector-product-meta b,
.summary-product-head span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 5px 8px;
  color: #020381;
  background: #eef5fb;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.selector-product-meta b {
  color: #ffffff;
  background: var(--coral);
}

.selector-product-main strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.selector-product-main small,
.selector-product-price small {
  color: #506176;
  font-size: 14px;
  line-height: 1.4;
}

.selector-product-price {
  justify-items: end;
  text-align: right;
}

.selector-product-price strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.selector-summary {
  gap: 16px;
}

.summary-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.summary-product-head img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: #f7f8fb;
  border: 1px solid #e2e8f2;
  border-radius: 8px;
  padding: 10px;
}

.selected-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.selected-price-row div {
  min-height: 76px;
  padding: 12px;
  background: #f7f8fb;
  border-left: 4px solid var(--teal);
}

.selected-price-row div:nth-child(2) {
  border-left-color: var(--gold);
}

.selected-price-row span {
  display: block;
  margin-bottom: 5px;
  color: #506176;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.selected-price-row strong {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.05;
}

.region-price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.region-price-list span {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  color: #334155;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.region-price-list strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}

.region-price-list .is-selected {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.selected-best strong {
  color: var(--ink);
}

.selected-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.selected-includes li {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px;
  color: #2f343b;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.selector-checkout {
  width: 100%;
}

.selector-detail {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  color: #020381;
  font-weight: 900;
  text-decoration: none;
}

.selector-detail.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.has-product-detail-open,
.has-country-confirm-open {
  overflow: hidden;
}

.product-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 30px);
}

.product-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
}

.product-detail-dialog {
  position: relative;
  display: grid;
  gap: 22px;
  width: min(980px, 100%);
  max-height: min(86vh, 920px);
  overflow: auto;
  padding: clamp(20px, 3vw, 30px);
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.product-detail-close {
  justify-self: end;
  min-height: 38px;
  padding: 8px 12px;
  color: #020381;
  background: #eef5fb;
  border: 1px solid #dce3ef;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: start;
}

.product-detail-media {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 20px;
  background: #f7f8fb;
  border: 1px solid #dce3ef;
  border-radius: 8px;
}

.product-detail-media img {
  width: min(100%, 260px);
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

.product-detail-summary {
  display: grid;
  gap: 14px;
}

.product-detail-summary h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}

.product-detail-summary p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.product-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-detail-facts div {
  padding: 14px;
  background: #f7f8fb;
  border-left: 4px solid var(--coral);
}

.product-detail-facts div:nth-child(2) {
  border-left-color: var(--gold);
}

.product-detail-facts span {
  display: block;
  color: #506176;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-facts strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.product-detail-best strong {
  color: var(--ink);
}

.product-detail-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-includes li {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px;
  color: #2f343b;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.product-detail-body {
  display: grid;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid #dce3ef;
}

.product-detail-body h2,
.product-detail-body h3,
.product-detail-body p,
.product-detail-body ul,
.product-detail-body ol {
  margin: 0;
}

.product-detail-body h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.12;
}

.product-detail-body h3 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
}

.product-detail-body p,
.product-detail-body li {
  color: #4b5563;
  line-height: 1.65;
}

.product-detail-body ul,
.product-detail-body ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.product-detail-body hr {
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: #dce3ef;
  border: 0;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #dce3ef;
}

.product-detail-actions .button-secondary {
  color: #020381;
  background: #ffffff;
  border-color: #cfd8e5;
}

.country-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 32px);
}

.country-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.68);
  backdrop-filter: blur(6px);
}

.country-confirm-dialog {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(560px, 100%);
  padding: clamp(22px, 4vw, 32px);
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.country-confirm-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.05;
}

.country-confirm-dialog p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.55;
}

.country-confirm-selection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.country-confirm-country-card {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 14px 16px;
  background: #f7f8fb;
  border: 1px solid #dce3ef;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
}

.country-confirm-country-card span,
.country-confirm-country-card small {
  color: #506176;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.country-confirm-country-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.country-confirm-country-card.is-mismatch {
  background: #fff1f0;
  border-color: #ffb3ad;
  border-left-color: #d92d20;
}

.country-confirm-country-card.is-mismatch span,
.country-confirm-country-card.is-mismatch small {
  color: #9f1d15;
}

.country-confirm-country-card.is-mismatch strong {
  color: #7a120d;
}

.country-confirm-mismatch {
  padding: 12px 14px;
  color: #7a120d !important;
  background: #fff1f0;
  border: 1px solid #ffb3ad;
  border-radius: 8px;
  font-weight: 900;
}

.country-confirm-disclaimer {
  padding: 12px 14px;
  background: #fff8e6;
  border: 1px solid #ffe0a3;
  border-radius: 8px;
  font-weight: 800;
}

.country-confirm-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.4;
}

.country-confirm-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.country-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 4px;
}

.country-confirm-actions .button-secondary {
  color: #020381;
  background: #ffffff;
  border-color: #cfd8e5;
}

.country-confirm-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

shopify-checkout {
  --shopify-checkout-dialog-width: 720;
  --shopify-checkout-dialog-height: 820;
}

@media (max-width: 1120px) {
  .commerce-selector {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  }

  .selector-rail {
    position: static;
    grid-column: 1 / -1;
  }

  .selector-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .commerce-selector {
    grid-template-columns: 1fr;
  }

  .selector-summary {
    position: static;
  }

  .selector-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .selector-product {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: auto;
  }

  .selector-product-logo {
    width: 58px;
    height: 58px;
  }

  .selector-product-logo img {
    max-width: 46px;
    max-height: 46px;
  }

  .selector-product-price {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .selector-tabs,
  .selected-price-row {
    grid-template-columns: 1fr;
  }
}

/* Guided option builder */
.guided-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.85fr);
  gap: 22px;
  align-items: start;
  margin-top: 34px;
}

.guided-steps {
  display: grid;
  gap: 18px;
}

.guided-card,
.guided-summary {
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(2, 3, 129, 0.065);
}

.guided-card {
  padding: clamp(22px, 3vw, 30px);
}

.guided-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 17px;
  padding: clamp(22px, 3vw, 28px);
}

.guided-step-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.guided-step-heading > span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  background: #020381;
  border-radius: 999px;
  font-weight: 900;
}

.guided-step-heading h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.12;
}

.guided-step-heading p {
  max-width: 720px;
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.training-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.training-option,
.package-option,
.guided-addon {
  display: grid;
  gap: 9px;
  width: 100%;
  min-height: 166px;
  padding: 18px;
  color: inherit;
  background: #f7f8fb;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.training-option:hover,
.package-option:hover,
.guided-addon:hover {
  transform: translateY(-1px);
  border-color: rgba(46, 162, 204, 0.8);
}

.training-option.is-selected,
.package-option.is-selected,
.guided-addon.is-selected {
  background: #ffffff;
  border-color: #020381;
  box-shadow: inset 0 0 0 2px #020381, 0 16px 34px rgba(2, 3, 129, 0.09);
}

.training-option span,
.package-option span,
.guided-addon span {
  width: max-content;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 7px 10px;
  color: #020381;
  background: #eef5fb;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.training-option.is-selected span,
.package-option.is-selected span,
.guided-addon.is-selected span {
  color: #ffffff;
  background: var(--coral);
}

.training-option strong,
.package-option strong,
.guided-addon strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
}

.training-option small,
.package-option small,
.guided-addon small {
  color: #506176;
  font-size: 14px;
  line-height: 1.45;
}

.package-options,
.addon-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.package-option.is-disabled,
.package-option:disabled,
.guided-addon.is-disabled,
.guided-addon:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.combination-note {
  margin: 18px 0 0;
  padding: 13px 14px;
  color: #3f515d;
  background: #eef5fb;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.guided-summary .product-eyebrow {
  margin-bottom: 8px;
}

.guided-summary h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.guided-summary p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.selection-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selection-chips span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px;
  color: #020381;
  background: #eef5fb;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.selection-chips .is-warning {
  color: #ffffff;
  background: #a61b1b;
}

.selection-chips .is-mapped {
  color: #14532d;
  background: #dcfce7;
}

.selection-chips .is-discount {
  color: #1f4d2b;
  background: #e7f7ea;
}

.learner-details {
  display: grid;
  gap: 11px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-left: 4px solid var(--coral);
}

.learner-details-head {
  display: grid;
  gap: 3px;
}

.learner-details h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.learner-details p {
  margin: 0;
  color: #506176;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.learner-details label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.learner-details input,
.learner-details select {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfd8e5;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
}

.learner-details input:focus,
.learner-details select:focus,
.region-pricing select:focus {
  border-color: #020381;
  outline: 3px solid rgba(2, 3, 129, 0.12);
}

.learner-details input.is-invalid {
  border-color: #a61b1b;
  outline: 3px solid rgba(166, 27, 27, 0.12);
}

.learner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bundle-quantity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.bundle-quantity a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #020381;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.learner-list {
  display: grid;
  gap: 10px;
}

.learner-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid #dce3ef;
  border-radius: 6px;
  background: #f7f8fb;
}

.learner-card legend {
  padding: 0 6px;
  color: #020381;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.region-pricing {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #f7f8fb;
  border: 1px solid #dce3ef;
  border-left: 4px solid var(--teal);
}

.region-pricing label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.region-pricing select {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfd8e5;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
}

.region-pricing p {
  margin: 0;
  color: #506176;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.selected-price-row small,
.product-detail-facts small {
  display: block;
  margin-top: 6px;
  color: #506176;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.template-streamlined .region-pricing {
  background: #f4f6f8;
  border-color: #d7dfeb;
  border-left-color: #020381;
}

.template-streamlined .learner-details {
  background: #fbfcfe;
  border-color: #d7dfeb;
  border-left-color: #ed1c24;
}

.selector-checkout.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

@media (max-width: 1040px) {
  .guided-builder {
    grid-template-columns: 1fr;
  }

  .guided-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .training-options,
  .package-options,
  .addon-options,
  .bundle-quantity,
  .learner-grid {
    grid-template-columns: 1fr;
  }

  .training-option,
  .package-option,
  .guided-addon {
    min-height: auto;
  }

  .product-detail-modal {
    align-items: stretch;
    padding: 10px;
  }

  .product-detail-dialog {
    max-height: calc(100vh - 20px);
    padding: 18px;
  }

  .product-detail-hero,
  .product-detail-facts,
  .country-confirm-selection {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    min-height: 210px;
  }

  .product-detail-actions,
  .product-detail-actions .button,
  .country-confirm-actions,
  .country-confirm-actions .button {
    width: 100%;
  }
}

.support-bot:not(.is-open) .support-bot-panel {
  display: none;
}

.button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.course-section {
  background: #ffffff;
}

.course-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.course-media {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 186, 0, 0.2), rgba(46, 162, 204, 0.16)),
    #f4f7fb;
}

.badge-image {
  width: min(78%, 360px);
  height: auto;
  display: block;
}

.course-copy {
  display: grid;
  gap: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row div {
  padding: 18px;
  border-left: 4px solid var(--coral);
  background: #f7f8fb;
}

.metric-row strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
}

.exam-section {
  background: #020381;
}

.exam-section .section-heading h2 {
  color: #ffffff;
}

.exam-section .eyebrow {
  color: #ffba00;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  min-height: 230px;
  padding: 24px;
  background: #ffffff;
}

.step-card svg,
.support-card > svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.step-card h3,
.support-card h3,
.quote-form h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.step-card p,
.support-card p {
  color: #4b5563;
  line-height: 1.55;
}

.teams-section {
  background: #f7f8fb;
}

.teams-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.teams-copy {
  display: grid;
  gap: 20px;
}

.team-proof {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 570px;
  color: #2f343b;
  font-weight: 800;
  line-height: 1.45;
}

.team-proof svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--coral);
}

.team-program-panel {
  display: grid;
  gap: 14px;
  width: min(620px, 100%);
}

.program-card,
.program-metrics div {
  border: 1px solid #dce3ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(2, 3, 129, 0.06);
}

.program-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 16, 16, 0.92), rgba(2, 3, 129, 0.92)),
    #020381;
}

.program-card::after {
  content: '';
  position: absolute;
  right: -58px;
  top: -76px;
  width: 190px;
  height: 190px;
  border: 24px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.program-card span {
  display: block;
  color: #ffba00;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card strong {
  display: block;
  max-width: 440px;
  margin-top: 10px;
  color: #ffffff;
  font-size: 31px;
  line-height: 1.08;
}

.program-card p {
  max-width: 480px;
  margin: 14px 0 0;
  color: #f2f5ff;
  font-size: 16px;
  line-height: 1.55;
}

.program-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.program-metrics div {
  display: grid;
  min-height: 134px;
  align-content: start;
  gap: 8px;
  padding: 18px;
}

.program-metrics svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.program-metrics strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.05;
}

.program-metrics span {
  color: #4b5563;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 30px);
}

.quote-form h3 {
  margin: 0;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #2f343b;
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d7dfeb;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 15px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.faq-item button:focus-visible,
.faq-tab-list button:focus-visible,
.product-option:focus-visible,
.addon-option:focus-within,
.button:focus-visible,
.menu-button:focus-visible,
.primary-nav a:focus-visible,
.support-bot button:focus-visible,
.support-bot input:focus {
  outline: 3px solid rgba(46, 162, 204, 0.28);
  outline-offset: 2px;
}

.support-section {
  background: #ffffff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 26px;
}

.support-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.support-card a svg {
  width: 17px;
  height: 17px;
}

.redeem-panel {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  margin-top: 24px;
  padding: clamp(24px, 5vw, 34px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(2, 3, 129, 0.94), rgba(255, 16, 16, 0.84)),
    #020381;
  border-radius: 8px;
}

.redeem-panel .eyebrow {
  color: #ffba00;
}

.redeem-panel h3 {
  margin: 12px 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.redeem-panel p {
  max-width: 650px;
  color: #f2f5ff;
  line-height: 1.6;
}

.redeem-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
}

.redeem-form label {
  display: grid;
  gap: 7px;
  color: #2f343b;
  font-size: 14px;
  font-weight: 900;
}

.redeem-form input {
  width: 100%;
  border: 1px solid #d7dfeb;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.redeem-result {
  display: grid;
  gap: 6px;
  padding: 14px;
  color: #0f5132;
  background: #d1e7dd;
  border-radius: 7px;
}

.redeem-result span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.redeem-result strong {
  font-size: 22px;
  line-height: 1.1;
}

.redeem-error {
  margin: 0;
  padding: 12px;
  color: #842029;
  background: #f8d7da;
  border-radius: 7px;
  font-weight: 800;
}

.testimonial-section {
  background: #eef5fb;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.testimonial-intro {
  display: grid;
  gap: 16px;
}

.testimonial-grid {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 8px;
  margin: 0;
  padding: 24px;
}

.testimonial-card svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: var(--coral);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}

.testimonial-card figcaption {
  color: #6b7280;
  font-weight: 800;
}

.faq-section {
  background: #ffffff;
}

.faq-page-hero {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(2, 3, 129, 0.96), rgba(19, 30, 68, 0.92)),
    url('/assets/co-working.jpeg') center/cover;
}

.faq-page-hero .section-inner {
  display: grid;
  gap: 18px;
  padding: clamp(70px, 9vw, 118px) 0;
}

.faq-page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.faq-page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: #e9eef8;
  font-size: 19px;
  line-height: 1.6;
}

.faq-page-actions,
.faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.faq-page-section {
  background: #f7f8fb;
}

.content-page-hero {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(2, 3, 129, 0.96), rgba(19, 30, 68, 0.9)),
    url('/assets/co-working.jpeg') center/cover;
}

.content-page-hero .section-inner {
  display: grid;
  gap: 18px;
  padding: clamp(68px, 9vw, 116px) 0;
}

.content-page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.content-page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: #e9eef8;
  font-size: 19px;
  line-height: 1.6;
}

.content-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content-page-section {
  background: #f7f8fb;
}

.content-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.content-page-main {
  display: grid;
  gap: 18px;
}

.content-block,
.content-side-card {
  padding: clamp(22px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(2, 3, 129, 0.06);
}

.content-block h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.content-block p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.7;
}

.content-block ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-block li {
  position: relative;
  padding-left: 28px;
  color: #293241;
  font-weight: 800;
  line-height: 1.45;
}

.content-block li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 1000;
}

.content-page-side {
  position: sticky;
  top: 112px;
}

.content-side-card {
  display: grid;
  gap: 12px;
}

.content-side-card a {
  color: #020381;
  font-weight: 900;
  text-decoration: none;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.faq-intro {
  display: grid;
  gap: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-tabs {
  display: grid;
  gap: 18px;
}

.faq-tab-list {
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  width: min(620px, 100%);
  padding: 6px;
  background: #eef5fb;
  border: 1px solid #dce3ef;
  border-radius: 8px;
}

.faq-tab-list button {
  min-height: 44px;
  padding: 10px 16px;
  color: #020381;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-tab-list button[aria-selected='true'] {
  color: #ffffff;
  background: #020381;
  box-shadow: 0 10px 22px rgba(2, 3, 129, 0.16);
}

.faq-panel {
  display: grid;
  gap: 16px;
}

.faq-panel-heading {
  padding: 20px;
  background: #f7f8fb;
  border: 1px solid #dce3ef;
  border-radius: 8px;
}

.faq-panel-heading h3 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
}

.faq-panel-heading p:last-child {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.faq-item {
  overflow: hidden;
  box-shadow: none;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--ink);
  background: #ffffff;
  border: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--teal);
}

.faq-item button > svg {
  color: #6b7280;
  transition: transform 160ms ease;
}

.faq-item button[aria-expanded='true'] > svg {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px 52px;
  color: #4b5563;
  line-height: 1.65;
}

.site-footer {
  color: #e9eef8;
  background: #111827;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 0;
}

.footer-layout p {
  max-width: 520px;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-logo {
  display: block;
  width: 174px;
  height: auto;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: #ffba00;
  font-weight: 800;
  text-decoration: none;
}

.legal {
  margin: 0;
  padding: 18px;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
}

.support-bot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 12px;
  width: min(410px, calc(100vw - 32px));
  pointer-events: none;
}

.support-bot > * {
  pointer-events: auto;
}

.support-bot-panel {
  display: grid;
  overflow: hidden;
  width: 100%;
  max-height: min(680px, calc(100vh - 110px));
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(2, 3, 129, 0.24);
}

.support-bot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: #ffffff;
  background: #020381;
}

.support-bot-header > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.support-bot-header span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: #020381;
  background: #ffba00;
  border-radius: 8px;
}

.support-bot-header svg,
.support-bot-toggle svg,
.support-bot-form button svg {
  width: 20px;
  height: 20px;
}

.support-bot-header h2,
.support-bot-header p {
  margin: 0;
}

.support-bot-header h2 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.support-bot-header p {
  margin-top: 3px;
  color: #dbe5f4;
  font-size: 13px;
  font-weight: 800;
}

.support-bot-header button,
.support-bot-toggle,
.support-bot-prompts button,
.support-bot-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.support-bot-header button {
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.support-bot-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  max-height: 340px;
  overflow-y: auto;
  padding: 16px;
  background: #f7f8fb;
}

.support-message {
  max-width: 88%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-line;
}

.support-message.assistant {
  justify-self: start;
  color: #1e2228;
  background: #ffffff;
  border: 1px solid #dce3ef;
}

.support-message.user {
  justify-self: end;
  color: #ffffff;
  background: #020381;
}

.support-bot-prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 16px 0;
}

.support-bot-prompts button {
  min-height: 38px;
  padding: 8px 10px;
  color: #020381;
  background: #eef5fb;
  border: 1px solid #d8e4ef;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
}

.support-bot-prompts button:hover {
  border-color: var(--teal);
}

.support-bot-prompts button:disabled,
.support-bot-form button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.support-bot-error {
  margin: 10px 16px 0;
  padding: 10px;
  color: #842029;
  background: #f8d7da;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.support-bot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: end;
  padding: 14px 16px 16px;
}

.support-bot-form label {
  display: grid;
  gap: 6px;
}

.support-bot-form span {
  color: #4b5563;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.support-bot-form input {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  border: 1px solid #d7dfeb;
  border-radius: 7px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.support-bot-form button {
  width: 46px;
  height: 44px;
  color: #ffffff;
  background: var(--coral);
  border-radius: 7px;
}

.support-bot-toggle {
  gap: 8px;
  min-height: 52px;
  padding: 13px 17px;
  color: #ffffff;
  background: var(--coral);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(255, 16, 16, 0.28);
}

.support-bot-toggle:hover {
  background: #cf2e2e;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #dce3ef;
    border-radius: 8px;
    box-shadow: 0 20px 44px rgba(2, 3, 129, 0.12);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px;
  }

  .primary-nav .nav-cta {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 76px 0 96px;
  }

  .hero-inner h1 {
    max-width: 720px;
  }

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

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

  .logo-inner,
  .footer-layout,
  .testimonials-layout,
  .faq-layout,
  .content-page-layout,
  .course-layout,
  .teams-layout,
  .bundle-builder {
    grid-template-columns: 1fr;
  }

  .bundle-summary {
    position: static;
  }

  .content-page-side {
    position: static;
  }

  .logo-inner,
  .footer-layout {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .product-grid,
  .steps-grid,
  .support-grid,
  .redeem-panel {
    grid-template-columns: 1fr;
  }

  .product-card,
  .step-card,
  .support-card {
    min-height: auto;
  }

  .customer-logos {
    grid-template-columns: repeat(4, minmax(64px, 1fr));
  }
}

@media (max-width: 640px) {
  .utility-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 18px;
  }

  .brand img {
    width: 112px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-section::before {
    background-image:
      linear-gradient(90deg, rgba(2, 3, 129, 0.96) 0%, rgba(23, 31, 71, 0.9) 100%),
      url('/assets/co-working.jpeg');
  }

  .hero-inner h1 {
    font-size: 42px;
  }

  .hero-copy,
  .section-heading p,
  .course-copy p,
  .teams-copy p,
  .testimonial-intro p,
  .faq-intro p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .hero-path svg {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .hero-panel-header {
    display: grid;
  }

  .hero-panel-header strong {
    max-width: none;
    text-align: left;
  }

  .product-picker {
    grid-template-columns: 1fr;
  }

  .product-option {
    grid-template-columns: 64px 1fr;
    min-height: auto;
  }

  .product-option img {
    width: 64px;
    height: 64px;
  }

  .addon-option {
    grid-template-columns: auto 1fr;
  }

  .addon-option b {
    grid-column: 2;
  }

  .summary-total strong {
    font-size: 34px;
  }

  .program-metrics {
    grid-template-columns: 1fr;
  }

  .program-card strong {
    font-size: 27px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .course-copy h2,
  .teams-copy h2,
  .testimonial-intro h2,
  .faq-intro h2 {
    font-size: 34px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .course-media {
    min-height: 330px;
  }

  .product-card h3 {
    font-size: 28px;
  }

  .price-block strong {
    font-size: 34px;
  }

  .customer-logos {
    grid-template-columns: repeat(2, minmax(84px, 1fr));
  }

  .faq-tabs,
  .faq-tab-list {
    width: 100%;
  }

  .faq-item button {
    font-size: 16px;
  }

  .faq-item p {
    padding-left: 20px;
  }

  .support-bot {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }

  .support-bot-panel {
    max-height: calc(100vh - 92px);
  }

  .support-bot-messages {
    min-height: 220px;
    max-height: 300px;
  }

  .support-bot-prompts {
    grid-template-columns: 1fr;
  }
}
:root {
  --page: #f7f8fb;
  --ink: #1e2228;
  --teal: #2ea2cc;
  --coral: #ff1010;
  --gold: #ffba00;
  --soft: #eef5fb;
  color: var(--ink);
  background: var(--page);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

body,
button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

.icon-chip {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: currentColor;
  font-weight: 900;
  line-height: 1;
}

.is-hidden {
  display: none !important;
}

.checkout-message {
  margin: -6px 0 0;
  color: #3c4a5f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.checkout-message a {
  color: var(--coral);
}

.checkout-message.is-error {
  color: #a61b1b;
}
