/*
  The Edventure — Header + Hero
  Prebuilt production stylesheet. The Tailwind source lives in src/css/input.css.
*/

:root {
  --brand-orange: #ff4b24;
  --brand-orange-deep: #ed3619;
  --brand-orange-soft: #ff6a3a;
  --ink: #080808;
  --muted: #5e6169;
  --surface: #ffffff;
  --header-height: 90px;
  --content-gutter: clamp(24px, 4.35vw, 67px);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 48px rgba(10, 10, 10, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.drawer-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-orange);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background: #020202;
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 2, 2, 0.97);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(28px, 2.55vw, 40px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: clamp(230px, 18vw, 270px);
  height: 78px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 57px;
  object-fit: contain;
}

.desktop-nav {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2vw, 32px);
  white-space: nowrap;
}

.nav-link {
  position: relative;
  height: 100%;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.94);
  background: transparent;
  cursor: pointer;
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 500;
  line-height: 1;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease-premium);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--brand-orange);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.nav-dropdown {
  position: relative;
  height: 100%;
}

.nav-dropdown.is-open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 13px);
  left: 50%;
  width: 250px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #fff;
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px) scale(0.98);
  transform-origin: top center;
  transition: opacity 180ms ease, visibility 180ms ease, transform 220ms var(--ease-premium);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  transition: color 160ms ease, background-color 160ms ease, padding-left 160ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  padding-left: 16px;
  color: #fff;
  background: rgba(255, 75, 36, 0.13);
  outline: none;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-button,
.apply-button {
  height: 50px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.phone-button {
  min-width: 188px;
  padding: 0 18px;
  border: 1px solid var(--brand-orange);
  color: #fff;
  background: transparent;
}

.phone-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--brand-orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apply-button {
  min-width: 176px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #f33b1d 100%);
  box-shadow: 0 9px 22px rgba(244, 58, 29, 0.18);
}

.apply-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-button:hover,
.apply-button:hover {
  transform: translateY(-2px);
}

.phone-button:hover {
  background: rgba(255, 75, 36, 0.09);
}

.apply-button:hover {
  box-shadow: 0 14px 30px rgba(244, 58, 29, 0.28);
}

.phone-button:focus-visible,
.apply-button:focus-visible,
.menu-toggle:focus-visible,
.drawer-close:focus-visible,
.drawer-link:focus-visible,
.drawer-phone:focus-visible,
.drawer-apply:focus-visible,
.hero-primary:focus-visible,
.hero-secondary:focus-visible {
  outline: 3px solid rgba(255, 75, 36, 0.45);
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }

.hero-section {
  position: relative;
  min-height: 525px;
  overflow: hidden;
  background: #fff;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #fff;
}

/* Keep the hero artwork at its natural aspect ratio instead of stretching it
   across the full viewport. The left fade preserves copy legibility while the
   right side retains the original proportions of the student/UK visual. */
.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    #fff 0%,
    #fff 31%,
    rgba(255,255,255,.96) 37%,
    rgba(255,255,255,.62) 45%,
    rgba(255,255,255,.14) 56%,
    rgba(255,255,255,0) 67%
  );
}

.hero-background img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(68vw, 1080px);
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 525px;
  margin: 0 auto;
  padding: 80px var(--content-gutter) 34px;
  display: flex;
  align-items: flex-start;
}

.hero-copy {
  width: min(100%, 595px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 720ms var(--ease-premium);
}

.hero-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  margin: 0 0 13px;
  color: var(--brand-orange);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: #070707;
  font-size: clamp(48px, 4.35vw, 67px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  color: var(--brand-orange);
}

.hero-description {
  width: min(100%, 565px);
  margin: 18px 0 0;
  color: #60636b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 27px;
}

.hero-primary,
.hero-secondary {
  min-height: 50px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background-color 180ms ease;
}

.hero-primary {
  min-width: 218px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #f33b1d 100%);
  box-shadow: 0 11px 24px rgba(244, 58, 29, 0.18);
}

.hero-secondary {
  min-width: 217px;
  border: 1px solid #171717;
  color: #111;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-primary svg,
.hero-secondary svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.hero-primary:hover,
.hero-secondary:hover {
  transform: translateY(-2px);
}

.hero-primary:hover {
  box-shadow: 0 15px 30px rgba(244, 58, 29, 0.28);
}

.hero-secondary:hover {
  color: #fff;
  background: #0b0b0b;
}

.hero-primary:hover svg,
.hero-secondary:hover svg {
  transform: translateX(4px);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 590px);
  margin-top: 45px;
}

.feature-item {
  position: relative;
  min-height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #151515;
}

.feature-item:first-child {
  padding-left: 6px;
}

.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 54px;
  background: #d8d8d8;
}

.feature-item svg {
  flex: 0 0 auto;
  width: 37px;
  height: 37px;
  fill: none;
  stroke: var(--brand-orange);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item span {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
}

.mobile-hero-visual {
  display: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.56);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 320ms ease;
}

body.drawer-open .drawer-backdrop {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 210;
  width: min(88vw, 382px);
  height: 100dvh;
  padding: 25px 22px 22px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 75, 36, 0.10), transparent 30%),
    #050505;
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.42);
  transform: translateX(105%);
  transition: transform 420ms var(--ease-premium);
  overflow-y: auto;
  overscroll-behavior: contain;
}

body.drawer-open .mobile-drawer {
  transform: translateX(0);
}

.drawer-header {
  min-height: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.drawer-brand {
  width: 215px;
}

.drawer-brand img {
  width: 100%;
  height: auto;
}

.drawer-close {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin-top: 3px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.drawer-close:hover {
  border-color: rgba(255, 75, 36, 0.5);
  background: rgba(255, 75, 36, 0.08);
  transform: rotate(4deg);
}

.drawer-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 13px;
}

.drawer-link {
  position: relative;
  min-height: 47px;
  padding: 10px 10px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.91);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(22px);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    opacity 320ms ease,
    transform 380ms var(--ease-premium);
}

button.drawer-link {
  width: 100%;
  border: 0;
  text-align: left;
  cursor: pointer;
}

body.drawer-open .drawer-link {
  opacity: 1;
  transform: translateX(0);
}

body.drawer-open .drawer-link:nth-child(1) { transition-delay: 70ms; }
body.drawer-open .drawer-link:nth-child(2) { transition-delay: 100ms; }
body.drawer-open .drawer-accordion:nth-child(3) .drawer-link { transition-delay: 130ms; }
body.drawer-open .drawer-link:nth-child(4) { transition-delay: 160ms; }
body.drawer-open .drawer-link:nth-child(5) { transition-delay: 190ms; }
body.drawer-open .drawer-link:nth-child(6) { transition-delay: 220ms; }
body.drawer-open .drawer-link:nth-child(7) { transition-delay: 250ms; }

.drawer-link:hover,
.drawer-link:focus-visible,
.drawer-link.is-active {
  color: var(--brand-orange);
  background: rgba(255, 75, 36, 0.08);
}

.drawer-link svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer-link span:nth-child(2) {
  flex: 1;
}

.accordion-plus {
  position: relative;
  flex: 0 0 auto !important;
  width: 18px;
  height: 18px;
}

.accordion-plus::before,
.accordion-plus::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease;
}

.accordion-plus::after {
  transform: rotate(90deg);
}

.drawer-accordion.is-open .accordion-plus::after {
  transform: rotate(0);
}

.drawer-submenu {
  max-height: 0;
  margin: 0 0 0 45px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms var(--ease-premium), opacity 220ms ease, margin 220ms ease;
}

.drawer-accordion.is-open .drawer-submenu {
  max-height: 220px;
  margin-top: 3px;
  margin-bottom: 8px;
  opacity: 1;
}

.drawer-submenu a {
  display: block;
  padding: 9px 10px;
  border-left: 1px solid rgba(255, 75, 36, 0.35);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12.5px;
  transition: color 160ms ease, padding-left 160ms ease;
}

.drawer-submenu a:hover,
.drawer-submenu a:focus-visible {
  padding-left: 15px;
  color: var(--brand-orange);
  outline: none;
}

.drawer-actions {
  margin-top: auto;
  padding-top: 24px;
  display: grid;
  gap: 12px;
}

.drawer-phone,
.drawer-apply {
  min-height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 300ms ease, transform 380ms var(--ease-premium), background-color 180ms ease;
}

body.drawer-open .drawer-phone,
body.drawer-open .drawer-apply {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 270ms;
}

.drawer-phone {
  border: 1px solid var(--brand-orange);
}

.drawer-apply {
  background: linear-gradient(135deg, var(--brand-orange), #f2371b);
}

.drawer-phone svg,
.drawer-apply svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer-phone svg {
  stroke: var(--brand-orange);
}

@media (max-width: 1320px) {
  .header-inner {
    gap: 20px;
    padding-inline: 28px;
  }

  .brand {
    width: 230px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .phone-button {
    min-width: 176px;
  }

  .apply-button {
    min-width: 150px;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .header-inner {
    padding-inline: 22px;
  }

  .brand {
    width: 225px;
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-section,
  .hero-inner {
    min-height: 610px;
  }

  .hero-inner {
    padding-top: 68px;
  }

  .hero-copy {
    width: min(100%, 560px);
  }

  .hero-copy h1 {
    font-size: clamp(49px, 6vw, 64px);
  }

  .hero-background img {
    object-position: 58% top;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
    padding-bottom: 38px;
    background: linear-gradient(180deg, #fff 0%, #fff 68%, #f8f8f8 100%);
  }

  .hero-background {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding: 50px 24px 0;
    display: block;
  }

  .hero-copy {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: clamp(47px, 10vw, 68px);
  }

  .hero-description {
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-features {
    width: min(100%, 620px);
    margin-inline: auto;
    margin-top: 36px;
  }

  .feature-item {
    justify-content: center;
  }

  .mobile-hero-visual {
    display: block;
    width: min(100%, 760px);
    margin: 38px auto 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(20, 20, 20, 0.15);
  }

  .mobile-hero-visual img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    padding-inline: 15px;
  }

  .brand {
    width: min(68vw, 205px);
    height: 64px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .menu-toggle span {
    left: 11px;
    width: 20px;
  }

  .menu-toggle span:nth-child(1) { top: 13px; }
  .menu-toggle span:nth-child(2) { top: 20px; }
  .menu-toggle span:nth-child(3) { top: 27px; }

  .hero-inner {
    padding: 39px 18px 0;
  }

  .hero-eyebrow {
    max-width: 310px;
    margin-inline: auto;
    margin-bottom: 12px;
    font-size: 11.5px;
    letter-spacing: 0.05em;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 1.04;
  }

  .hero-description {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 25px;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
  }

  .feature-item {
    min-height: 88px;
    padding: 15px 10px;
    justify-content: flex-start;
  }

  .feature-item:first-child {
    padding-left: 10px;
  }

  .feature-item:not(:last-child)::after {
    display: none;
  }

  .feature-item:nth-child(odd) {
    border-right: 1px solid #e3e3e3;
  }

  .feature-item:nth-child(-n + 2) {
    border-bottom: 1px solid #e3e3e3;
  }

  .feature-item svg {
    width: 32px;
    height: 32px;
  }

  .feature-item span {
    font-size: 11.5px;
    white-space: normal;
  }

  .mobile-hero-visual {
    margin-top: 28px;
    border-radius: 18px;
  }

  .mobile-drawer {
    width: min(92vw, 372px);
    padding: 20px 17px 18px;
  }

  .drawer-brand {
    width: 196px;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 185px;
  }

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

  .hero-description {
    font-size: 14px;
  }

  .feature-item {
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .hero-background img {
    display: none;
  }

  .hero-background::after {
    display: none;
  }
}

/* ------------------------------------------------------------
   About preview + Featured Programs intro
   ------------------------------------------------------------ */
.about-preview {
  position: relative;
  padding: 30px 0 0;
  background: #fff;
}

.about-preview-inner {
  position: relative;
  width: min(90vw, 1460px);
  min-height: 230px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 25% 40% 35%;
  align-items: stretch;
  background:
    radial-gradient(circle at 2% 50%, rgba(255, 239, 232, .72), transparent 34%),
    linear-gradient(90deg, #fffaf7 0%, #fff 56%, #fff 100%);
  box-shadow: 0 10px 30px rgba(22, 22, 22, 0.035);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 650ms ease, transform 720ms var(--ease-premium);
}

.about-preview-inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-intro {
  position: relative;
  z-index: 3;
  padding: 26px 20px 22px 28px;
}

.section-eyebrow {
  margin: 0;
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.about-intro h2 {
  margin: 10px 0 8px;
  color: #121212;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.035em;
}

.about-intro > p:last-of-type {
  max-width: 285px;
  margin: 0;
  color: #6c6f76;
  font-size: 11.2px;
  font-weight: 400;
  line-height: 1.7;
}

.about-cta {
  width: 168px;
  min-height: 38px;
  margin-top: 13px;
  padding: 0 12px 0 15px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  background: #090909;
  box-shadow: 0 7px 16px rgba(0,0,0,.12);
  font-size: 10.4px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.about-cta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  background: #151515;
  box-shadow: 0 10px 20px rgba(0,0,0,.17);
}

.about-cta:hover svg {
  transform: translateX(3px);
}

.about-principles {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  padding: 22px 8px 22px 10px;
}

.principle-card {
  position: relative;
  min-height: 170px;
  padding: 16px 26px 12px 30px;
}

.principle-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  right: 0;
  width: 1px;
  height: 98px;
  background: #ebe6e2;
}

.principle-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.principle-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--brand-orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h3 {
  margin: 10px 0 6px;
  color: #171717;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.principle-card p {
  margin: 0;
  color: #71747a;
  font-size: 10.6px;
  font-weight: 400;
  line-height: 1.72;
}

.about-image {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 230px;
  overflow: hidden;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 30%;
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.72) 40%, rgba(255,255,255,0) 100%);
}

.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.programs-intro {
  padding: 31px 24px 22px;
  text-align: center;
  background: #fff;
}

.programs-intro .section-eyebrow {
  font-size: 9px;
}

.programs-intro h2 {
  margin: 8px 0 0;
  color: #101010;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.programs-title-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 13px;
}

.programs-title-rule span {
  width: 20px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.programs-title-rule i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.about-cta:focus-visible {
  outline: 3px solid rgba(255,75,36,.42);
  outline-offset: 4px;
}

@media (max-width: 1280px) {
  .about-preview-inner {
    width: 92%;
    grid-template-columns: 26% 39% 35%;
  }

  .principle-card {
    padding-inline: 20px;
  }
}

@media (max-width: 1080px) {
  .about-preview-inner {
    width: 94%;
    grid-template-columns: 28% 38% 34%;
  }

  .about-intro h2 {
    font-size: 20px;
  }

  .about-intro > p:last-of-type {
    font-size: 10.6px;
  }

  .principle-card {
    padding-inline: 17px;
  }

  .principle-card h3 {
    font-size: 12px;
  }

  .principle-card p {
    font-size: 9.8px;
  }
}

@media (max-width: 900px) {
  .about-preview {
    padding-top: 26px;
  }

  .about-preview-inner {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .about-intro {
    padding: 28px 28px 22px;
    text-align: center;
  }

  .about-intro h2 {
    font-size: clamp(24px, 4.4vw, 32px);
  }

  .about-intro > p:last-of-type {
    max-width: 560px;
    margin-inline: auto;
    font-size: 13px;
  }

  .about-cta {
    width: auto;
    min-width: 174px;
    min-height: 42px;
    margin-top: 18px;
    font-size: 11.5px;
  }

  .about-principles {
    padding: 0 22px 26px;
  }

  .principle-card {
    min-height: 150px;
    padding: 14px 18px;
    text-align: center;
  }

  .principle-icon {
    margin-inline: auto;
  }

  .principle-card h3 {
    font-size: 13px;
  }

  .principle-card p {
    font-size: 10.5px;
  }

  .principle-card:not(:last-child)::after {
    top: 30px;
    height: 100px;
  }

  .about-image {
    min-height: 300px;
  }

  .about-image::before {
    width: 100%;
    height: 34%;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.45) 48%, rgba(255,255,255,0) 100%);
  }

  .programs-intro {
    padding-top: 38px;
  }

  .programs-intro h2 {
    font-size: clamp(25px, 4vw, 32px);
  }
}

@media (max-width: 620px) {
  .about-preview {
    padding: 18px 14px 0;
  }

  .about-preview-inner {
    border-radius: 18px;
  }

  .about-intro {
    padding: 25px 20px 17px;
  }

  .about-intro h2 {
    margin-top: 8px;
    font-size: 25px;
    line-height: 1.23;
  }

  .about-intro h2 br {
    display: none;
  }

  .about-intro > p:last-of-type {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .about-principles {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 2px 20px 18px;
  }

  .principle-card {
    min-height: 0;
    padding: 18px 4px;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas: "icon title" "icon copy";
    column-gap: 14px;
    text-align: left;
  }

  .principle-card:not(:last-child) {
    border-bottom: 1px solid #ece8e5;
  }

  .principle-card:not(:last-child)::after {
    display: none;
  }

  .principle-icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .principle-card h3 {
    grid-area: title;
    align-self: end;
    margin: 3px 0 4px;
    font-size: 13px;
  }

  .principle-card p {
    grid-area: copy;
    font-size: 11.5px;
    line-height: 1.55;
  }

  .about-image {
    min-height: 220px;
  }

  .programs-intro {
    padding: 33px 18px 23px;
  }

  .programs-intro h2 {
    font-size: 26px;
  }
}

/* ------------------------------------------------------------
   Featured Programs + Why Learn + Impact CTA
   ------------------------------------------------------------ */
.programs-intro {
  padding-top: 46px;
  padding-bottom: 24px;
}

.programs-intro .section-eyebrow {
  font-size: 11px;
}

.programs-intro h2 {
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1.16;
}

.programs-subtitle {
  max-width: 760px;
  margin: 10px auto 0;
  color: #666970;
  font-size: 14px;
  line-height: 1.55;
}

.featured-programs {
  width: min(90vw, 1460px);
  margin: 0 auto;
  padding: 0 0 54px;
}

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

.program-card {
  position: relative;
  min-width: 0;
  min-height: 327px;
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 18, 18, 0.09);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 650ms ease,
    transform 720ms var(--ease-premium),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.program-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,75,36,.25);
  box-shadow: 0 18px 40px rgba(18, 18, 18, 0.13);
}

.program-media {
  height: 285px;
  overflow: hidden;
  background: #f3f4f5;
}

.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 450ms var(--ease-premium);
}

.program-card:hover .program-media img {
  transform: scale(1.035);
}

.program-icon {
  position: absolute;
  top: 151px;
  left: 24px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 7px 18px rgba(0,0,0,.11);
}

.program-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--brand-orange);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-body {
  padding: 23px 24px 20px;
}

.program-body h3 {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.program-body p {
  min-height: 58px;
  margin: 9px 0 0;
  color: #5f6269;
  font-size: 12.5px;
  line-height: 1.58;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--brand-orange);
  font-size: 12.5px;
  font-weight: 600;
}

.program-link svg,
.view-programs-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.program-link:hover svg,
.view-programs-button:hover svg {
  transform: translateX(4px);
}

.view-programs-button {
  width: fit-content;
  min-width: 198px;
  min-height: 44px;
  margin: 22px auto 0;
  padding: 0 18px 0 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background: #090909;
  box-shadow: 0 9px 22px rgba(0,0,0,.14);
  font-size: 12.5px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.view-programs-button:hover {
  transform: translateY(-2px);
  background: #151515;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

.why-section {
  padding: 18px 0 56px;
  background: #fff;
}

.why-inner {
  width: min(94vw, 1680px);
  margin: 0 auto;
  padding: 40px 44px 42px;
  border-radius: 18px;
  background: linear-gradient(90deg, #fffaf7 0%, #fff 42%, #fffaf7 100%);
  box-shadow: 0 16px 42px rgba(28, 20, 15, .055);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 650ms ease, transform 720ms var(--ease-premium);
}

.why-inner.is-visible { opacity: 1; transform: translateY(0); }

.why-heading {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 18px 30px;
  border: 0;
  text-align: center;
}

.why-heading .section-eyebrow {
  margin: 0;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.why-heading h2 {
  margin: 16px 0 0;
  color: #0b0b0b;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.why-accent {
  display: block;
  width: 78px;
  height: 5px;
  margin: 28px auto 0;
  border-radius: 999px;
  background: var(--brand-orange);
}

.why-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #eadfd8;
  padding-top: 48px;
}

.why-item {
  min-width: 0;
  min-height: 245px;
  padding: 8px 38px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.why-item:not(:last-child) { border-right: 1px solid #eadfd8; }

.why-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  fill: none;
  stroke: var(--brand-orange);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  margin: 0;
  color: #0b0b0b;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.025em;
}

.why-item p {
  max-width: 260px;
  margin: 14px auto 0;
  color: #62666c;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .why-inner { width: min(94vw, 1180px); padding: 38px 30px 36px; }
  .why-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-item { min-height: 220px; padding: 28px 24px; border-bottom: 1px solid #eadfd8; }
  .why-item:nth-child(3) { border-right: 0; }
  .why-item:nth-child(4), .why-item:nth-child(5) { border-bottom: 0; }
  .why-item:nth-child(4) { border-right: 1px solid #eadfd8; }
  .why-item svg { margin-bottom: 24px; }
}

@media (max-width: 760px) {
  .why-section { padding: 10px 0 42px; }
  .why-inner { width: calc(100% - 28px); padding: 32px 18px 22px; border-radius: 16px; }
  .why-heading { padding: 0 4px 26px; }
  .why-heading .section-eyebrow { font-size: 11px; }
  .why-heading h2 { margin-top: 12px; font-size: clamp(30px, 9.2vw, 40px); }
  .why-accent { width: 62px; height: 4px; margin-top: 22px; }
  .why-features { grid-template-columns: 1fr; padding-top: 10px; }
  .why-item,
  .why-item:nth-child(3),
  .why-item:nth-child(4),
  .why-item:nth-child(5) {
    min-height: auto;
    padding: 28px 8px 30px;
    border-right: 0;
    border-bottom: 1px solid #eadfd8;
  }
  .why-item:last-child { border-bottom: 0; }
  .why-item svg { width: 44px; height: 44px; margin-bottom: 18px; }
  .why-item h3 { font-size: 20px; }
  .why-item p { max-width: 330px; margin-top: 10px; font-size: 15px; }
}

.impact-section {
  padding: 0 0 64px;
  background: #fff;
}

.impact-inner {
  position: relative;
  width: min(95vw, 1580px);
  min-height: 162px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 57% 43%;
  color: #fff;
  background:
    radial-gradient(circle at 20% 40%, rgba(255,255,255,.04), transparent 32%),
    #090b0c;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 650ms ease, transform 720ms var(--ease-premium);
}

.impact-inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.impact-inner::before {
  content: "";
  position: absolute;
  inset: 0 43% 0 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.42) 1px, transparent 1.2px);
  background-size: 7px 7px;
  -webkit-mask-image: radial-gradient(ellipse at 45% 50%, #000 0 42%, transparent 78%);
  mask-image: radial-gradient(ellipse at 45% 50%, #000 0 42%, transparent 78%);
}

.impact-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: 22px 18px 20px 28px;
}

.impact-stat {
  min-height: 110px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.impact-stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.18);
}

.impact-stat svg {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
  fill: none;
  stroke: #ff7a2d;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-stat strong {
  color: #ff8435;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025em;
}

.impact-stat span {
  margin-top: 8px;
  color: rgba(255,255,255,.84);
  font-size: 11px;
  line-height: 1.35;
}

.impact-cta {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(355px, 1.15fr) minmax(260px, .85fr);
  background: linear-gradient(90deg, #111315 0%, #101214 58%, #171719 100%);
}

.impact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(255,255,255,.18);
}

.impact-copy {
  position: relative;
  z-index: 3;
  padding: 22px 10px 22px 30px;
  align-self: center;
}

.impact-copy h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.impact-copy p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 11.5px;
}

.impact-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 18px;
}

.impact-primary,
.impact-secondary {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  flex-wrap: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.impact-primary {
  min-width: 154px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), #ef381d);
  box-shadow: 0 8px 20px rgba(244,58,29,.2);
}

.impact-secondary {
  min-width: 126px;
  border: 1px solid var(--brand-orange);
  color: #fff;
  background: rgba(255,255,255,.02);
}

.impact-primary:hover,
.impact-secondary:hover {
  transform: translateY(-2px);
}

.impact-secondary:hover {
  background: rgba(255,75,36,.1);
}

.impact-primary svg,
.impact-secondary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.impact-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 36%;
  background: linear-gradient(90deg, #111315 0%, rgba(17,19,21,.76) 34%, rgba(17,19,21,0) 100%);
}

.impact-image img {
  width: 100%;
  height: 100%;
  min-height: 162px;
  object-fit: cover;
  object-position: center right;
}

.program-link:focus-visible,
.view-programs-button:focus-visible,
.impact-primary:focus-visible,
.impact-secondary:focus-visible {
  outline: 3px solid rgba(255,75,36,.42);
  outline-offset: 4px;
}

@media (max-width: 1280px) {
  .featured-programs,
  .why-inner {
    width: 92%;
  }

  .program-grid {
    gap: 16px;
  }

  .program-body {
    padding-inline: 20px;
  }

  .program-body h3 {
    font-size: 17px;
  }

  .why-inner {
    grid-template-columns: 1.1fr 4.9fr;
  }

  .why-item {
    grid-template-columns: 34px 1fr;
    padding-inline: 13px;
  }

  .why-item svg {
    width: 33px;
    height: 33px;
  }

  .impact-inner {
    width: 96%;
    grid-template-columns: 56% 44%;
  }

  .impact-stat {
    padding-inline: 16px;
  }
}

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

  .program-card {
    min-height: 335px;
  }

  .program-media {
    /* height: 188px; */
  }

  .program-icon {
    top: 160px;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-heading {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid #e8ded8;
    text-align: center;
  }

  .why-accent {
    margin-inline: auto;
  }

  .why-features {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .why-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-item svg {
    margin-inline: auto;
  }

  .impact-inner {
    grid-template-columns: 1fr;
  }

  .impact-inner::before {
    inset: 0;
  }

  .impact-cta {
    min-height: 190px;
  }

  .impact-cta::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }
}

@media (max-width: 760px) {
  .programs-intro {
    padding: 38px 18px 22px;
  }

  .programs-intro h2 {
    font-size: 28px;
  }

  .programs-subtitle {
    font-size: 13px;
  }

  .desktop-only {
    display: none;
  }

  .featured-programs {
    width: calc(100% - 28px);
    padding-bottom: 44px;
  }

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

  .program-card {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .program-media {
    /* height: clamp(190px, 48vw, 260px); */
  }

  .program-icon {
    top: calc(clamp(190px, 48vw, 260px) - 28px);
  }

  .program-body h3 {
    font-size: 19px;
  }

  .program-body p {
    min-height: 0;
    font-size: 13px;
  }

  .why-section {
    padding-bottom: 34px;
  }

  .why-inner {
    width: calc(100% - 28px);
    padding: 24px 20px;
  }

  .why-heading h2 {
    font-size: 25px;
  }

  .why-features {
    grid-template-columns: 1fr 1fr;
  }

  .why-item {
    padding: 18px 14px;
    border-right: 0 !important;
    border-bottom: 1px solid #ece4df;
  }

  .why-item:nth-last-child(-n+1) {
    border-bottom: 0;
  }

  .why-item:last-child {
    grid-column: 1 / -1;
    max-width: 320px;
    margin-inline: auto;
  }

  .why-item h3 {
    font-size: 13px;
  }

  .why-item p {
    font-size: 11.5px;
  }

  .impact-section {
    padding: 0 14px 48px;
  }

  .impact-inner {
    width: 100%;
    border-radius: 18px;
  }

  .impact-stats {
    grid-template-columns: 1fr 1fr;
    padding: 18px 14px;
  }

  .impact-stat {
    min-height: 118px;
    border-right: 0 !important;
  }

  .impact-stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.16) !important;
  }

  .impact-stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .impact-cta {
    grid-template-columns: 1fr;
  }

  .impact-copy {
    padding: 28px 22px 20px;
    text-align: center;
  }

  .impact-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .impact-image {
    min-height: 210px;
  }

  .impact-image::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, #111315 0%, rgba(17,19,21,.5) 50%, rgba(17,19,21,0) 100%);
  }
}

@media (max-width: 430px) {
  .programs-intro h2 {
    font-size: 25px;
  }

  .programs-subtitle {
    font-size: 12px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-item,
  .why-item:last-child {
    grid-column: auto;
    max-width: none;
    grid-template-columns: 42px 1fr;
    text-align: left;
  }

  .why-item svg {
    margin: 0;
  }

  .why-item:last-child {
    border-bottom: 0;
  }

  .impact-stat strong {
    font-size: 23px;
  }

  .impact-copy h2 {
    font-size: 23px;
  }

  .impact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .impact-primary,
  .impact-secondary {
    width: 100%;
  }
}

/* Impact CTA polish: keep labels on one line and eliminate image-edge artifacts. */
.impact-primary span,
.impact-secondary span {
  display: inline-block;
  white-space: nowrap;
}
.impact-image img {
  display: block;
  transform: scale(1.025);
  transform-origin: center;
}
@media (max-width: 1180px) {
  .impact-cta { grid-template-columns: minmax(315px, 1.08fr) minmax(230px, .92fr); }
  .impact-primary { min-width: 148px; }
  .impact-secondary { min-width: 122px; }
}
@media (max-width: 760px) {
  .impact-cta { grid-template-columns: 1fr; }
  .impact-actions { flex-wrap: wrap; }
  .impact-primary, .impact-secondary { min-width: 0; }
}
@media (max-width: 430px) {
  .impact-actions { display: grid; grid-template-columns: 1fr; }
  .impact-primary, .impact-secondary { width: 100%; white-space: nowrap; }
}


/* ==========================================================
   RESPONSIVE WHY-LEARN GRID — final stability overrides
   Prevents benefit cards from squeezing on intermediate widths.
   ========================================================== */

.why-inner {
  width: min(94vw, 1680px);
}

.why-features {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.why-item {
  min-height: 205px;
  padding: 10px clamp(20px, 2vw, 32px) 18px;
}

.why-item svg {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
}

.why-item h3 {
  max-width: 230px;
  margin-inline: auto;
  font-size: clamp(18px, 1.22vw, 22px);
  line-height: 1.14;
}

.why-item p {
  max-width: 245px;
  margin-top: 12px;
  font-size: clamp(13px, .98vw, 16px);
  line-height: 1.5;
}

/* Medium desktop / small laptop:
   3 cards on first row, 2 centered on second row. */
@media (max-width: 1439px) and (min-width: 1025px) {
  .why-inner {
    width: min(92vw, 1240px);
    padding: 36px 34px 38px;
  }

  .why-features {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding-top: 34px;
  }

  .why-item {
    grid-column: span 2;
    min-height: 190px;
    padding: 20px 28px 26px;
    border-right: 0 !important;
    border-bottom: 1px solid #eadfd8;
  }

  .why-item:nth-child(1),
  .why-item:nth-child(2) {
    border-right: 1px solid #eadfd8 !important;
  }

  .why-item:nth-child(4) {
    grid-column: 2 / span 2;
    border-bottom: 0;
    border-right: 1px solid #eadfd8 !important;
  }

  .why-item:nth-child(5) {
    grid-column: 4 / span 2;
    border-bottom: 0;
  }

  .why-item:nth-child(3) {
    border-bottom: 1px solid #eadfd8;
  }

  .why-item svg {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  .why-item h3 {
    font-size: 19px;
  }

  .why-item p {
    max-width: 260px;
    font-size: 14px;
  }
}

/* Tablet / portrait laptop:
   2 + 2 + 1 centered. */
@media (max-width: 1024px) and (min-width: 641px) {
  .why-section {
    padding-bottom: 44px;
  }

  .why-inner {
    width: calc(100% - 40px);
    padding: 34px 28px 32px;
  }

  .why-heading {
    padding-bottom: 28px;
  }

  .why-heading h2 {
    font-size: clamp(30px, 4.2vw, 40px);
  }

  .why-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 20px;
  }

  .why-item,
  .why-item:nth-child(3),
  .why-item:nth-child(4),
  .why-item:nth-child(5) {
    grid-column: auto;
    min-height: 190px;
    max-width: none;
    margin: 0;
    padding: 24px 24px 28px;
    border-right: 0 !important;
    border-bottom: 1px solid #eadfd8;
    text-align: center;
  }

  .why-item:nth-child(odd):not(:last-child) {
    border-right: 1px solid #eadfd8 !important;
  }

  .why-item:last-child {
    grid-column: 1 / -1;
    width: min(100%, 420px);
    justify-self: center;
    border-bottom: 0;
    border-right: 0 !important;
  }

  .why-item svg {
    width: 40px;
    height: 40px;
    margin: 0 auto 18px;
  }

  .why-item h3 {
    max-width: 240px;
    font-size: 19px;
  }

  .why-item p {
    max-width: 290px;
    font-size: 14px;
  }
}

/* Phones: one clean card per row, no squeezed content. */
@media (max-width: 640px) {
  .why-section {
    padding: 8px 0 38px;
  }

  .why-inner {
    width: calc(100% - 24px);
    padding: 30px 18px 18px;
  }

  .why-heading {
    padding: 0 6px 24px;
  }

  .why-heading h2 {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .why-features {
    grid-template-columns: 1fr !important;
    padding-top: 8px;
  }

  .why-item,
  .why-item:nth-child(3),
  .why-item:nth-child(4),
  .why-item:nth-child(5),
  .why-item:last-child {
    grid-column: auto !important;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 26px 12px 28px;
    border-right: 0 !important;
    border-bottom: 1px solid #eadfd8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-item:last-child {
    border-bottom: 0;
  }

  .why-item svg {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
  }

  .why-item h3 {
    max-width: 290px;
    font-size: 19px;
    line-height: 1.18;
  }

  .why-item p {
    max-width: 330px;
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.48;
  }
}


/* ==========================================================
   DOCUMENT-ALIGNED HOME CONTENT
   Content hierarchy and sizing updated to match the supplied
   The Edventure website copy without changing the visual system.
   ========================================================== */

.hero-section {
  min-height: 590px;
}

.hero-inner {
  min-height: 590px;
  padding-top: 64px;
}

.hero-copy {
  width: min(100%, 680px);
}

.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(42px, 3.65vw, 58px);
  line-height: 1.08;
}

.hero-description {
  max-width: 630px;
  margin-top: 17px;
  font-size: 16.5px;
  line-height: 1.58;
}

.hero-support {
  max-width: 620px;
  margin: 12px 0 0;
  color: #26282d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 23px;
}

.hero-features {
  width: min(100%, 650px);
  margin-top: 34px;
}

.feature-item {
  padding-inline: 13px;
}

.feature-item span {
  white-space: normal;
  font-size: 12px;
}

/* About: source-backed approach cards, no invented mission/vision. */
.about-preview {
  padding-top: 38px;
}

.about-preview-inner {
  width: min(90vw, 1540px);
  min-height: 290px;
  grid-template-columns: 39% 26% 35%;
}

.about-intro {
  padding: 32px 28px 28px 34px;
}

.about-intro h2 {
  max-width: 470px;
  margin-top: 10px;
  font-size: clamp(24px, 1.7vw, 29px);
  line-height: 1.2;
}

.about-intro > p:last-of-type,
.about-intro > p {
  max-width: 520px;
  color: #666a71;
  font-size: 13.5px;
  line-height: 1.62;
}

.about-intro .about-secondary-copy {
  margin-top: 8px;
  color: #777a80;
  font-size: 12.5px;
  line-height: 1.55;
}

.about-cta {
  width: 180px;
  min-height: 42px;
  margin-top: 17px;
  font-size: 11px;
}

.about-principles {
  grid-template-columns: 1fr;
  align-content: center;
  padding: 22px 10px;
}

.principle-card {
  min-height: 0;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 13px;
  align-items: start;
}

.principle-card:not(:last-child)::after {
  top: auto;
  right: 14px;
  bottom: 0;
  left: 14px;
  width: auto;
  height: 1px;
}

.principle-icon {
  width: 42px;
  height: 42px;
  grid-row: 1 / span 2;
}

.principle-icon svg {
  width: 36px;
  height: 36px;
}

.principle-card h3 {
  margin: 1px 0 4px;
  font-size: 13px;
}

.principle-card p {
  font-size: 11.2px;
  line-height: 1.5;
}

.about-image {
  min-height: 290px;
}

.programs-intro {
  padding-top: 54px;
}

.programs-intro h2 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(30px, 2.5vw, 40px);
}

.programs-subtitle {
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.55;
}

.program-card {
  min-height: 410px;
}

.program-body h3 {
  min-height: 50px;
  line-height: 1.18;
}

.program-body p {
  min-height: 88px;
  line-height: 1.5;
}

/* The five Why Learn cards now carry the source descriptions. */
.why-item {
  min-height: 235px;
}

.why-item p {
  max-width: 275px;
}

/* Replace numerical stats typography with source-backed theme labels. */
.impact-themes .impact-stat {
  min-height: 138px;
  padding-inline: 18px;
}

.impact-themes .impact-stat svg {
  margin-bottom: 10px;
}

.impact-themes .impact-stat strong {
  max-width: 190px;
  color: #ff8435;
  font-size: 16px;
  line-height: 1.18;
}

.impact-themes .impact-stat span {
  max-width: 190px;
  margin-top: 7px;
  font-size: 10.5px;
  line-height: 1.45;
}

.impact-copy {
  padding-block: 26px;
}

.impact-copy h2 {
  max-width: 360px;
}

.impact-copy .impact-kicker {
  margin-top: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.impact-copy .impact-kicker + p {
  max-width: 430px;
  margin-top: 7px;
  font-size: 10.8px;
  line-height: 1.5;
}

/* Medium screens: keep longer, source-accurate copy readable. */
@media (max-width: 1180px) {
  .hero-section,
  .hero-inner {
    min-height: 620px;
  }

  .hero-copy {
    width: min(100%, 590px);
  }

  .hero-copy h1 {
    max-width: 570px;
    font-size: clamp(40px, 4.6vw, 52px);
  }

  .about-preview-inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-intro,
  .about-principles {
    min-height: 300px;
  }

  .about-image {
    grid-column: 1 / -1;
    min-height: 245px;
  }

  .about-image::before {
    width: 20%;
  }

  .program-card {
    min-height: 400px;
  }

  .impact-themes .impact-stat strong {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .hero-section,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 10.8vw, 48px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-support {
    font-size: 13.5px;
  }

  .hero-features {
    margin-top: 28px;
  }

  .feature-item span {
    font-size: 11px;
  }

  .about-preview-inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .about-intro,
  .about-principles {
    min-height: 0;
  }

  .about-intro {
    padding: 28px 22px 22px;
  }

  .about-intro h2 {
    font-size: 25px;
  }

  .about-intro > p,
  .about-intro > p:last-of-type {
    font-size: 13px;
  }

  .about-principles {
    padding: 6px 18px 18px;
  }

  .principle-card {
    padding: 16px 6px;
  }

  .about-image {
    min-height: 220px;
  }

  .programs-intro {
    padding-top: 42px;
  }

  .programs-intro h2 {
    font-size: 30px;
  }

  .program-card {
    min-height: 0;
  }

  .program-body h3,
  .program-body p {
    min-height: 0;
  }

  .impact-themes .impact-stat {
    min-height: 120px;
  }

  .impact-themes .impact-stat strong {
    font-size: 15px;
  }

  .impact-themes .impact-stat span {
    max-width: 240px;
  }
}


/* ==========================================================
   HOME PROGRAM HIERARCHY + SOURCE-BACKED JOURNEY CTA
   ========================================================== */

.program-grid-three {
  width: min(90vw, 1420px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 34px);
}

.program-grid-three .program-card {
  min-height: 430px;
}

.program-grid-three .program-body h3 {
  min-height: 0;
  font-size: clamp(20px, 1.45vw, 24px);
}

.program-grid-three .program-body p {
  min-height: 112px;
}

.program-media-ipqec,
.program-media-short {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 92, 37, .22), transparent 38%),
    linear-gradient(135deg, #0c1117, #161e28);
}

.ipqec-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-align: center;
}

.ipqec-mark {
  color: #ff522f;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 800;
  letter-spacing: .06em;
}

.ipqec-submark {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.short-course-art {
  display: grid;
  place-items: center;
  gap: 4px;
  color: #fff;
  text-align: center;
}

.short-course-art svg {
  width: 96px;
  height: 96px;
  fill: none;
  stroke: #ff522f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.short-course-art span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.journey-only {
  padding: 44px 0 66px;
  background: #fff;
}

.journey-banner {
  position: relative;
  width: min(92vw, 1640px);
  min-height: 330px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(340px, 42%);
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 35%, rgba(255, 82, 47, .08), transparent 28%),
    #0a0e12;
  box-shadow: 0 22px 60px rgba(16, 18, 20, .16);
}

.journey-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  pointer-events: none;
  opacity: .32;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 8px 8px;
  mask-image: linear-gradient(90deg, #000, transparent);
}

.journey-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 50px clamp(38px, 5vw, 84px);
  color: #fff;
}

.journey-eyebrow {
  margin: 0 0 12px;
  color: #ff5a32;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.journey-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.journey-copy > p:not(.journey-eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.55;
}

.journey-copy .journey-detail {
  margin-top: 9px;
  color: rgba(255,255,255,.68);
  font-size: 13.5px;
}

.journey-copy .impact-actions {
  margin-top: 28px;
}

.journey-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.journey-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(90deg, #0a0e12, transparent);
}

.journey-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .program-grid-three {
    width: min(92vw, 850px);
    grid-template-columns: 1fr;
  }

  .program-grid-three .program-card {
    min-height: 0;
  }

  .program-grid-three .program-body p {
    min-height: 0;
  }

  .journey-banner {
    width: min(92vw, 900px);
    grid-template-columns: 1fr;
  }

  .journey-copy {
    padding: 44px 38px;
  }

  .journey-image {
    min-height: 300px;
  }

  .journey-image::before {
    inset: 0 0 auto;
    width: 100%;
    height: 28%;
    background: linear-gradient(180deg, #0a0e12, transparent);
  }

  .journey-image img {
    min-height: 300px;
    max-height: 380px;
  }
}

@media (max-width: 560px) {
  .program-grid-three {
    width: calc(100% - 28px);
  }

  .journey-only {
    padding: 32px 0 48px;
  }

  .journey-banner {
    width: calc(100% - 24px);
    border-radius: 17px;
  }

  .journey-copy {
    padding: 34px 22px 30px;
  }

  .journey-eyebrow {
    font-size: 10px;
  }

  .journey-copy h2 {
    font-size: 32px;
  }

  .journey-copy > p:not(.journey-eyebrow) {
    font-size: 14px;
  }

  .journey-copy .journey-detail {
    font-size: 12.5px;
  }

  .journey-copy .impact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .journey-copy .impact-primary,
  .journey-copy .impact-secondary {
    width: 100%;
  }
}


/* ==========================================================
   ACCREDITATION — source-backed concise trust showcase
   ========================================================== */

.accreditation-section {
  padding: 56px 0 18px;
  background: #fff;
}

.accreditation-heading {
  width: min(92vw, 980px);
  margin: 0 auto 34px;
  text-align: center;
}

.accreditation-heading .section-eyebrow {
  margin: 0;
}

.accreditation-heading h2 {
  margin: 12px 0 0;
  color: #0a0a0a;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.accreditation-heading > p:last-child {
  max-width: 760px;
  margin: 14px auto 0;
  color: #686c72;
  font-size: 15px;
  line-height: 1.55;
}

.accreditation-showcase {
  width: min(90vw, 1450px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .9fr);
  grid-template-areas:
    "main trust"
    "benefits benefits";
  overflow: hidden;
  border: 1px solid #eee5df;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(28, 20, 15, .08);
}

.accreditation-main {
  grid-area: main;
  padding: 50px clamp(34px, 4vw, 64px) 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 82, 47, .07), transparent 32%),
    linear-gradient(135deg, #fffdfa 0%, #fff 100%);
}

.accreditation-kicker {
  margin: 0;
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.accreditation-main h3 {
  max-width: 650px;
  margin: 11px 0 0;
  color: #0d0d0d;
  font-size: clamp(29px, 2.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.accreditation-copy {
  max-width: 790px;
  margin: 18px 0 0;
  color: #62666c;
  font-size: 15px;
  line-height: 1.68;
}

.accreditation-meta {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.accreditation-location {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #e7dfda;
  border-radius: 999px;
  color: #45484d;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
}

.accreditation-location svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--brand-orange);
  stroke-width: 1.8;
}

.accreditation-link {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--brand-orange);
  border-radius: 8px;
  color: #fff;
  background: #0b0d10;
  box-shadow: 0 10px 24px rgba(12, 14, 16, .12);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.accreditation-link:hover {
  transform: translateY(-2px);
  background: #15181c;
}

.accreditation-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accreditation-trust {
  position: relative;
  grid-area: trust;
  min-height: 360px;
  overflow: hidden;
  padding: 38px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    radial-gradient(circle at 70% 32%, rgba(255, 79, 38, .16), transparent 34%),
    #090c10;
}

.accreditation-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 9px 9px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.accreditation-globe {
  position: absolute;
  top: 22px;
  right: 24px;
  width: min(72%, 285px);
  opacity: .52;
}

.accreditation-globe svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: rgba(255, 88, 44, .72);
  stroke-width: 1.4;
}

.accreditation-globe .globe-orbit {
  stroke: rgba(255,255,255,.18);
  stroke-dasharray: 4 7;
}

.accreditation-stat {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.accreditation-stat strong {
  color: #ff6539;
  font-size: clamp(56px, 5vw, 82px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.06em;
}

.accreditation-stat div {
  padding-bottom: 3px;
}

.accreditation-stat span {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.accreditation-stat p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 11.5px;
}

.accreditation-benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #eee5df;
  background: #fffaf7;
}

.accreditation-benefits article {
  min-height: 126px;
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
}

.accreditation-benefits article:not(:last-child) {
  border-right: 1px solid #eadfd8;
}

.accreditation-benefits svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--brand-orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accreditation-benefits h4 {
  margin: 1px 0 0;
  color: #111;
  font-size: 14px;
  line-height: 1.2;
}

.accreditation-benefits p {
  max-width: 280px;
  margin: 6px 0 0;
  color: #74777c;
  font-size: 11.5px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .accreditation-section {
    padding-top: 46px;
  }

  .accreditation-showcase {
    width: min(92vw, 880px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "trust"
      "benefits";
  }

  .accreditation-main {
    padding: 42px 34px 36px;
  }

  .accreditation-trust {
    min-height: 300px;
  }

  .accreditation-benefits {
    grid-template-columns: 1fr;
  }

  .accreditation-benefits article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #eadfd8;
  }
}

@media (max-width: 560px) {
  .accreditation-heading {
    width: calc(100% - 30px);
    margin-bottom: 26px;
  }

  .accreditation-heading h2 {
    font-size: 31px;
  }

  .accreditation-heading > p:last-child {
    font-size: 13.5px;
  }

  .accreditation-showcase {
    width: calc(100% - 24px);
    border-radius: 17px;
  }

  .accreditation-main {
    padding: 32px 22px 28px;
  }

  .accreditation-main h3 {
    font-size: 29px;
  }

  .accreditation-copy {
    font-size: 13.5px;
  }

  .accreditation-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .accreditation-location,
  .accreditation-link {
    width: 100%;
    justify-content: center;
  }

  .accreditation-trust {
    min-height: 260px;
    padding: 30px 24px;
  }

  .accreditation-globe {
    width: 230px;
    right: -22px;
    top: 10px;
  }

  .accreditation-stat strong {
    font-size: 62px;
  }

  .accreditation-benefits article {
    min-height: 0;
    padding: 22px 20px;
  }
}


/* ==========================================================
   ACCREDITATION — reference-matched two-card layout
   ========================================================== */

.accreditation-reference {
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 88, 44, .045), transparent 25%),
    #fff;
}

.accreditation-reference-heading {
  width: min(92vw, 1040px);
  margin: 0 auto 42px;
  text-align: center;
}

.accreditation-reference-heading .section-eyebrow {
  margin: 0;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.accreditation-reference-heading h2 {
  margin: 13px 0 0;
  color: #0a0a0a;
  font-size: clamp(38px, 3.2vw, 54px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.05em;
}

.accreditation-reference-heading > p:last-child {
  max-width: 760px;
  margin: 17px auto 0;
  color: #6d7075;
  font-size: 15px;
  line-height: 1.55;
}

.accreditation-reference-grid {
  width: min(83vw, 1260px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  gap: 20px;
  align-items: stretch;
}

.accreditation-reference-light,
.accreditation-reference-dark {
  position: relative;
  min-width: 0;
  min-height: 506px;
  overflow: hidden;
  border-radius: 19px;
}

.accreditation-reference-light {
  padding: 38px 36px 30px;
  border: 1px solid #eee7e3;
  background:
    linear-gradient(135deg, #fff 0%, #fff 72%, #fffaf7 100%);
  box-shadow: 0 18px 44px rgba(36, 27, 22, .075);
}

.accreditation-reference-ring {
  position: absolute;
  top: -94px;
  right: -80px;
  width: 205px;
  height: 205px;
  border: 1px solid rgba(255, 86, 44, .14);
  border-radius: 50%;
  pointer-events: none;
}

.accreditation-reference-ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 86, 44, .075);
  border-radius: 50%;
}

.accreditation-reference-light > h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: #111;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -.035em;
}

.accreditation-reference-light > p {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 17px 0 0;
  color: #666a70;
  font-size: 14px;
  line-height: 1.62;
}

.accreditation-reference-benefits {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.accreditation-reference-benefit {
  min-height: 130px;
  padding: 17px 14px 14px;
  border: 1px solid #eee7e3;
  border-radius: 13px;
  background: rgba(255, 252, 250, .84);
}

.accreditation-reference-benefit-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff3ee;
}

.accreditation-reference-benefit-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--brand-orange);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accreditation-reference-benefit h4 {
  margin: 11px 0 0;
  color: #171717;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.accreditation-reference-benefit p {
  margin: 5px 0 0;
  color: #85878b;
  font-size: 9.5px;
  line-height: 1.35;
}

.accreditation-reference-actions {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.accreditation-reference-button {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--brand-orange);
  border-radius: 7px;
  color: #fff;
  background: #090b0e;
  box-shadow: 0 9px 22px rgba(10, 12, 14, .12);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.accreditation-reference-button:hover {
  transform: translateY(-2px);
  background: #14171b;
}

.accreditation-reference-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accreditation-reference-domain {
  color: #8e9094;
  font-size: 10px;
  font-weight: 600;
}

.accreditation-reference-dark {
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 88% 78%, rgba(132, 52, 25, .3), transparent 42%),
    #090c0f;
  box-shadow: 0 22px 55px rgba(9, 11, 13, .18);
}

.accreditation-reference-dots {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.26) .8px, transparent .9px);
  background-size: 9px 9px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.75) 68%, transparent 100%);
  pointer-events: none;
}

.accreditation-reference-globe {
  position: absolute;
  top: 58px;
  right: -2px;
  width: 255px;
  opacity: .54;
  pointer-events: none;
}

.accreditation-reference-globe svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: rgba(255, 94, 48, .72);
  stroke-width: 1.35;
}

.accreditation-reference-globe .reference-orbit {
  stroke: rgba(255,255,255,.16);
  stroke-dasharray: 4 7;
}

.accreditation-reference-dark-top {
  position: relative;
  z-index: 2;
  max-width: 410px;
}

.accreditation-reference-kicker {
  margin: 0;
  color: #ff5e38;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.accreditation-reference-dark-top h3 {
  margin: 13px 0 0;
  color: #fff;
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.accreditation-reference-dark-top > p {
  max-width: 410px;
  margin: 15px 0 0;
  color: rgba(255,255,255,.67);
  font-size: 12px;
  line-height: 1.5;
}

.accreditation-reference-location {
  width: max-content;
  min-height: 34px;
  margin-top: 18px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.035);
  font-size: 10px;
  font-weight: 500;
}

.accreditation-reference-location svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #ff5d37;
  stroke-width: 1.8;
}

.accreditation-reference-stat {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 56px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.accreditation-reference-stat strong {
  color: #ff6038;
  font-size: clamp(58px, 5vw, 78px);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.06em;
}

.accreditation-reference-stat > div {
  max-width: 220px;
  padding-bottom: 1px;
}

.accreditation-reference-stat span {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.accreditation-reference-stat p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.49);
  font-size: 9.5px;
  line-height: 1.35;
}

.accreditation-reference-dark-footer {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.accreditation-reference-dark-footer p {
  max-width: 500px;
  margin: 0;
  color: rgba(255,255,255,.57);
  font-size: 9.7px;
  line-height: 1.42;
}

/* Reference proportions for normal desktop sizes */
@media (min-width: 1280px) and (max-width: 1680px) {
  .accreditation-reference-grid {
    width: min(84vw, 1220px);
  }
}

/* Compact laptops: preserve two-card feel without squeezed text */
@media (max-width: 1180px) {
  .accreditation-reference-grid {
    width: min(91vw, 960px);
    grid-template-columns: 1fr;
  }

  .accreditation-reference-light,
  .accreditation-reference-dark {
    min-height: 0;
  }

  .accreditation-reference-dark {
    min-height: 430px;
  }

  .accreditation-reference-benefits {
    gap: 14px;
  }
}

/* Tablet */
@media (max-width: 760px) {
  .accreditation-reference {
    padding: 52px 0 42px;
  }

  .accreditation-reference-heading {
    width: calc(100% - 30px);
    margin-bottom: 30px;
  }

  .accreditation-reference-heading h2 {
    font-size: clamp(30px, 8vw, 39px);
  }

  .accreditation-reference-heading > p:last-child {
    font-size: 13px;
  }

  .accreditation-reference-grid {
    width: calc(100% - 24px);
    gap: 16px;
  }

  .accreditation-reference-light {
    padding: 30px 22px 24px;
  }

  .accreditation-reference-light > h3 {
    font-size: 27px;
  }

  .accreditation-reference-light > p {
    font-size: 13px;
  }

  .accreditation-reference-benefits {
    grid-template-columns: 1fr;
  }

  .accreditation-reference-benefit {
    min-height: 0;
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    align-items: start;
    padding: 14px 15px;
  }

  .accreditation-reference-benefit-icon {
    grid-row: 1 / span 2;
  }

  .accreditation-reference-benefit h4 {
    margin-top: 1px;
  }

  .accreditation-reference-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .accreditation-reference-button {
    width: 100%;
  }

  .accreditation-reference-domain {
    text-align: center;
  }

  .accreditation-reference-dark {
    min-height: 400px;
    padding: 29px 22px 24px;
  }

  .accreditation-reference-globe {
    top: 68px;
    right: -52px;
    width: 245px;
  }

  .accreditation-reference-dark-top {
    max-width: 290px;
  }

  .accreditation-reference-stat {
    padding-top: 84px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .accreditation-reference-heading h2 {
    font-size: 30px;
  }

  .accreditation-reference-light > h3 {
    font-size: 25px;
  }

  .accreditation-reference-dark {
    min-height: 390px;
  }

  .accreditation-reference-dark-top h3 {
    font-size: 26px;
  }

  .accreditation-reference-globe {
    width: 215px;
    top: 82px;
  }

  .accreditation-reference-stat strong {
    font-size: 60px;
  }

  .accreditation-reference-stat span {
    font-size: 14px;
  }
}


/* Final CTA image fix: preserve natural composition and prevent over-zoom/cropping. */
.journey-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #0a0e12;
}
.journey-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(90deg, #0a0e12 0%, rgba(10,14,18,.78) 38%, transparent 100%);
}
.journey-image img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  background: #0a0e12;
}
@media (max-width: 980px) {
  .journey-image { min-height: 290px; }
  .journey-image::before {
    inset: 0 0 auto; width: 100%; height: 24%;
    background: linear-gradient(180deg, #0a0e12 0%, rgba(10,14,18,.72) 45%, transparent 100%);
  }
  .journey-image img {
    width: 100%; height: auto; min-height: 0; max-height: 430px;
    object-fit: contain; object-position: center bottom;
  }
}
@media (max-width: 560px) {
  .journey-image { min-height: 235px; }
  .journey-image img { max-height: 330px; }
}


/* ==========================================================
   ACCREDITED & TRUSTED — reference-matched premium logo strip
   ========================================================== */

.trusted-showcase {
  position: relative;
  padding: 58px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 72%, rgba(255, 89, 42, .035), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fffdfc 100%);
}

.trusted-heading {
  width: min(92vw, 920px);
  margin: 0 auto 30px;
  text-align: center;
}

.trusted-eyebrow {
  margin: 0;
  color: #ff4c2e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.trusted-heading h2 {
  margin: 11px 0 0;
  color: #0b0b0b;
  font-size: clamp(31px, 2.6vw, 41px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.038em;
}

.trusted-heading > p:last-child {
  margin: 11px 0 0;
  color: #666b72;
  font-size: 14px;
  line-height: 1.55;
}

.trusted-carousel {
  width: min(89vw, 1210px);
  margin: 0 auto;
}

.trusted-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0 1px 18px;
}

.trusted-card {
  min-width: 0;
  height: 170px;
  padding: 17px 12px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f1efee;
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow:
    0 13px 28px rgba(16, 20, 24, .075),
    0 2px 5px rgba(16, 20, 24, .03);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.trusted-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 34px rgba(16, 20, 24, .095),
    0 3px 7px rgba(16, 20, 24, .035);
}

.trusted-logo {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo img {
  display: block;
  /* max-width: 91%; */
  /* max-height: 68px; */
  /* width: auto; */
  /* height: auto; */
  object-fit: contain;
}

.trusted-logo-idp img {
  max-width: 75%;
  max-height: 65px;
}

.trusted-logo-british img {
  max-width: 88%;
  max-height: 60px;
}

.trusted-logo-cambridge img {
  max-width: 95%;
  max-height: 53px;
}

.trusted-logo-ielts img {
  max-width: 84%;
  max-height: 57px;
}

.trusted-logo-pearson img {
  max-width: 94%;
  max-height: 55px;
}

.trusted-logo-icef img {
  max-width: 76%;
  max-height: 62px;
}

.trusted-card-copy {
  width: 100%;
}

.trusted-card-copy h3 {
  margin: 0;
  color: #171717;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.trusted-card-copy p {
  margin: 5px 0 0;
  color: #696d73;
  font-size: 11px;
  line-height: 1.25;
}

.trusted-pagination {
  height: 24px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.trusted-dot {
  width: 19px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #e8e8e8;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.trusted-dot:hover {
  transform: scaleY(1.15);
}

.trusted-dot.is-active {
  width: 21px;
  background: #ff5a2f;
}

/* Laptops: keep all six visible while tightening only slightly. */
@media (max-width: 1180px) and (min-width: 901px) {
  .trusted-carousel {
    width: min(94vw, 1050px);
  }

  .trusted-track {
    gap: 9px;
  }

  .trusted-card {
    height: 162px;
    padding-inline: 9px;
  }

  .trusted-card-copy h3 {
    font-size: 11px;
  }

  .trusted-card-copy p {
    font-size: 10px;
  }
}

/* Tablet/mobile becomes a native snap carousel — never squeeze cards. */
@media (max-width: 900px) {
  .trusted-showcase {
    padding: 50px 0 42px;
  }

  .trusted-heading {
    width: calc(100% - 32px);
    margin-bottom: 27px;
  }

  .trusted-desktop-break {
    display: none;
  }

  .trusted-heading h2 {
    font-size: clamp(30px, 6.2vw, 39px);
  }

  .trusted-heading > p:last-child {
    max-width: 650px;
    margin-inline: auto;
    font-size: 13px;
  }

  .trusted-carousel {
    width: 100%;
  }

  .trusted-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px max(20px, 5vw) 22px;
    scroll-padding-inline: max(20px, 5vw);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .trusted-track::-webkit-scrollbar {
    display: none;
  }

  .trusted-card {
    flex: 0 0 clamp(190px, 35vw, 230px);
    height: 176px;
    scroll-snap-align: start;
  }

  .trusted-logo {
    height: 94px;
  }

  .trusted-card-copy h3 {
    font-size: 12px;
  }

  .trusted-card-copy p {
    font-size: 11px;
  }

  .trusted-pagination {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .trusted-showcase {
    padding-top: 44px;
  }

  .trusted-heading h2 {
    font-size: 30px;
  }

  .trusted-heading > p:last-child {
    font-size: 12.5px;
  }

  .trusted-track {
    gap: 12px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .trusted-card {
    flex-basis: min(76vw, 225px);
    height: 172px;
  }
}


/* ==========================================================
   TRUSTED PARTNERS — 4 cards desktop / 1 card mobile
   ========================================================== */

/* Desktop: exactly four partner cards, centered. No carousel UI. */
.trusted-carousel {
  width: min(86vw, 1060px);
}

.trusted-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 0 1px 10px;
}

.trusted-card {
  height: 100%;
  padding: 20px 16px 18px;
}

.trusted-logo {
  height: 104px;
}

.trusted-logo img {
  max-height: 100%;
}

.trusted-card-copy h3 {
  font-size: 13px;
}

.trusted-card-copy p {
  font-size: 11.5px;
}

.trusted-mobile-pagination {
  display: none;
}

/* Future-proof desktop behavior:
   if more partner cards are added later, keep a balanced grid
   rather than forcing a carousel on desktop. */
@media (min-width: 901px) {
  .trusted-track {
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  }
}

/* Mobile/tablet: one card at a time, centered, snap carousel. */
@media (max-width: 900px) {
  .trusted-carousel {
    width: 100%;
  }

  .trusted-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px calc((100vw - min(78vw, 290px)) / 2) 20px;
    scroll-padding-inline: calc((100vw - min(78vw, 290px)) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .trusted-track::-webkit-scrollbar {
    display: none;
  }

  .trusted-card {
    flex: 0 0 min(78vw, 290px);
    /* width: min(78vw, 290px); */
    /* height: 205px; */
    margin: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .trusted-logo {
    height: 116px;
  }

  .trusted-logo img {
    /* max-width: 88%; */
    /* max-height: 76px; */
  }

  .trusted-card-copy h3 {
    font-size: 14px;
  }

  .trusted-card-copy p {
    font-size: 12px;
  }

  .trusted-mobile-pagination {
    display: flex;
    margin-top: 3px;
  }

  .trusted-dot {
    width: 9px;
    height: 7px;
  }

  .trusted-dot.is-active {
    width: 25px;
  }
}

@media (max-width: 560px) {
  .trusted-heading {
    width: calc(100% - 28px);
  }

  .trusted-heading h2 {
    font-size: 30px;
    line-height: 1.06;
  }

  .trusted-heading > p:last-child {
    max-width: 360px;
  }

  .trusted-track {
    gap: 14px;
    padding-left: calc((100vw - min(82vw, 300px)) / 2);
    padding-right: calc((100vw - min(82vw, 300px)) / 2);
    scroll-padding-left: calc((100vw - min(82vw, 300px)) / 2);
    scroll-padding-right: calc((100vw - min(82vw, 300px)) / 2);
  }

  .trusted-card {
    flex-basis: min(82vw, 300px);
    /* width: min(82vw, 300px); */
    /* height: 210px; */
  }
}


/* ==========================================================
   STUDENT REVIEWS — premium responsive carousel
   3 cards desktop / 1 card mobile
   ========================================================== */

.reviews-section {
  padding: 44px 0 58px;
  background: #fff;
}

.reviews-shell {
  position: relative;
  width: min(94vw, 1420px);
  margin: 0 auto;
  padding: 32px 74px 24px;
  overflow: hidden;
  border: 1px solid #f4ece7;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 88, 44, .045), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(255, 88, 44, .035), transparent 24%),
    linear-gradient(180deg, #fffdfc 0%, #fffaf7 100%);
  box-shadow: 0 18px 44px rgba(21, 17, 14, .035);
}

.reviews-heading {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.reviews-eyebrow {
  margin: 0;
  color: #ff522f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.reviews-heading h2 {
  margin: 10px 0 0;
  color: #0c0c0c;
  font-size: clamp(32px, 2.7vw, 43px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.reviews-heading > p:last-child {
  margin: 10px 0 0;
  color: #676b71;
  font-size: 13.5px;
  line-height: 1.5;
}

.reviews-carousel {
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  --reviews-gap: 22px;
  display: flex;
  gap: var(--reviews-gap);
  transition: transform 520ms cubic-bezier(.22, .74, .23, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - (var(--reviews-gap) * 2)) / 3);
  min-width: 0;
  min-height: 262px;
  padding: 24px 23px 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0ece9;
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  box-shadow:
    0 14px 28px rgba(18, 20, 22, .065),
    0 2px 5px rgba(18, 20, 22, .025);
}

.review-quote {
  height: 29px;
  color: #ff542f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: .95;
}

.review-text {
  margin: 9px 0 0;
  color: #26282d;
  font-size: 13.2px;
  font-weight: 500;
  line-height: 1.62;
}

.review-divider {
  height: 1px;
  margin: auto 0 15px;
  background: #ece8e5;
}

.review-meta {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #f1ddd3;
  border-radius: 50%;
  color: #ff542f;
  background:
    radial-gradient(circle at 30% 25%, #fff, transparent 38%),
    #fff3ed;
  box-shadow: 0 5px 13px rgba(255, 84, 47, .09);
}

.review-avatar svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-person {
  min-width: 0;
}

.review-person h3 {
  margin: 0;
  overflow: hidden;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-person p {
  margin: 4px 0 0;
  overflow: hidden;
  color: #697078;
  font-size: 10.5px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ff542f;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.review-badge svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 43px;
  height: 43px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #13171a;
  box-shadow: 0 7px 18px rgba(13, 16, 18, .17);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.reviews-arrow:hover {
  background: #1e2429;
  box-shadow: 0 10px 22px rgba(13, 16, 18, .23);
}

.reviews-arrow:active {
  transform: translateY(-50%) scale(.96);
}

.reviews-arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-arrow-prev {
  left: -54px;
}

.reviews-arrow-next {
  right: -54px;
}

.reviews-pagination {
  min-height: 22px;
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.reviews-dot {
  width: 26px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #e9e7e5;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.reviews-dot:hover {
  transform: scaleY(1.15);
}

.reviews-dot.is-active {
  width: 34px;
  background: #ff5a2f;
}

@media (max-width: 1180px) {
  .reviews-shell {
    width: min(94vw, 1050px);
    padding-inline: 64px;
  }

  .reviews-track {
    --reviews-gap: 18px;
  }

  .review-card {
    min-height: 285px;
    padding-inline: 20px;
  }

  .review-text {
    font-size: 12.5px;
  }

  .review-badge span {
    display: none;
  }
}

@media (max-width: 820px) {
  .reviews-section {
    padding: 38px 0 48px;
  }

  .reviews-shell {
    width: calc(100% - 24px);
    padding: 29px 48px 22px;
    border-radius: 17px;
  }

  .reviews-heading {
    margin-bottom: 22px;
  }

  .reviews-heading h2 {
    font-size: clamp(30px, 7vw, 38px);
  }

  .reviews-heading > p:last-child {
    max-width: 430px;
    margin-inline: auto;
    font-size: 12.5px;
  }

  .reviews-track {
    --reviews-gap: 16px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 300px;
    padding: 24px 22px 20px;
  }

  .review-text {
    font-size: 13px;
  }

  .reviews-arrow {
    width: 40px;
    height: 40px;
  }

  .reviews-arrow-prev {
    left: -43px;
  }

  .reviews-arrow-next {
    right: -43px;
  }

  .review-badge span {
    display: inline;
  }
}

@media (max-width: 560px) {
  .reviews-shell {
    width: calc(100% - 20px);
    padding: 27px 38px 20px;
  }

  .reviews-heading h2 {
    font-size: 30px;
  }

  .reviews-heading > p:last-child {
    font-size: 12px;
  }

  .review-card {
    min-height: 330px;
    padding: 22px 18px 18px;
  }

  .review-text {
    font-size: 12.6px;
    line-height: 1.58;
  }

  .review-meta {
    grid-template-columns: 43px minmax(0, 1fr);
  }

  .review-avatar {
    width: 43px;
    height: 43px;
  }

  .review-badge {
    grid-column: 2;
    margin-top: 1px;
  }

  .reviews-arrow {
    width: 36px;
    height: 36px;
  }

  .reviews-arrow-prev {
    left: -34px;
  }

  .reviews-arrow-next {
    right: -34px;
  }

  .reviews-dot {
    width: 10px;
    height: 6px;
  }

  .reviews-dot.is-active {
    width: 27px;
  }
}


/* Mobile review carousel refinement:
   hide side arrows and rely on swipe + pagination dots. */
@media (max-width: 560px) {
  .reviews-arrow {
    display: none !important;
  }

  .reviews-shell {
    padding-left: 22px;
    padding-right: 22px;
  }
}


/* ==========================================================
   TEAM — full homepage team section
   Reference-matched visual direction, all team members visible.
   ========================================================== */

.team-section {
  padding: 58px 0 66px;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 88, 44, .035), transparent 24%),
    #fff;
}

.team-section-inner {
  width: min(94vw, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(450px, .9fr);
  gap: 42px;
  align-items: stretch;
}

.team-main-column {
  min-width: 0;
}

.team-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.team-eyebrow {
  margin: 0;
  color: #ff552f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.team-heading h2 {
  margin: 11px 0 0;
  color: #0c0c0c;
  font-size: clamp(30px, 2.55vw, 41px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.04em;
}

.team-heading > p:last-child {
  max-width: 690px;
  margin: 12px auto 0;
  color: #5e646b;
  font-size: 13.5px;
  line-height: 1.55;
}

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

.team-member-card {
  min-width: 0;
  min-height: 210px;
  padding: 17px 13px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f0ece9;
  border-radius: 13px;
  background: rgba(255, 255, 255, .98);
  box-shadow:
    0 12px 27px rgba(17, 19, 22, .065),
    0 2px 5px rgba(17, 19, 22, .025);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.team-member-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 17px 34px rgba(17, 19, 22, .09),
    0 3px 7px rgba(17, 19, 22, .03);
}

.team-member-photo {
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #ece7e4;
  border-radius: 50%;
  color: #ff5b34;
  background:
    radial-gradient(circle at 34% 28%, #fff, transparent 34%),
    linear-gradient(145deg, #f6f3f1 0%, #e9e7e5 100%);
}

.team-member-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-member-photo svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .92;
}

.team-member-card h3 {
  width: 100%;
  margin: 13px 0 0;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.27;
}

.team-member-card p {
  min-height: 34px;
  margin: 5px 0 0;
  color: #5f656c;
  font-size: 10.5px;
  line-height: 1.35;
}

.team-card-accent {
  width: 34px;
  height: 2px;
  margin-top: auto;
  border-radius: 999px;
  background: #ff5a32;
}

/* Right split story / office card */
.team-story-panel {
  min-width: 0;
  min-height: 486px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  border-radius: 20px;
  background: #090c10;
  box-shadow: 0 22px 54px rgba(11, 14, 17, .14);
}

.team-story-copy {
  position: relative;
  z-index: 2;
  padding: 50px 32px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 82, 47, .08), transparent 30%),
    #090c10;
}

.team-story-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1.5px solid #ff5a32;
  border-radius: 50%;
  color: #ff5a32;
}

.team-story-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-story-copy h3 {
  max-width: 300px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(27px, 2vw, 35px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -.035em;
}

.team-story-accent {
  width: 42px;
  height: 2px;
  margin-top: 20px;
  border-radius: 999px;
  background: #ff5a32;
}

.team-story-copy p {
  max-width: 330px;
  margin: 21px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.6;
}

.team-office-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e8e4dd;
}

.team-office-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-office-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(90deg, #090c10, transparent);
}

.team-office-logo-patch {
  position: absolute;
  z-index: 3;
  top: 23.5%;
  left: 18%;
  width: 65%;
  min-height: 92px;
  padding: 9px 14px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: rgba(238, 233, 223, .97);
}

.team-office-logo-patch img {
  display: block;
  width: min(100%, 200px);
  height: auto;
  object-fit: contain;
}

/* Medium desktop / laptop */
@media (max-width: 1260px) {
  .team-section-inner {
    width: min(94vw, 1120px);
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    gap: 28px;
  }

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

  .team-member-card {
    min-height: 205px;
  }

  .team-story-panel {
    min-height: 650px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .team-story-copy {
    padding: 36px 30px 32px;
  }

  .team-story-copy h3 {
    max-width: 100%;
  }

  .team-story-copy p {
    max-width: 560px;
  }

  .team-office-visual {
    min-height: 330px;
  }

  .team-office-visual::before {
    inset: 0 0 auto;
    width: 100%;
    height: 18%;
    background: linear-gradient(180deg, #090c10, transparent);
  }

  .team-office-logo-patch {
    top: 20%;
    left: 24%;
    width: 52%;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .team-section {
    padding: 48px 0 54px;
  }

  .team-section-inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-heading {
    margin-bottom: 24px;
  }

  .team-heading h2 {
    font-size: clamp(30px, 6vw, 39px);
  }

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

  .team-story-panel {
    min-height: 0;
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    grid-template-rows: none;
  }

  .team-story-copy {
    padding: 36px 28px;
  }

  .team-office-visual {
    min-height: 390px;
  }

  .team-office-visual::before {
    inset: 0 auto 0 0;
    width: 18%;
    height: auto;
    background: linear-gradient(90deg, #090c10, transparent);
  }

  .team-office-logo-patch {
    top: 23%;
    left: 20%;
    width: 62%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .team-section {
    padding: 42px 0 48px;
  }

  .team-heading h2 {
    font-size: 30px;
  }

  .team-heading > p:last-child {
    font-size: 12.5px;
  }

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

  .team-member-card {
    min-height: 190px;
    padding: 18px 16px 16px;
  }
/* 
  .team-member-photo {
    width: 84px;
    height: 84px;
  } */

  .team-member-card h3 {
    font-size: 14px;
  }

  .team-member-card p {
    min-height: 0;
    font-size: 11px;
  }

  .team-story-panel {
    grid-template-columns: 1fr;
  }

  .team-story-copy {
    padding: 32px 24px 30px;
  }

  .team-story-copy h3 {
    font-size: 29px;
  }

  .team-story-copy p {
    font-size: 12.5px;
  }

  .team-office-visual {
    min-height: 340px;
  }

  .team-office-visual::before {
    inset: 0 0 auto;
    width: 100%;
    height: 15%;
    background: linear-gradient(180deg, #090c10, transparent);
  }

  .team-office-logo-patch {
    top: 24%;
    left: 22%;
    width: 56%;
    min-height: 82px;
  }
}


/* ==========================================================
   TEAM — clean full-width homepage layout
   ========================================================== */

.team-section-clean {
  padding: 64px 0 70px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 86, 44, .025), transparent 28%),
    #fff;
}

.team-clean-inner {
  width: min(92vw, 1420px);
  margin: 0 auto;
}

.team-heading-clean {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.team-heading-clean h2 {
  font-size: clamp(34px, 3vw, 48px);
}

.team-heading-clean > p:last-child {
  max-width: 800px;
  font-size: 14px;
  line-height: 1.6;
}

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

.team-grid-clean .team-member-card {
  min-height: 228px;
  padding: 20px 16px 17px;
  border-radius: 15px;
}

.team-grid-clean .team-member-photo {
  /* width: 98px;
  height: 98px; */
}

.team-grid-clean .team-member-photo svg {
  width: 57px;
  height: 57px;
}

.team-grid-clean .team-member-card h3 {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.3;
}

.team-grid-clean .team-member-card p {
  min-height: 38px;
  max-width: 240px;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.4;
}

.team-grid-clean .team-card-accent {
  width: 36px;
  margin-top: 15px;
}

/* Hide the old split story panel if legacy markup somehow remains. */
.team-section-clean .team-story-panel {
  display: none !important;
}

@media (max-width: 1100px) {
  .team-clean-inner {
    width: min(92vw, 960px);
  }

  .team-grid-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .team-grid-clean .team-member-card {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .team-section-clean {
    padding: 48px 0 56px;
  }

  .team-clean-inner {
    width: calc(100% - 28px);
  }

  .team-heading-clean {
    margin-bottom: 26px;
  }

  .team-heading-clean h2 {
    font-size: 31px;
  }

  .team-heading-clean > p:last-child {
    font-size: 12.5px;
  }

  .team-grid-clean {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-grid-clean .team-member-card {
    min-height: 205px;
    padding: 19px 16px 16px;
  }

  .team-grid-clean .team-member-photo {
    /* width: 88px;
    height: 88px; */
  }

  .team-grid-clean .team-member-card h3 {
    font-size: 14px;
  }

  .team-grid-clean .team-member-card p {
    min-height: 0;
    max-width: 300px;
  }
}


/* ==========================================================
   FOOTER — reference matched
   ========================================================== */

.site-footer {
  padding: 0;
  background: #fff;
}

.footer-shell {
  width: 100%;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 86, 44, .04), transparent 26%),
    linear-gradient(135deg, #0a0d10 0%, #0a0d10 54%, #07090b 100%);
}

.footer-top {
  width: min(92vw, 1450px);
  margin: 0 auto;
  padding: 54px 0 44px;
  display: grid;
  grid-template-columns: 1.2fr .72fr .82fr 1.05fr;
  gap: 58px;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  width: min(100%, 290px);
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-description {
  max-width: 335px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.75;
}

.footer-strengths {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-strength {
  position: relative;
  min-width: 0;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-strength:first-child {
  padding-left: 0;
}

.footer-strength:last-child {
  padding-right: 0;
}

.footer-strength:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 78px;
  background: rgba(255,255,255,.16);
}

.footer-strength svg {
  width: 41px;
  height: 41px;
  fill: none;
  stroke: #ff5a22;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-strength span {
  margin-top: 11px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-column h2,
.footer-contact > h2,
.footer-newsletter h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-title-line {
  width: 40px;
  height: 2px;
  margin-top: 12px;
  display: block;
  border-radius: 999px;
  background: #ff5a22;
}

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

.footer-column li + li {
  margin-top: 17px;
}

.footer-column a {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,.8);
  font-size: 13.5px;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-column a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  color: #ff6500;
  font-size: 22px;
  line-height: 1;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact {
  min-width: 0;
}

.footer-contact-list {
  margin-top: 22px;
  display: grid;
  gap: 17px;
}

.footer-contact-list a,
.footer-contact-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.82);
  font-size: 13.5px;
  line-height: 1.4;
  text-decoration: none;
}

.footer-contact-list svg,
.footer-contact-item svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ff6500;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-newsletter {
  margin-top: 34px;
}

.footer-newsletter-form {
  margin-top: 14px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.02);
}

.footer-newsletter-form input {
  min-width: 0;
  flex: 1 1 auto;
  height: 48px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 12.5px;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255,255,255,.42);
}

.footer-newsletter-form button {
  min-width: 128px;
  height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #ff5d19 0%, #ff6a1f 100%);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.footer-newsletter-form button:hover {
  filter: brightness(1.05);
}

.footer-newsletter-form button:active {
  transform: scale(.99);
}

.footer-newsletter-form button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-newsletter > p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.47);
  font-size: 10.5px;
  line-height: 1.45;
}

.footer-bottom {
  width: min(94vw, 1500px);
  margin: 0 auto;
  padding: 18px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.footer-legal,
.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal {
  gap: 17px;
  color: rgba(255,255,255,.72);
  font-size: 11.5px;
}

.footer-legal a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.18);
}

.footer-socials {
  gap: 13px;
}

.footer-socials > span {
  margin-right: 8px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
}

.footer-socials a {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: #ff6500;
  color: #ff6500;
  background: rgba(255,101,0,.04);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:first-of-type svg,
.footer-socials a:nth-of-type(3) svg {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1180px) {
  .footer-top {
    width: min(92vw, 1020px);
    grid-template-columns: 1.1fr .9fr .9fr;
    gap: 42px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 38px;
    align-items: start;
  }

  .footer-contact > h2,
  .footer-contact > .footer-title-line {
    grid-column: 1;
  }

  .footer-contact-list {
    grid-column: 1;
  }

  .footer-newsletter {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .footer-top {
    width: calc(100% - 38px);
    grid-template-columns: 1fr 1fr;
    gap: 38px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-description {
    max-width: 520px;
  }

  .footer-strengths {
    max-width: 620px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    width: calc(100% - 38px);
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  /* .footer-shell {
    border-radius: 14px 14px 0 0;
  } */

  .footer-top {
    width: calc(100% - 30px);
    padding: 42px 0 34px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo img {
    width: min(100%, 260px);
  }

  .footer-description {
    margin-top: 22px;
    font-size: 13px;
  }

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

  .footer-strength:nth-child(2)::after {
    display: none;
  }

  .footer-strength:not(:last-child)::after {
    height: 70px;
  }

  .footer-column,
  .footer-contact {
    grid-column: auto;
  }

  .footer-contact {
    display: block;
  }

  .footer-newsletter {
    margin-top: 30px;
  }

  .footer-newsletter-form {
    flex-direction: column;
    border: 0;
    overflow: visible;
    background: transparent;
  }

  .footer-newsletter-form input {
    height: 48px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.025);
  }

  .footer-newsletter-form button {
    width: 100%;
    margin-top: 9px;
    border-radius: 8px;
  }

  .footer-bottom {
    width: calc(100% - 30px);
    padding-bottom: 22px;
  }

  .footer-legal {
    gap: 10px 13px;
    font-size: 10.5px;
  }

  .footer-divider {
    display: none;
  }

  .footer-socials {
    gap: 10px;
  }

  .footer-socials > span {
    width: 100%;
    margin: 0 0 2px;
  }

  .footer-socials a {
    width: 39px;
    height: 39px;
  }
}


/* ==========================================================
   FOOTER CONTACT / NEWSLETTER — professional responsive fix
   ========================================================== */

/* Keep accessible labels available to screen readers without
   displaying them visually. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.footer-contact-list {
  gap: 18px;
}

.footer-contact-list a,
.footer-contact-item {
  min-height: 28px;
  font-size: 13px;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-newsletter {
  margin-top: 36px;
}

.footer-newsletter-form {
  min-height: 52px;
  border-color: rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.012);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.footer-newsletter-form:focus-within {
  border-color: rgba(255, 101, 0, .72);
  background: rgba(255,255,255,.05);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, .09);
}

.footer-newsletter-form input {
  height: 52px;
  padding: 0 18px;
  font-size: 13px;
  line-height: 1;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255,255,255,.44);
}

.footer-newsletter-form button {
  min-width: 134px;
  height: 52px;
  padding: 0 19px;
  gap: 10px;
  border-radius: 0 9px 9px 0;
  font-size: 12.5px;
  letter-spacing: .01em;
}

.footer-newsletter-form button svg {
  width: 18px;
  height: 18px;
}

.footer-newsletter > p {
  margin-top: 11px;
  font-size: 10.5px;
}

/* Avoid cramped two-column contact/newsletter layout on tablets. */
@media (max-width: 760px) {
  .footer-contact {
    display: block;
  }

  .footer-newsletter {
    margin-top: 32px;
  }

  .footer-contact-list {
    max-width: 460px;
  }

  .footer-newsletter-form {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .footer-contact-list {
    gap: 17px;
  }

  .footer-contact-list a,
  .footer-contact-item {
    font-size: 12.5px;
  }

  .footer-newsletter {
    margin-top: 30px;
  }

  .footer-newsletter-form {
    gap: 10px;
  }

  .footer-newsletter-form input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 9px;
    font-size: 12.5px;
  }

  .footer-newsletter-form button {
    width: 100%;
    min-width: 0;
    height: 50px;
    margin-top: 0;
    border-radius: 9px;
    font-size: 12.5px;
  }

  .footer-newsletter > p {
    max-width: 360px;
    font-size: 10px;
    line-height: 1.5;
  }
}


/* ==========================================================
   ABOUT — restored approved split layout + full source content
   ========================================================== */

html {
  scroll-padding-top: calc(var(--header-height) + 24px);
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.about-preview-restored {
  padding-top: 42px;
  padding-bottom: 24px;
}

.about-preview-restored .about-preview-inner {
  width: min(90vw, 1560px);
  min-height: 430px;
  grid-template-columns: minmax(0, 42%) minmax(300px, 24%) minmax(0, 34%);
  align-items: stretch;
}

.about-preview-restored .about-intro {
  padding: 34px 34px 30px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-preview-restored .about-intro h2 {
  max-width: 560px;
  margin-top: 10px;
  font-size: clamp(25px, 1.8vw, 31px);
  line-height: 1.18;
}

.about-restored-copy {
  max-width: 590px;
  margin-top: 15px;
}

.about-restored-copy p {
  margin: 0;
  color: #62676e;
  font-size: 12.6px;
  line-height: 1.55;
}

.about-restored-copy p + p {
  margin-top: 8px;
}

.about-restored-copy .about-restored-lead {
  color: #1b1d20;
  font-weight: 600;
}

.about-preview-restored .about-principles {
  padding: 22px 18px;
  align-content: center;
}

.about-preview-restored .principle-card {
  min-height: 112px;
  padding: 18px 12px;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
}

.about-preview-restored .principle-card:not(:last-child)::after {
  right: 10px;
  left: 10px;
}

.about-preview-restored .principle-icon {
  width: 44px;
  height: 44px;
}

.about-preview-restored .principle-icon svg {
  width: 35px;
  height: 35px;
}

.about-preview-restored .principle-card h3 {
  margin-top: 1px;
  font-size: 13px;
}

.about-preview-restored .principle-card p {
  max-width: 230px;
  margin-top: 5px;
  font-size: 10.8px;
  line-height: 1.5;
}

.about-preview-restored .about-image {
  min-height: 430px;
}

.about-preview-restored .about-image img {
  min-height: 430px;
}

.about-preview-restored .about-image::before {
  width: 25%;
}

@media (max-width: 1200px) {
  .about-preview-restored .about-preview-inner {
    width: min(92vw, 1040px);
    grid-template-columns: 1fr 1fr;
  }

  .about-preview-restored .about-intro {
    min-height: 420px;
  }

  .about-preview-restored .about-principles {
    min-height: 420px;
  }

  .about-preview-restored .about-image {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .about-preview-restored .about-image img {
    min-height: 300px;
  }

  .about-preview-restored .about-image::before {
    width: 20%;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: calc(var(--header-height) + 16px);
  }

  section[id],
  footer[id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
  }

  .about-preview-restored {
    padding-top: 34px;
  }

  .about-preview-restored .about-preview-inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .about-preview-restored .about-intro,
  .about-preview-restored .about-principles {
    min-height: 0;
  }

  .about-preview-restored .about-intro {
    padding: 28px 22px 24px;
  }

  .about-preview-restored .about-intro h2 {
    font-size: 26px;
  }

  .about-restored-copy p {
    font-size: 12.6px;
    line-height: 1.58;
  }

  .about-preview-restored .about-principles {
    padding: 8px 18px 18px;
  }

  .about-preview-restored .principle-card {
    min-height: 0;
    padding: 17px 6px;
  }

  .about-preview-restored .about-image {
    min-height: 250px;
  }

  .about-preview-restored .about-image img {
    min-height: 250px;
  }
}


/* ==========================================================
   ABOUT — clean two-column layout after removing repeated
   highlight items. Why Learn now follows immediately below.
   ========================================================== */

.about-preview-restored .about-preview-inner {
  width: min(90vw, 1500px);
  min-height: 430px;
  grid-template-columns: minmax(0, 58%) minmax(420px, 42%);
}

.about-preview-restored .about-intro {
  padding: 38px clamp(34px, 4vw, 64px);
}

.about-preview-restored .about-intro h2 {
  max-width: 690px;
  font-size: clamp(28px, 2.15vw, 36px);
}

.about-preview-restored .about-restored-copy {
  max-width: 760px;
  margin-top: 18px;
}

.about-preview-restored .about-restored-copy p {
  font-size: 13.5px;
  line-height: 1.62;
}

.about-preview-restored .about-image {
  min-height: 430px;
  grid-column: auto;
}

.about-preview-restored .about-image img {
  min-height: 430px;
}

.about-preview-restored .about-image::before {
  width: 28%;
}

/* Tight but premium spacing between About and Why Learn. */
.about-preview-restored + .why-section {
  padding-top: 26px;
}

@media (max-width: 1100px) {
  .about-preview-restored .about-preview-inner {
    width: min(92vw, 940px);
    grid-template-columns: 1fr;
  }

  .about-preview-restored .about-intro {
    min-height: 0;
    padding: 38px 40px 34px;
  }

  .about-preview-restored .about-image {
    min-height: 320px;
  }

  .about-preview-restored .about-image img {
    min-height: 320px;
  }

  .about-preview-restored .about-image::before {
    inset: 0 0 auto;
    width: 100%;
    height: 20%;
    background: linear-gradient(180deg, #fff, rgba(255,255,255,.48), transparent);
  }

  .about-preview-restored + .why-section {
    padding-top: 22px;
  }
}

@media (max-width: 760px) {
  .about-preview-restored .about-preview-inner {
    width: calc(100% - 28px);
  }

  .about-preview-restored .about-intro {
    padding: 28px 22px 25px;
  }

  .about-preview-restored .about-intro h2 {
    font-size: 27px;
  }

  .about-preview-restored .about-restored-copy p {
    font-size: 12.8px;
    line-height: 1.6;
  }

  .about-preview-restored .about-image {
    min-height: 250px;
  }

  .about-preview-restored .about-image img {
    min-height: 250px;
  }

  .about-preview-restored + .why-section {
    padding-top: 14px;
  }
}


/* ==========================================================
   WHY LEARN — premium numbered card redesign
   ========================================================== */

.why-premium {
  padding: 42px 0 62px;
  background:
    radial-gradient(circle at 6% 10%, rgba(255, 90, 37, .035), transparent 25%),
    radial-gradient(circle at 94% 88%, rgba(255, 90, 37, .028), transparent 25%),
    #fff;
}

.why-premium-inner {
  width: min(94vw, 1600px);
  margin: 0 auto;
}

.why-premium-heading {
  max-width: 1050px;
  margin: 0 auto 40px;
  text-align: center;
}

.why-premium-eyebrow {
  margin: 0;
  color: #ff5a22;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-premium-heading h2 {
  margin: 20px 0 0;
  color: #101622;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.04;
}

.why-premium-heading h2 span {
  color: #ff5429;
}

.why-premium-divider {
  margin-top: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.why-premium-divider span {
  width: 47px;
  height: 2px;
  border-radius: 999px;
  background: #e5e5e5;
}

.why-premium-divider i {
  width: 63px;
  height: 5px;
  border-radius: 999px;
  background: #ff5525;
}

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

.why-premium-card {
  position: relative;
  min-width: 0;
  min-height: 445px;
  padding: 28px 24px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ebe7e4;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 31%, rgba(255, 105, 39, .035), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fffdfb 100%);
  box-shadow:
    0 20px 42px rgba(21, 17, 14, .07),
    0 3px 8px rgba(21, 17, 14, .025);
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.why-premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 84, 41, .22);
  box-shadow:
    0 28px 55px rgba(21, 17, 14, .105),
    0 4px 10px rgba(21, 17, 14, .03);
}

.why-premium-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #b73c1a;
  background: #fff2e7;
  font-size: 15px;
  font-weight: 600;
}

.why-premium-icon {
  width: 118px;
  height: 118px;
  margin-top: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ff5b22;
  background:
    radial-gradient(circle at 36% 30%, #fff, transparent 43%),
    #fff9f4;
  box-shadow:
    0 15px 27px rgba(255, 100, 39, .09),
    0 3px 8px rgba(22, 19, 16, .04);
}

.why-premium-icon svg {
  width: 69px;
  height: 69px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-premium-accent {
  width: 39px;
  height: 3px;
  margin-top: 17px;
  border-radius: 999px;
  background: #ff5b22;
}

.why-premium-card h3 {
  max-width: 250px;
  margin: 22px 0 0;
  color: #111723;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.why-premium-card p {
  max-width: 260px;
  margin: 13px auto 0;
  color: #667080;
  font-size: clamp(13px, .98vw, 16px);
  line-height: 1.65;
}

.why-premium-base {
  width: 100%;
  height: 2px;
  margin-top: auto;
  border-radius: 999px;
  background: #ff5722;
}

@media (max-width: 1320px) and (min-width: 901px) {
  .why-premium-inner {
    width: min(92vw, 1100px);
  }

  .why-premium-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .why-premium-card {
    grid-column: span 2;
  }

  .why-premium-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .why-premium-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 900px) and (min-width: 621px) {
  .why-premium {
    padding: 38px 0 52px;
  }

  .why-premium-inner {
    width: calc(100% - 36px);
  }

  .why-premium-heading {
    margin-bottom: 31px;
  }

  .why-premium-heading h2 {
    font-size: clamp(38px, 6.7vw, 50px);
  }

  .why-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .why-premium-card {
    min-height: 420px;
  }

  .why-premium-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 420px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .why-premium {
    padding: 34px 0 46px;
  }

  .why-premium-inner {
    width: calc(100% - 26px);
  }

  .why-premium-heading {
    margin-bottom: 27px;
  }

  .why-premium-eyebrow {
    font-size: 12px;
  }

  .why-premium-heading h2 {
    margin-top: 14px;
    font-size: 34px;
  }

  .why-premium-divider {
    margin-top: 22px;
    gap: 13px;
  }

  .why-premium-divider span {
    width: 34px;
  }

  .why-premium-divider i {
    width: 53px;
    height: 4px;
  }

  .why-premium-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-premium-card {
    min-height: 385px;
    padding: 24px 21px 22px;
  }

  .why-premium-number {
    width: 40px;
    height: 40px;
    top: 15px;
    left: 15px;
    font-size: 13px;
  }

  .why-premium-icon {
    width: 103px;
    height: 103px;
    margin-top: 31px;
  }

  .why-premium-icon svg {
    width: 61px;
    height: 61px;
  }

  .why-premium-card h3 {
    font-size: 21px;
  }

  .why-premium-card p {
    max-width: 300px;
    font-size: 14px;
  }
}


/* ==========================================================
   GLOBAL HOMEPAGE SECTION RHYTHM
   Larger section labels + consistent non-hero spacing.
   ========================================================== */

:root {
  --home-section-space-y: 76px;
  --home-section-space-y-tablet: 62px;
  --home-section-space-y-mobile: 50px;
  --home-eyebrow-size: 17px;
  --home-eyebrow-size-mobile: 13.5px;
}

/* ---------- Larger small/uppercase section headings ---------- */

.about-preview-restored .section-eyebrow,
.programs-intro .section-eyebrow,
.why-premium-eyebrow,
.trusted-eyebrow,
.reviews-eyebrow,
.team-eyebrow {
  font-size: var(--home-eyebrow-size) !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Slightly stronger visual separation beneath eyebrow labels. */
.about-preview-restored .about-intro h2 {
  margin-top: 14px;
}

.programs-intro h2 {
  margin-top: 14px;
}

.why-premium-heading h2 {
  margin-top: 20px;
}

.trusted-heading h2 {
  margin-top: 15px;
}

.reviews-heading h2 {
  margin-top: 13px;
}

.team-heading-clean h2 {
  margin-top: 14px;
}

/* ---------- Consistent conceptual section spacing ---------- */

/* About */
.about-preview-restored {
  padding-top: var(--home-section-space-y);
  padding-bottom: var(--home-section-space-y);
}

/* Why Learn */
.why-premium,
.about-preview-restored + .why-section.why-premium {
  padding-top: var(--home-section-space-y);
  padding-bottom: var(--home-section-space-y);
}

/* Programs is split into heading + cards in the markup,
   so together they behave as one consistently spaced section. */
.programs-intro {
  padding-top: var(--home-section-space-y);
  padding-bottom: 0;
}

.featured-programs {
  padding-top: 30px;
  padding-bottom: var(--home-section-space-y);
}

/* Trusted partners */
.trusted-showcase {
  padding-top: var(--home-section-space-y);
  padding-bottom: var(--home-section-space-y);
}

/* Student reviews */
.reviews-section {
  padding-top: var(--home-section-space-y);
  padding-bottom: var(--home-section-space-y);
}

/* Team */
.team-section-clean {
  padding-top: var(--home-section-space-y);
  padding-bottom: var(--home-section-space-y);
}

/* Closing journey CTA */
.journey-only {
  padding-top: var(--home-section-space-y);
  padding-bottom: var(--home-section-space-y);
}

/* Keep inner heading-to-content gaps coherent. */
.programs-intro {
  margin-bottom: 0;
}

.trusted-heading {
  margin-bottom: 38px;
}

.reviews-heading {
  margin-bottom: 30px;
}

.team-heading-clean {
  margin-bottom: 38px;
}

.why-premium-heading {
  margin-bottom: 42px;
}

/* ---------- Tablet ---------- */

@media (max-width: 900px) {
  .about-preview-restored,
  .why-premium,
  .about-preview-restored + .why-section.why-premium,
  .trusted-showcase,
  .reviews-section,
  .team-section-clean,
  .journey-only {
    padding-top: var(--home-section-space-y-tablet);
    padding-bottom: var(--home-section-space-y-tablet);
  }

  .programs-intro {
    padding-top: var(--home-section-space-y-tablet);
  }

  .featured-programs {
    padding-top: 26px;
    padding-bottom: var(--home-section-space-y-tablet);
  }

  .about-preview-restored .section-eyebrow,
  .programs-intro .section-eyebrow,
  .why-premium-eyebrow,
  .trusted-eyebrow,
  .reviews-eyebrow,
  .team-eyebrow {
    font-size: 15px !important;
  }
}

/* ---------- Mobile ---------- */

@media (max-width: 620px) {
  .about-preview-restored,
  .why-premium,
  .about-preview-restored + .why-section.why-premium,
  .trusted-showcase,
  .reviews-section,
  .team-section-clean,
  .journey-only {
    padding-top: var(--home-section-space-y-mobile);
    padding-bottom: var(--home-section-space-y-mobile);
  }

  .programs-intro {
    padding-top: var(--home-section-space-y-mobile);
  }

  .featured-programs {
    padding-top: 22px;
    padding-bottom: var(--home-section-space-y-mobile);
  }

  .about-preview-restored .section-eyebrow,
  .programs-intro .section-eyebrow,
  .why-premium-eyebrow,
  .trusted-eyebrow,
  .reviews-eyebrow,
  .team-eyebrow {
    font-size: var(--home-eyebrow-size-mobile) !important;
    letter-spacing: .055em;
  }

  .trusted-heading,
  .reviews-heading,
  .team-heading-clean,
  .why-premium-heading {
    margin-bottom: 28px;
  }
}


/* ==========================================================
   RESPONSIVE POLISH — compact Why Learn + consistent gutters
   ========================================================== */

/* ---------------- WHY LEARN: compact 3 + 2 desktop ---------------- */

.why-premium-inner {
  width: min(88vw, 1120px);
}

.why-premium-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.why-premium-card {
  grid-column: span 2;
  min-height: 350px;
  padding: 22px 20px 20px;
  border-radius: 16px;
}

.why-premium-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.why-premium-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.why-premium-number {
  top: 15px;
  left: 15px;
  width: 38px;
  height: 38px;
  font-size: 13px;
}

.why-premium-icon {
  width: 88px;
  height: 88px;
  margin-top: 26px;
}

.why-premium-icon svg {
  width: 51px;
  height: 51px;
}

.why-premium-accent {
  width: 34px;
  margin-top: 13px;
}

.why-premium-card h3 {
  max-width: 240px;
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.16;
}

.why-premium-card p {
  max-width: 260px;
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.55;
}

.why-premium-base {
  height: 2px;
}

/* Normal laptops: keep 3 + 2, slightly tighter */
@media (max-width: 1180px) and (min-width: 901px) {
  .why-premium-inner {
    width: min(90vw, 980px);
  }

  .why-premium-grid {
    gap: 18px;
  }

  .why-premium-card {
    min-height: 340px;
    padding-inline: 18px;
  }

  .why-premium-card h3 {
    font-size: 18px;
  }

  .why-premium-card p {
    font-size: 13px;
  }
}

/* Tablet: balanced 2 + 2 + 1 */
@media (max-width: 900px) and (min-width: 621px) {
  .why-premium-inner {
    width: calc(100% - 36px);
  }

  .why-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .why-premium-card,
  .why-premium-card:nth-child(4),
  .why-premium-card:nth-child(5) {
    grid-column: auto;
    min-height: 335px;
  }

  .why-premium-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 360px);
    justify-self: center;
  }
}

/* Mobile: compact cards, full centered width */
@media (max-width: 620px) {
  .why-premium-inner {
    width: calc(100% - 28px);
  }

  .why-premium-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-premium-card,
  .why-premium-card:nth-child(4),
  .why-premium-card:nth-child(5),
  .why-premium-card:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 315px;
    padding: 20px 18px 18px;
  }

  .why-premium-number {
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .why-premium-icon {
    width: 82px;
    height: 82px;
    margin-top: 22px;
  }

  .why-premium-icon svg {
    width: 47px;
    height: 47px;
  }

  .why-premium-accent {
    margin-top: 11px;
  }

  .why-premium-card h3 {
    margin-top: 14px;
    font-size: 19px;
  }

  .why-premium-card p {
    max-width: 300px;
    margin-top: 9px;
    font-size: 13.5px;
    line-height: 1.5;
  }
}

/* ---------------- MOBILE GUTTER / CENTERING CONSISTENCY ---------------- */

@media (max-width: 620px) {
  /* Use a consistent 14px outer gutter for principal section panels. */
  .about-preview-restored .about-preview-inner,
  .team-clean-inner,
  .journey-banner {
    width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Programs was left-biased because the child grid also reduced width.
     Let the child fill the already-centered Featured Programs container. */
  .featured-programs {
    width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .program-grid-three {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .program-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Reviews container centered with same outer gutter. */
  .reviews-shell {
    width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Keep each mobile review card visually centered in its viewport. */
  .reviews-viewport {
    width: 100%;
  }

  .review-card {
    flex-basis: 100%;
    width: 100%;
    margin: 0;
  }

  /* Trusted carousel stays edge-to-edge for swiping, but its single card
     remains mathematically centered with equal side padding. */
  .trusted-track {
    padding-left: calc((100vw - min(82vw, 300px)) / 2) !important;
    padding-right: calc((100vw - min(82vw, 300px)) / 2) !important;
    scroll-padding-left: calc((100vw - min(82vw, 300px)) / 2) !important;
    scroll-padding-right: calc((100vw - min(82vw, 300px)) / 2) !important;
  }

  .trusted-card {
    margin-left: 0;
    margin-right: 0;
  }

  /* Footer keeps a near-identical 15px gutter; leave its 2-column
     strength tiles as an intentional grid rather than forcing centering. */
}

/* Slightly wider phones/tablets: avoid side-bias in Programs too. */
@media (min-width: 621px) and (max-width: 980px) {
  .program-grid-three {
    width: 100% !important;
    margin-inline: auto !important;
  }
}

/* Safety: no content card should create page-level horizontal overflow. */
.about-preview-restored,
.why-premium,
.featured-programs,
.trusted-showcase,
.reviews-section,
.team-section-clean,
.journey-only,
.site-footer {
  max-width: 100%;
}

/* Final gutter corrections from responsive audit. */
.program-grid-three {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 620px) {
  .about-preview-restored {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Mobile trusted carousel: exactly one centered card, no next-card peek. */
@media (max-width: 620px) {
  .trusted-track {
    gap: calc((100vw - min(82vw, 300px)) / 2) !important;
  }
}


/* ==========================================================
   ABOUT + WHY LEARN MERGED
   Keeps the approved About split layout and existing image.
   ========================================================== */

.about-preview-restored .about-preview-inner {
  align-items: stretch;
}

.about-preview-restored .about-intro {
  justify-content: flex-start;
  padding-top: 38px;
  padding-bottom: 38px;
}

.about-preview-restored .about-image,
.about-preview-restored .about-image img {
  height: 100%;
  min-height: 100%;
}

.about-preview-restored .about-image img {
  object-fit: cover;
}

/* Why Learn subsection inside About */
.about-why-block {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #eadfd9;
}

.about-why-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-why-eyebrow {
  margin: 0;
  color: #111;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.about-why-line {
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: #ff5a2f;
}

.about-why-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.about-why-item {
  min-width: 0;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-top: 1px solid #eee5df;
}

.about-why-item:nth-child(1),
.about-why-item:nth-child(2) {
  border-top: 0;
}

.about-why-item-wide {
  grid-column: 1 / -1;
}

.about-why-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ff542f;
}

.about-why-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-why-item h3 {
  margin: 0;
  color: #121212;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.about-why-item p {
  margin: 5px 0 0;
  color: #6b7077;
  font-size: 10.8px;
  line-height: 1.5;
}

/* Now that Why Learn is inside About, remove the extra section-sized
   visual gap that used to exist between About and Programs. */
.about-preview-restored {
  padding-bottom: var(--home-section-space-y);
}

.programs-intro {
  padding-top: var(--home-section-space-y);
}

@media (max-width: 1100px) {
  .about-preview-restored .about-image,
  .about-preview-restored .about-image img {
    min-height: 360px;
  }

  .about-why-block {
    margin-top: 26px;
  }
}

@media (max-width: 760px) {
  .about-preview-restored .about-intro {
    padding-top: 28px;
    padding-bottom: 26px;
  }

  .about-why-block {
    margin-top: 24px;
    padding-top: 20px;
  }

  .about-why-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .about-why-eyebrow {
    font-size: 18px;
  }

  .about-why-line {
    width: 40px;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-why-item,
  .about-why-item:nth-child(1),
  .about-why-item:nth-child(2),
  .about-why-item-wide {
    grid-column: auto;
    padding: 15px 0;
    border-top: 1px solid #eee5df;
  }

  .about-why-item:first-child {
    border-top: 0;
  }

  .about-why-item h3 {
    font-size: 13.5px;
  }

  .about-why-item p {
    font-size: 11.5px;
  }

  .about-preview-restored .about-image,
  .about-preview-restored .about-image img {
    min-height: 280px;
  }
}

/* Professional Development detail page */
.pd-page{background:#fff;color:#111}
.pd-hero{min-height:620px;display:grid;grid-template-columns:minmax(0,48%) minmax(0,52%);background:linear-gradient(110deg,#fff 0%,#fff 46%,#f4f5f6 46%)}
.pd-hero-copy{padding:86px clamp(42px,7vw,130px) 56px;display:flex;flex-direction:column;justify-content:center}
.pd-breadcrumb{margin-bottom:22px;display:flex;align-items:center;flex-wrap:wrap;gap:9px;color:#747980;font-size:11px}
.pd-breadcrumb a{color:#ff552f;text-decoration:none}
.pd-eyebrow{margin:0;color:#ff552f;font-size:13px;font-weight:700;letter-spacing:.07em;text-transform:uppercase}
.pd-hero h1{margin:13px 0 0;color:#101215;font-size:clamp(45px,4.3vw,70px);line-height:1.03;letter-spacing:-.055em}
.pd-hero h1 span{color:#ff542f}
.pd-hero-text{max-width:690px;margin:24px 0 0;color:#5d626a;font-size:15px;line-height:1.7}
.pd-hero-actions{margin-top:28px;display:flex;gap:13px;flex-wrap:wrap}
.pd-recognition{margin-top:34px;padding-top:25px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;border-top:1px solid #e8e4e1}
.pd-recognition>div{display:grid;grid-template-columns:42px 1fr;gap:11px;align-items:start}
.pd-recognition-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:50%;color:#ff552f;background:#fff1eb}
.pd-recognition-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.pd-recognition p{margin:1px 0 0;color:#6a6f76;font-size:11px;line-height:1.45}.pd-recognition strong{color:#17191c;font-size:12px}
.pd-hero-visual{position:relative;min-height:620px;overflow:hidden}.pd-hero-visual img{width:100%;height:100%;display:block;object-fit:cover;object-position:center}
.pd-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.24),transparent 30%)}
.pd-hero-badge{position:absolute;right:30px;bottom:28px;max-width:310px;padding:16px 18px;border-radius:12px;background:rgba(7,10,13,.92);box-shadow:0 12px 32px rgba(0,0,0,.22);color:#fff}
.pd-hero-badge span{display:block;color:#ff6038;font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.pd-hero-badge strong{display:block;margin-top:6px;font-size:14px;line-height:1.35}
.pd-intro-strip{width:min(90vw,1320px);margin:-34px auto 0;position:relative;z-index:3;padding:23px 28px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border:1px solid #eee7e2;border-radius:16px;background:#fffaf7;box-shadow:0 18px 42px rgba(28,22,18,.08)}
.pd-intro-strip article{padding:0 26px;display:grid;grid-template-columns:43px minmax(0,1fr);gap:13px;align-items:start}.pd-intro-strip article:not(:last-child){border-right:1px solid #eadfd9}
.pd-intro-strip svg{width:38px;height:38px;fill:none;stroke:#ff552f;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}.pd-intro-strip h2{margin:0;font-size:13px;line-height:1.25}.pd-intro-strip p{margin:5px 0 0;color:#72777e;font-size:10.5px;line-height:1.5}
.pd-programs{padding:82px 0 72px}.pd-section-heading{width:min(92vw,800px);margin:0 auto 34px;text-align:center}.pd-section-heading h2{margin:12px 0 0;font-size:clamp(34px,3vw,48px);letter-spacing:-.04em;line-height:1.08}.pd-section-heading>p:last-child{max-width:680px;margin:12px auto 0;color:#6b7077;font-size:13.5px;line-height:1.55}
.pd-program-grid{width:min(88vw,1180px);margin:0 auto;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.pd-program-card{overflow:hidden;border:1px solid #ece7e4;border-radius:17px;background:#fff;box-shadow:0 18px 38px rgba(22,18,15,.07)}.pd-program-image{height:190px;overflow:hidden}.pd-program-image img{width:100%;height:100%;object-fit:cover;display:block}.pd-program-body{position:relative;padding:38px 24px 26px}.pd-card-icon{position:absolute;top:-27px;left:22px;width:54px;height:54px;display:grid;place-items:center;border:1px solid #eee4df;border-radius:50%;color:#ff552f;background:#fff;box-shadow:0 8px 20px rgba(20,16,13,.08)}.pd-card-icon svg{width:29px;height:29px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}.pd-program-body h3{margin:0;font-size:20px;line-height:1.2}.pd-program-body p{margin:12px 0 0;color:#666c73;font-size:12.5px;line-height:1.62}.pd-coming-soon{margin:26px 0 0;text-align:center;color:#ff552f;font-size:12px;font-weight:700}
.pd-accreditation{width:min(90vw,1280px);margin:0 auto 72px;overflow:hidden;display:grid;grid-template-columns:1.45fr .7fr;border:1px solid #eee5df;border-radius:20px;background:#fffaf7;box-shadow:0 18px 42px rgba(23,18,15,.06)}.pd-accreditation-main{padding:38px 42px}.pd-accreditation-main h2{margin:10px 0 0;font-size:31px;letter-spacing:-.035em}.pd-accreditation-main>p{max-width:760px;margin:14px 0 0;color:#666b72;font-size:12.5px;line-height:1.65}.pd-accreditation-main a{margin-top:20px;display:inline-flex;gap:12px;color:#111;font-size:12px;font-weight:700;text-decoration:none}.pd-accreditation-main a span{color:#ff552f}
.pd-accreditation-stat{position:relative;min-height:300px;padding:32px;display:flex;align-items:flex-end;color:#fff;background:radial-gradient(circle at 70% 30%,rgba(255,82,47,.14),transparent 32%),#090c10}.pd-globe{position:absolute;top:20px;right:17px;width:190px;opacity:.5}.pd-globe svg{width:100%;fill:none;stroke:#ff5c35;stroke-width:1.2}.pd-accreditation-stat>div:last-child{position:relative;z-index:2}.pd-accreditation-stat strong{display:block;color:#ff6138;font-size:68px;line-height:.85;letter-spacing:-.06em}.pd-accreditation-stat span{display:block;margin-top:7px;font-size:17px;font-weight:700}.pd-accreditation-stat p{margin:4px 0 0;color:rgba(255,255,255,.58);font-size:10px}
.pd-closing{width:min(90vw,1280px);margin:0 auto 74px;padding:34px 38px;display:flex;align-items:center;justify-content:space-between;gap:28px;border-radius:18px;color:#fff;background:radial-gradient(circle at 75% 50%,rgba(255,82,47,.16),transparent 30%),#090c10}.pd-closing h2{margin:9px 0 0;font-size:30px}.pd-closing p:last-child{margin:8px 0 0;color:rgba(255,255,255,.66);font-size:12px}
@media(max-width:980px){.pd-hero{grid-template-columns:1fr}.pd-hero-copy{padding:54px 38px 44px}.pd-hero-visual{min-height:410px}.pd-intro-strip{margin-top:28px;grid-template-columns:1fr}.pd-intro-strip article{padding:18px 8px}.pd-intro-strip article:not(:last-child){border-right:0;border-bottom:1px solid #eadfd9}.pd-program-grid{grid-template-columns:1fr;width:min(92vw,650px)}.pd-accreditation{grid-template-columns:1fr}.pd-accreditation-stat{min-height:250px}}
@media(max-width:620px){.pd-hero-copy{padding:42px 20px 34px}.pd-hero h1{font-size:39px}.pd-hero-text{font-size:13.5px}.pd-hero-actions{align-items:stretch;flex-direction:column}.pd-hero-actions .button{width:100%}.pd-recognition{grid-template-columns:1fr}.pd-hero-visual{min-height:300px}.pd-hero-badge{right:16px;bottom:16px;left:16px;max-width:none}.pd-intro-strip{width:calc(100% - 28px);padding:12px 20px}.pd-programs{padding:58px 0 54px}.pd-section-heading{width:calc(100% - 28px)}.pd-section-heading h2{font-size:31px}.pd-program-grid{width:calc(100% - 28px)}.pd-program-image{height:180px}.pd-accreditation{width:calc(100% - 28px);margin-bottom:54px}.pd-accreditation-main{padding:30px 22px}.pd-accreditation-main h2{font-size:27px}.pd-closing{width:calc(100% - 28px);margin-bottom:56px;padding:28px 22px;align-items:stretch;flex-direction:column}.pd-closing h2{font-size:27px}.pd-closing .button{width:100%}}

/* ==========================================================
   PROFESSIONAL DEVELOPMENT — reference matched page
   ========================================================== */
.pd-detail-page{background:#fff}
.pd-ref-page{background:#fff;padding-bottom:74px}
.pd-ref-hero-wrap{position:relative;width:min(100%,1536px);margin:0 auto;padding-bottom:54px;background:#fff}
.pd-ref-hero{width:min(100% - 80px,1260px);height:380px;margin:0 auto;display:grid;grid-template-columns:52% 48%;overflow:hidden;background:#fff}
.pd-ref-copy{padding:54px 42px 36px 6px;display:flex;flex-direction:column;justify-content:flex-start}
.pd-ref-breadcrumb{display:flex;align-items:center;gap:9px;flex-wrap:wrap;color:#73777e;font-size:10px;line-height:1.3}
.pd-ref-breadcrumb a{color:#ff5a32;text-decoration:none}.pd-ref-breadcrumb span:last-child{color:#666b72}
.pd-ref-copy h1{margin:18px 0 0;max-width:550px;color:#0d0f12;font-size:clamp(35px,3.25vw,48px);font-weight:700;line-height:1.08;letter-spacing:-.045em}
.pd-ref-title-line{width:69px;height:2px;margin-top:18px;border-radius:999px;background:#ff552f}
.pd-ref-lead{max-width:550px;margin:18px 0 0;color:#60656d;font-size:12px;line-height:1.65}
.pd-ref-recognition{margin-top:16px;display:flex;align-items:center;gap:42px}
.pd-ref-mark{display:flex;align-items:center;color:#386ea8}.pd-ref-mark-ita strong{font-size:41px;line-height:1;font-weight:800;letter-spacing:-.07em}.pd-ref-mark-ita span{margin-left:9px;font-size:10px;line-height:1.08}
.pd-ref-mark-ipcih{gap:7px}.pd-ref-seal{width:35px;height:35px;display:grid;place-items:center;border:2px solid #3a6ea8;border-radius:50%;font-size:14px}.pd-ref-mark-ipcih strong{font-size:27px;letter-spacing:.05em}.pd-ref-mark-ipcih>span:last-child{align-self:flex-end;margin:0 0 3px -84px;padding-top:28px;font-size:7px;text-transform:uppercase;white-space:nowrap}
.pd-ref-hero-image{position:relative;overflow:hidden}.pd-ref-hero-image:before{content:"";position:absolute;z-index:1;inset:0 auto 0 0;width:18%;background:linear-gradient(90deg,#fff,rgba(255,255,255,.35),transparent);pointer-events:none}.pd-ref-hero-image img{width:100%;height:100%;display:block;object-fit:cover;object-position:center}
.pd-ref-focus-strip{position:absolute;z-index:3;left:50%;bottom:0;width:min(100% - 140px,1250px);min-height:112px;transform:translateX(-50%);display:grid;grid-template-columns:1.15fr repeat(3,1fr);align-items:center;border:1px solid #e9e5e2;border-radius:13px;background:rgba(255,255,255,.98);box-shadow:0 12px 32px rgba(20,16,13,.045)}
.pd-ref-focus-title,.pd-ref-focus-item{min-width:0;height:70px;padding:0 20px;display:grid;align-items:center}.pd-ref-focus-title{grid-template-columns:58px minmax(0,1fr);gap:12px}.pd-ref-focus-item{grid-template-columns:36px minmax(0,1fr);gap:10px;border-left:1px solid #e9e4e0}
.pd-ref-focus-badge{width:58px;height:58px;display:grid;place-items:center;border:1px solid #e8e3df;border-radius:50%;color:#111}.pd-ref-focus-badge svg{width:32px;height:32px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.pd-ref-focus-title h2{margin:0;font-size:13px;line-height:1.35}.pd-ref-focus-item>svg{width:31px;height:31px;fill:none;stroke:#ff552f;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}.pd-ref-focus-item h3{margin:0;font-size:11px;line-height:1.25}.pd-ref-focus-item p{margin:4px 0 0;color:#6a6f76;font-size:8.5px;line-height:1.45}
.pd-ref-programs{width:min(100% - 120px,1250px);margin:54px auto 0}.pd-ref-section-heading{text-align:center}.pd-ref-section-heading>p{margin:0;color:#ff552f;font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase}.pd-ref-section-heading h2{margin:5px 0 0;font-size:19px;line-height:1.2;letter-spacing:-.02em}.pd-ref-section-heading>span{display:block;width:48px;height:2px;margin:8px auto 0;border-radius:99px;background:#ff552f}
.pd-ref-program-grid{margin-top:20px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.pd-ref-card{position:relative;min-width:0;min-height:287px;overflow:hidden;border:1px solid #e9e6e3;border-radius:13px;background:#fff;box-shadow:0 10px 25px rgba(20,17,14,.055)}.pd-ref-card-media{height:118px;overflow:hidden}.pd-ref-card-media img{width:100%;height:100%;display:block;object-fit:cover}.pd-ref-card-icon{position:absolute;top:94px;left:15px;width:50px;height:50px;display:grid;place-items:center;border:1px solid #eee7e3;border-radius:50%;color:#ff552f;background:#fff;box-shadow:0 6px 16px rgba(20,16,13,.08)}.pd-ref-card-icon svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}.pd-ref-card-body{padding:27px 16px 16px}.pd-ref-card-body h3{margin:0;color:#111;font-size:14px;line-height:1.2}.pd-ref-card-body p{min-height:67px;margin:7px 0 0;color:#656a72;font-size:9.4px;line-height:1.48}.pd-ref-card-body a{margin-top:10px;display:inline-flex;align-items:center;gap:9px;color:#ff552f;font-size:9.5px;font-weight:700;text-decoration:none}.pd-ref-card-body a span{font-size:15px;line-height:1}
.pd-ref-accreditation{width:min(100% - 120px,1250px);min-height:91px;margin:17px auto 0;padding:17px 23px;display:grid;grid-template-columns:42px 1.55fr 1fr;gap:17px;align-items:center;border:1px solid #f1dfd5;border-radius:12px;background:#fff9f5}.pd-ref-accreditation-icon{width:38px;height:38px;color:#ff552f}.pd-ref-accreditation-icon svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}.pd-ref-accreditation-copy h2{margin:0;font-size:13px}.pd-ref-accreditation-copy p{max-width:650px;margin:4px 0 0;color:#656a70;font-size:8.8px;line-height:1.5}.pd-ref-accreditation-link{padding-left:25px;border-left:1px solid #e7ddd7}.pd-ref-accreditation-link span{display:block;color:#35383d;font-size:9px}.pd-ref-accreditation-link a{display:block;margin-top:7px;color:#ff552f;font-size:9px;text-decoration:none}
@media(min-width:1600px){.pd-ref-hero-wrap{width:1536px}.pd-ref-hero{width:1260px}.pd-ref-focus-strip,.pd-ref-programs,.pd-ref-accreditation{max-width:1250px}}
@media(max-width:1100px){.pd-ref-hero{width:min(100% - 48px,930px);height:auto;grid-template-columns:1fr}.pd-ref-copy{padding:46px 28px 35px}.pd-ref-hero-image{min-height:360px}.pd-ref-focus-strip{position:relative;left:auto;bottom:auto;width:min(100% - 48px,930px);margin:-22px auto 0;transform:none;grid-template-columns:repeat(2,1fr)}.pd-ref-focus-title,.pd-ref-focus-item{min-height:88px;height:auto}.pd-ref-focus-item:nth-child(3){border-left:0;border-top:1px solid #e9e4e0}.pd-ref-focus-item:nth-child(4){border-top:1px solid #e9e4e0}.pd-ref-programs{width:min(100% - 48px,930px);margin-top:48px}.pd-ref-program-grid{grid-template-columns:repeat(2,1fr)}.pd-ref-accreditation{width:min(100% - 48px,930px);grid-template-columns:42px 1fr}.pd-ref-accreditation-link{grid-column:2;border-left:0;padding-left:0}}
@media(max-width:620px){.pd-ref-page{padding-bottom:52px}.pd-ref-hero-wrap{padding-bottom:0}.pd-ref-hero{width:100%;grid-template-columns:1fr}.pd-ref-copy{padding:30px 18px 26px}.pd-ref-copy h1{font-size:34px}.pd-ref-lead{font-size:11.5px}.pd-ref-recognition{gap:20px;flex-wrap:wrap}.pd-ref-hero-image{min-height:255px}.pd-ref-focus-strip{width:calc(100% - 28px);margin:14px auto 0;grid-template-columns:1fr}.pd-ref-focus-title,.pd-ref-focus-item{min-height:78px;padding:12px 16px;border-left:0;border-top:1px solid #e9e4e0}.pd-ref-focus-title{border-top:0}.pd-ref-programs{width:calc(100% - 28px);margin-top:44px}.pd-ref-program-grid{grid-template-columns:1fr;gap:14px}.pd-ref-card{min-height:0}.pd-ref-card-media{height:170px}.pd-ref-card-icon{top:145px}.pd-ref-card-body p{min-height:0}.pd-ref-accreditation{width:calc(100% - 28px);grid-template-columns:34px 1fr;padding:16px}.pd-ref-accreditation-link{grid-column:1 / -1;padding-top:12px;border-top:1px solid #e7ddd7}.pd-ref-mark-ipcih>span:last-child{display:none}}


/* ==========================================================
   PROFESSIONAL DEVELOPMENT HERO — overlap / wrapper correction
   ========================================================== */

/* Give the hero enough bottom breathing room so the focus strip
   sits as a separate element instead of visually cutting into it. */
.pd-ref-hero {
  position: relative;
  min-height: 470px;
  padding-bottom: 34px;
  overflow: visible;
}

/* Keep both hero columns balanced and vertically clean. */
.pd-ref-hero-copy,
.pd-ref-hero-visual {
  min-height: 436px;
}

.pd-ref-hero-copy {
  padding-bottom: 38px;
}

.pd-ref-hero-visual {
  overflow: hidden;
}

/* The focus strip now belongs below the hero, not on top of it. */
.pd-ref-focus {
  position: relative;
  z-index: 5;
  width: min(90vw, 1280px);
  margin: 22px auto 0;
  transform: none;
  box-shadow:
    0 16px 36px rgba(20, 17, 14, .065),
    0 2px 7px rgba(20, 17, 14, .025);
}

/* Prevent any previous negative margin rules from pulling it upward. */
.pd-ref-hero + .pd-ref-focus {
  margin-top: 22px !important;
}

/* Large screens: keep the composition visually centered instead
   of letting the hero stretch too wide. */
@media (min-width: 1440px) {
  .pd-ref-hero {
    width: min(100%, 1600px);
    margin-inline: auto;
  }

  .pd-ref-focus {
    width: min(86vw, 1320px);
  }
}

/* Normal desktop */
@media (max-width: 1280px) and (min-width: 981px) {
  .pd-ref-hero {
    min-height: 450px;
    padding-bottom: 28px;
  }

  .pd-ref-hero-copy,
  .pd-ref-hero-visual {
    min-height: 420px;
  }

  .pd-ref-focus {
    width: min(92vw, 1180px);
    margin-top: 18px;
  }
}

/* Tablet: stack naturally and keep the strip clearly separated. */
@media (max-width: 980px) {
  .pd-ref-hero {
    min-height: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .pd-ref-hero-copy,
  .pd-ref-hero-visual {
    min-height: 0;
  }

  .pd-ref-hero-visual {
    min-height: 360px;
  }

  .pd-ref-focus,
  .pd-ref-hero + .pd-ref-focus {
    width: calc(100% - 36px);
    margin: 28px auto 0 !important;
  }
}

/* Mobile: no overlap, equal gutters, clean breathing room. */
@media (max-width: 620px) {
  .pd-ref-hero {
    overflow: hidden;
  }

  .pd-ref-hero-visual {
    min-height: 280px;
  }

  .pd-ref-focus,
  .pd-ref-hero + .pd-ref-focus {
    width: calc(100% - 28px);
    margin: 22px auto 0 !important;
  }
}


/* ==========================================================
   PROFESSIONAL DEVELOPMENT — Program Areas simplified
   3 source-supported learning areas, no redundant CTA links.
   ========================================================== */

.pd-ref-program-grid {
  width: min(86vw, 1120px);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pd-ref-program-card {
  min-height: 395px;
}

.pd-ref-program-image {
  height: 185px;
}

.pd-ref-program-body {
  padding: 40px 24px 28px;
}

.pd-ref-program-body h3 {
  font-size: 20px;
  line-height: 1.18;
}

.pd-ref-program-body p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.62;
}

.pd-ref-card-link,
.pd-ref-program-card a {
  display: none !important;
}

.pd-ref-coming-soon {
  margin: 24px 0 0;
  color: #ff552f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}

@media (max-width: 980px) {
  .pd-ref-program-grid {
    width: min(92vw, 720px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pd-ref-program-card {
    min-height: 0;
  }

  .pd-ref-program-image {
    height: 220px;
  }
}

@media (max-width: 620px) {
  .pd-ref-program-grid {
    width: calc(100% - 28px);
  }

  .pd-ref-program-image {
    height: 185px;
  }

  .pd-ref-program-body {
    padding: 38px 20px 24px;
  }

  .pd-ref-program-body h3 {
    font-size: 19px;
  }

  .pd-ref-program-body p {
    font-size: 12.5px;
  }

  .pd-ref-coming-soon {
    margin-top: 20px;
  }
}


/* ==========================================================
   PD PAGE V2 — reference-matched final layout
   ========================================================== */

.pd-v2-page {
  background: #fff;
  color: #101217;
}

.pd-v2-hero {
  background: #0d141f;
}

.pd-v2-hero-inner {
  width: min(100%, 1600px);
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
}

.pd-v2-hero-copy {
  padding: 44px clamp(44px, 5.2vw, 86px) 36px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 15%, rgba(255,91,45,.06), transparent 25%),
    linear-gradient(120deg, #121b29 0%, #0d141f 100%);
}

.pd-v2-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.66);
  font-size: 10px;
}

.pd-v2-breadcrumb a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
}

.pd-v2-hero-copy h1 {
  margin: 22px 0 0;
  max-width: 690px;
  color: #fff;
  font-size: clamp(38px, 3.55vw, 58px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.048em;
}

.pd-v2-hero-copy h1 span {
  color: #ff522f;
}

.pd-v2-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.83);
  font-size: 13px;
  line-height: 1.62;
}

.pd-v2-trust-row {
  margin-top: 26px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.pd-v2-trust-item {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.pd-v2-trust-item:first-child {
  padding-left: 0;
}

.pd-v2-trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.18);
}

.pd-v2-trust-item svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ff552f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-v2-hero-image {
  min-height: 430px;
  overflow: hidden;
}

.pd-v2-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Program Tracks */
.pd-v2-tracks {
  padding: 28px 0 20px;
}

.pd-v2-section-heading {
  width: min(92vw, 740px);
  margin: 0 auto 26px;
  text-align: center;
}

.pd-v2-section-heading h2 {
  margin: 0;
  color: #0b0d10;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.pd-v2-section-heading p {
  margin: 7px 0 0;
  color: #60656c;
  font-size: 12px;
}

.pd-v2-section-heading > span {
  width: 58px;
  height: 2px;
  margin: 10px auto 0;
  display: block;
  border-radius: 999px;
  background: #ff552f;
}

.pd-v2-track-grid {
  width: min(88vw, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pd-v2-track-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 370px;
  border: 1px solid #e9e6e3;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(18,15,13,.065);
}

.pd-v2-track-media {
  height: 155px;
  overflow: hidden;
}

.pd-v2-track-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pd-v2-track-icon {
  position: absolute;
  top: 129px;
  left: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ff552f;
  background: #fff;
  box-shadow: 0 6px 16px rgba(18,15,13,.08);
}

.pd-v2-track-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-v2-track-body {
  padding: 30px 18px 20px;
}

.pd-v2-track-body h3 {
  margin: 0;
  color: #111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.18;
}

.pd-v2-track-body p {
  min-height: 61px;
  margin: 8px 0 0;
  color: #5f646b;
  font-size: 11.2px;
  line-height: 1.48;
}

.pd-v2-track-body ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.pd-v2-track-body li {
  position: relative;
  padding-left: 18px;
  color: #555b62;
  font-size: 10.4px;
  line-height: 1.55;
}

.pd-v2-track-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff552f;
  font-weight: 800;
}

/* Accreditation bar */
.pd-v2-accreditation {
  width: min(92vw, 1320px);
  margin: 18px auto 0;
  padding: 18px 26px;
  display: grid;
  grid-template-columns: .85fr 1.45fr .75fr;
  gap: 30px;
  align-items: center;
  border: 1px solid #e9e7e5;
  border-radius: 16px;
  background: linear-gradient(90deg, #f5f8ff 0%, #f6f5fb 100%);
}

.pd-v2-ita-brand {
  display: flex;
  align-items: center;
  gap: 17px;
}

.pd-v2-ita-mark {
  color: #174c8a;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.06em;
}

.pd-v2-ita-brand strong {
  display: block;
  color: #171a1d;
  font-size: 12px;
  line-height: 1.2;
}

.pd-v2-ita-brand span {
  margin-top: 4px;
  display: block;
  color: #697078;
  font-size: 9px;
}

.pd-v2-accreditation-copy {
  padding-left: 30px;
  border-left: 1px solid #d9dbe0;
}

.pd-v2-accreditation-copy h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.pd-v2-accreditation-copy p {
  margin: 5px 0 0;
  color: #60656c;
  font-size: 10.5px;
  line-height: 1.48;
}

.pd-v2-accreditation-pills {
  display: grid;
  gap: 6px;
}

.pd-v2-accreditation-pills span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #1c2430;
  font-size: 9.5px;
  font-weight: 600;
  text-align: center;
}

/* Why choose + CTA */
.pd-v2-why {
  margin-top: 8px;
  padding: 16px 0 38px;
  background: linear-gradient(180deg, #fff9f5 0%, #fff 100%);
}

.pd-v2-why-heading {
  margin-bottom: 16px;
}

.pd-v2-why-grid {
  width: min(82vw, 1140px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.pd-v2-why-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pd-v2-why-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #ffd7c8;
  border-radius: 50%;
  color: #ff552f;
  background: #fff;
}

.pd-v2-why-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-v2-why-grid h3 {
  margin: 0;
  max-width: 125px;
  font-size: 12px;
  line-height: 1.25;
}

.pd-v2-cta {
  width: min(60vw, 780px);
  margin: 18px auto 0;
  padding: 14px 18px 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(100deg, #111820 0%, #3b170f 100%);
}

.pd-v2-cta h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.pd-v2-cta p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 9.5px;
}

.pd-v2-cta a {
  min-width: 160px;
  height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 6px;
  color: #fff;
  background: #ff552f;
  font-size: 10.5px;
  font-weight: 700;
  text-decoration: none;
}

/* Large screens */
@media (min-width: 1700px) {
  .pd-v2-hero-inner {
    max-width: 1680px;
  }

  .pd-v2-track-grid {
    max-width: 1320px;
  }

  .pd-v2-accreditation {
    max-width: 1380px;
  }
}

/* Tablet */
@media (max-width: 1020px) {
  .pd-v2-hero-inner {
    grid-template-columns: 1fr;
  }

  .pd-v2-hero-image {
    min-height: 360px;
  }

  .pd-v2-track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-v2-accreditation {
    grid-template-columns: 1fr;
  }

  .pd-v2-accreditation-copy {
    padding-left: 0;
    padding-top: 15px;
    border-left: 0;
    border-top: 1px solid #d9dbe0;
  }

  .pd-v2-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-v2-cta {
    width: min(88vw, 780px);
  }
}

/* Mobile */
@media (max-width: 620px) {
  .pd-v2-hero-copy {
    padding: 34px 20px 30px;
  }

  .pd-v2-hero-copy h1 {
    font-size: 36px;
  }

  .pd-v2-lead {
    font-size: 12.5px;
  }

  .pd-v2-trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .pd-v2-trust-item,
  .pd-v2-trust-item:first-child {
    width: 100%;
    padding: 0;
    border-right: 0 !important;
  }

  .pd-v2-hero-image {
    min-height: 280px;
  }

  .pd-v2-tracks {
    padding-top: 24px;
  }

  .pd-v2-section-heading h2 {
    font-size: 25px;
  }

  .pd-v2-track-grid {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .pd-v2-track-card {
    min-height: 0;
  }

  .pd-v2-track-media {
    height: 180px;
  }

  .pd-v2-track-icon {
    top: 153px;
  }

  .pd-v2-track-body p {
    min-height: 0;
  }

  .pd-v2-accreditation {
    width: calc(100% - 28px);
    padding: 20px;
  }

  .pd-v2-why-grid {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pd-v2-why-grid article {
    justify-content: flex-start;
  }

  .pd-v2-cta {
    width: calc(100% - 28px);
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .pd-v2-cta a {
    width: 100%;
  }
}


/* ==========================================================
   PD HERO — exact reference match
   ========================================================== */

.pd-v2-hero {
  background: #0e1622;
  overflow: hidden;
}

.pd-v2-hero-inner {
  width: 100%;
  max-width: none;
  min-height: 292px;
  grid-template-columns: 47.5% 52.5%;
}

.pd-v2-hero-copy {
  min-height: 292px;
  padding:
    34px
    clamp(42px, 6.1vw, 112px)
    28px
    clamp(42px, 7.5vw, 145px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 85, 47, .04), transparent 24%),
    linear-gradient(118deg, #111a28 0%, #0d141f 100%);
}

.pd-v2-breadcrumb {
  margin: 0 0 12px;
  gap: 6px;
  font-size: 8px;
  line-height: 1;
  color: rgba(255,255,255,.68);
}

.pd-v2-breadcrumb a {
  color: rgba(255,255,255,.86);
}

.pd-v2-hero-copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(31px, 2.7vw, 44px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.043em;
}

.pd-v2-hero-copy h1 span {
  display: inline-block;
  margin-top: 2px;
  color: #ff512f;
}

.pd-v2-lead {
  max-width: 565px;
  margin: 15px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 9.8px;
  line-height: 1.48;
}

.pd-v2-trust-row {
  margin-top: 17px;
  flex-wrap: nowrap;
}

.pd-v2-trust-item {
  padding: 0 19px;
  gap: 7px;
  font-size: 8.4px;
  line-height: 1;
}

.pd-v2-trust-item:first-child {
  padding-left: 0;
}

.pd-v2-trust-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
}

.pd-v2-hero-image {
  min-height: 292px;
  height: 292px;
}

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

/* Large screens: scale the hero proportionally without becoming too tall. */
@media (min-width: 1600px) {
  .pd-v2-hero-inner {
    min-height: 330px;
  }

  .pd-v2-hero-copy,
  .pd-v2-hero-image {
    min-height: 330px;
    height: 330px;
  }

  .pd-v2-hero-copy h1 {
    font-size: 48px;
  }

  .pd-v2-lead {
    font-size: 10.8px;
    max-width: 610px;
  }

  .pd-v2-trust-item {
    font-size: 9px;
  }
}

/* Laptop / small desktop */
@media (max-width: 1180px) and (min-width: 901px) {
  .pd-v2-hero-inner {
    grid-template-columns: 49% 51%;
    min-height: 310px;
  }

  .pd-v2-hero-copy {
    min-height: 310px;
    padding-left: 54px;
    padding-right: 36px;
  }

  .pd-v2-hero-image {
    min-height: 310px;
    height: 310px;
  }

  .pd-v2-hero-copy h1 {
    font-size: 38px;
  }

  .pd-v2-lead {
    font-size: 9.5px;
  }

  .pd-v2-trust-item {
    padding: 0 12px;
    font-size: 7.8px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .pd-v2-hero-inner {
    grid-template-columns: 1fr;
  }

  .pd-v2-hero-copy {
    min-height: auto;
    padding: 42px 32px 30px;
  }

  .pd-v2-hero-copy h1 {
    font-size: 40px;
  }

  .pd-v2-lead {
    max-width: 620px;
    font-size: 12px;
  }

  .pd-v2-trust-row {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 12px 0;
  }

  .pd-v2-trust-item {
    font-size: 10px;
  }

  .pd-v2-hero-image {
    min-height: 330px;
    height: 330px;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .pd-v2-hero-copy {
    padding: 32px 20px 26px;
  }

  .pd-v2-breadcrumb {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .pd-v2-hero-copy h1 {
    font-size: 34px;
  }

  .pd-v2-lead {
    margin-top: 14px;
    font-size: 11.5px;
    line-height: 1.55;
  }

  .pd-v2-trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .pd-v2-trust-item,
  .pd-v2-trust-item:first-child {
    padding: 0;
    border-right: 0;
    font-size: 10px;
  }

  .pd-v2-trust-item svg {
    width: 20px;
    height: 20px;
  }

  .pd-v2-hero-image {
    min-height: 255px;
    height: 255px;
  }
}


/* ==========================================================
   PD HERO — brand-theme correction
   Replace navy/blue treatment with charcoal + warm orange.
   ========================================================== */

.pd-v2-hero {
  background: #090909;
}

.pd-v2-hero-copy {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 84, 47, .095), transparent 30%),
    radial-gradient(circle at 68% 72%, rgba(255, 113, 38, .045), transparent 38%),
    linear-gradient(118deg, #111111 0%, #0b0b0b 58%, #080808 100%);
}

/* Slight warm blend where copy meets the image, without hiding the photo. */
.pd-v2-hero-image {
  position: relative;
}

.pd-v2-hero-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 15%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(9, 9, 9, .68) 0%,
    rgba(9, 9, 9, .24) 46%,
    transparent 100%
  );
}

.pd-v2-hero-image img {
  position: relative;
  z-index: 0;
}

/* Keep all hero whites neutral/warm rather than blue-grey. */
.pd-v2-breadcrumb {
  color: rgba(255, 255, 255, .62);
}

.pd-v2-breadcrumb a {
  color: rgba(255, 255, 255, .84);
}

.pd-v2-lead {
  color: rgba(255, 255, 255, .80);
}

.pd-v2-trust-item:not(:last-child) {
  border-right-color: rgba(255, 255, 255, .14);
}


/* ==========================================================
   IPQEC + SHORT DEVELOPMENT COURSE DETAIL PAGES
   ========================================================== */

.program-detail-page {
  background: #fff;
  color: #111;
}

.program-detail-hero {
  background: #090909;
}

.program-detail-hero-inner {
  width: 100%;
  min-height: 390px;
  display: grid;
  grid-template-columns: 50% 50%;
}

.program-detail-copy {
  padding: 46px clamp(42px, 6vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,84,47,.10), transparent 29%),
    linear-gradient(118deg, #111 0%, #0b0b0b 65%, #080808 100%);
}

.program-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-size: 9px;
}

.program-detail-breadcrumb a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}

.program-detail-kicker {
  margin: 20px 0 0;
  color: #ff552f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.program-detail-copy h1 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(43px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
}

.program-detail-copy h1 span {
  color: #ff552f;
}

.program-detail-copy h2 {
  max-width: 650px;
  margin: 13px 0 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.3;
}

.program-detail-lead {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  line-height: 1.65;
}

.program-detail-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.program-detail-trust > div {
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 9.5px;
  font-weight: 600;
}

.program-detail-trust > div:first-child {
  padding-left: 0;
}

.program-detail-trust > div:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.16);
}

.program-detail-trust svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #ff552f;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-detail-hero-image {
  min-height: 390px;
  overflow: hidden;
}

.program-detail-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Overview / content */
.program-detail-overview {
  padding: 64px 0 54px;
}

.program-detail-overview-inner {
  width: min(90vw, 1180px);
  margin: 0 auto;
}

.program-detail-overview-heading {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.program-detail-overview-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 3vw, 46px);
  letter-spacing: -.04em;
  line-height: 1.08;
}

.program-detail-overview-heading > p:last-child {
  max-width: 680px;
  margin: 11px auto 0;
  color: #6b7077;
  font-size: 13px;
  line-height: 1.55;
}

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

.program-detail-facts article {
  padding: 28px 24px;
  border: 1px solid #ebe7e3;
  border-radius: 16px;
  background: linear-gradient(180deg,#fff 0%,#fffaf7 100%);
  box-shadow: 0 16px 34px rgba(22,18,15,.055);
}

.program-detail-fact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ff552f;
  background: #fff1eb;
}

.program-detail-fact-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-detail-facts h3 {
  margin: 17px 0 0;
  font-size: 17px;
  line-height: 1.2;
}

.program-detail-facts p {
  margin: 9px 0 0;
  color: #656b72;
  font-size: 12px;
  line-height: 1.58;
}

/* Short course cards */
.short-course-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px;
}

.short-course-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #ebe7e4;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(22,18,15,.06);
}

.short-course-media {
  height: 285px;
  overflow: hidden;
}

.short-course-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.short-course-body {
  position: relative;
  padding: 38px 23px 26px;
}

.short-course-icon {
  position: absolute;
  top: -27px;
  left: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #eee4df;
  border-radius: 50%;
  color: #ff552f;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20,16,13,.07);
}

.short-course-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.short-course-body h3 {
  margin: 0;
  font-size: 19px;
}

.short-course-body p {
  margin: 10px 0 0;
  color: #666c73;
  font-size: 12.5px;
  line-height: 1.62;
}

.short-course-coming {
  margin: 24px 0 0;
  text-align: center;
  color: #ff552f;
  font-size: 12px;
  font-weight: 700;
}

/* Accreditation */
.program-detail-accreditation {
  width: min(90vw, 1260px);
  margin: 0 auto 56px;
  padding: 20px 26px;
  display: grid;
  grid-template-columns: .85fr 1.5fr .8fr;
  gap: 30px;
  align-items: center;
  border: 1px solid #e8e7e5;
  border-radius: 16px;
  background: linear-gradient(90deg,#f7f8fb 0%,#f7f5f4 100%);
}

.program-detail-accreditation-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.program-detail-accreditation-brand img{
  width: 100px;
  height: 100px;
}

.program-detail-ita-mark {
  color: #174c8a;
  font-size: 43px;
  font-weight: 800;
  letter-spacing: -.06em;
}

.program-detail-accreditation-brand strong {
  display: block;
  font-size: 11.5px;
  line-height: 1.25;
}

.program-detail-accreditation-brand span {
  margin-top: 4px;
  display: block;
  color: #6c7178;
  font-size: 9px;
}

.program-detail-accreditation-copy {
  padding-left: 28px;
  border-left: 1px solid #dadce0;
}

.program-detail-accreditation-copy h2 {
  margin: 0;
  font-size: 17px;
}

.program-detail-accreditation-copy p {
  margin: 6px 0 0;
  color: #636970;
  font-size: 10.5px;
  line-height: 1.5;
}

.program-detail-accreditation-tags {
  display: grid;
  gap: 6px;
}

.program-detail-accreditation-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: #1c232b;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* CTA */
.program-detail-cta {
  width: min(90vw, 1100px);
  margin: 0 auto 70px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 17px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 50%, rgba(255,84,47,.16), transparent 30%),
    #0a0a0a;
}

.program-detail-cta h2 {
  margin: 8px 0 0;
  font-size: 28px;
  line-height: 1.15;
}

.program-detail-cta p:last-child {
  margin: 8px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 11px;
}

.program-detail-cta a {
  min-width: 150px;
  height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 7px;
  color: #fff;
  background: #ff552f;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 1600px) {
  .program-detail-hero-inner {
    min-height: 430px;
  }

  .program-detail-hero-image {
    min-height: 430px;
  }

  .program-detail-copy h1 {
    font-size: 68px;
  }
}

@media (max-width: 980px) {
  .program-detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .program-detail-hero-image {
    min-height: 340px;
  }

  .program-detail-facts,
  .short-course-grid {
    grid-template-columns: 1fr;
  }

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

  .program-detail-accreditation-copy {
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid #dadce0;
  }
}

@media (max-width: 620px) {
  .program-detail-copy {
    padding: 34px 20px 30px;
  }

  .program-detail-copy h1 {
    font-size: 40px;
  }

  .program-detail-copy h2 {
    font-size: 17px;
  }

  .program-detail-lead {
    font-size: 12px;
  }

  .program-detail-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .program-detail-trust > div,
  .program-detail-trust > div:first-child {
    padding: 0;
    border-right: 0;
  }

  .program-detail-hero-image {
    min-height: 270px;
  }

  .program-detail-overview {
    padding: 50px 0 44px;
  }

  .program-detail-overview-inner,
  .program-detail-accreditation,
  .program-detail-cta {
    width: calc(100% - 28px);
  }

  .program-detail-overview-heading h2 {
    font-size: 30px;
  }

  .short-course-media {
    /* height: 180px; */
  }

  .program-detail-accreditation {
    padding: 20px;
    margin-bottom: 46px;
  }

  .program-detail-cta {
    padding: 26px 22px;
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 54px;
  }

  .program-detail-cta h2 {
    font-size: 25px;
  }

  .program-detail-cta a {
    width: 100%;
  }
}


/* ==========================================================
   IPQEC + SHORT COURSES — FINAL HERO REFINEMENT
   Distinct images + tighter reference-matched proportions.
   ========================================================== */

.program-detail-hero {
  overflow: hidden;
  background: #090909;
}

.program-detail-hero-inner {
  min-height: 330px;
  grid-template-columns: 50% 50%;
}

.program-detail-copy {
  min-height: 330px;
  padding:
    30px
    clamp(34px, 5.1vw, 88px)
    26px
    clamp(38px, 6.7vw, 118px);
  justify-content: center;
}

.program-detail-breadcrumb {
  margin-bottom: 10px;
  gap: 6px;
  font-size: 8px;
  line-height: 1;
}

.program-detail-kicker {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.1;
}

.program-detail-copy h1 {
  margin-top: 8px;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: .98;
}

.program-detail-copy h2 {
  max-width: 560px;
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.25;
}

.program-detail-lead {
  max-width: 590px;
  margin-top: 12px;
  font-size: 11.4px;
  line-height: 1.54;
}

.program-detail-trust {
  margin-top: 17px;
  flex-wrap: nowrap;
}

.program-detail-trust > div {
  padding: 0 16px;
  gap: 7px;
  font-size: 8.4px;
  line-height: 1.25;
}

.program-detail-trust > div:first-child {
  padding-left: 0;
}

.program-detail-trust svg {
  width: 20px;
  height: 20px;
}

.program-detail-hero-image {
  position: relative;
  min-height: 330px;
  height: 330px;
  overflow: hidden;
}

.program-detail-hero-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 14%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(9,9,9,.64), rgba(9,9,9,.16), transparent);
}

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

/* IPQEC-specific photo framing */
body:has(.program-detail-copy h1 span:first-child:last-child) .program-detail-hero-image img {
  object-position: center 44%;
}

/* Large displays: scale modestly, do not over-stretch. */
@media (min-width: 1600px) {
  .program-detail-hero-inner,
  .program-detail-copy,
  .program-detail-hero-image {
    min-height: 370px;
  }

  .program-detail-hero-image {
    height: 370px;
  }

  .program-detail-copy h1 {
    font-size: 64px;
  }

  .program-detail-copy h2 {
    font-size: 19px;
  }

  .program-detail-lead {
    font-size: 12px;
  }
}

/* Laptop */
@media (max-width: 1200px) and (min-width: 981px) {
  .program-detail-hero-inner {
    min-height: 350px;
    grid-template-columns: 51% 49%;
  }

  .program-detail-copy {
    min-height: 350px;
    padding-left: 46px;
    padding-right: 34px;
  }

  .program-detail-hero-image {
    min-height: 350px;
    height: 350px;
  }

  .program-detail-copy h1 {
    font-size: 48px;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .program-detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .program-detail-copy {
    min-height: auto;
    padding: 38px 32px 30px;
  }

  .program-detail-copy h1 {
    font-size: 44px;
  }

  .program-detail-copy h2 {
    font-size: 18px;
  }

  .program-detail-lead {
    font-size: 12.2px;
  }

  .program-detail-trust {
    flex-wrap: wrap;
    gap: 11px 0;
  }

  .program-detail-trust > div {
    font-size: 9.5px;
  }

  .program-detail-hero-image {
    min-height: 320px;
    height: 320px;
  }

  .program-detail-hero-image::before {
    display: none;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .program-detail-copy {
    padding: 30px 20px 26px;
  }

  .program-detail-breadcrumb {
    margin-bottom: 11px;
  }

  .program-detail-kicker {
    margin-top: 8px;
    font-size: 10px;
  }

  .program-detail-copy h1 {
    font-size: 38px;
  }

  .program-detail-copy h2 {
    font-size: 16px;
  }

  .program-detail-lead {
    font-size: 11.5px;
    line-height: 1.55;
  }

  .program-detail-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .program-detail-trust > div,
  .program-detail-trust > div:first-child {
    width: 100%;
    padding: 0;
    border-right: 0;
    font-size: 9.5px;
  }

  .program-detail-hero-image {
    min-height: 245px;
    height: 245px;
  }
}


/* ==========================================================
   PROGRAM DETAIL HERO — FINAL APPROVED REFERENCE MATCH
   Fixes squeeze, spacing, crop and large-screen proportions.
   ========================================================== */
.program-detail-hero{overflow:hidden;background:#090909}
.program-detail-hero-inner{
  width:100%;
  max-width:none;
  min-height:430px;
  display:grid;
  grid-template-columns:49.5% 50.5%;
}
.program-detail-copy{
  min-height:430px;
  padding:38px clamp(42px,4.9vw,82px) 34px clamp(58px,6.3vw,102px);
  justify-content:center;
  background:
    radial-gradient(circle at 20% 18%,rgba(255,82,47,.075),transparent 28%),
    linear-gradient(118deg,#111 0%,#0b0b0b 62%,#080808 100%);
}
.program-detail-breadcrumb{margin:0 0 16px;gap:7px;font-size:9px;line-height:1}
.program-detail-kicker{margin:0 0 10px;color:#ff552f;font-size:12px;font-weight:700;line-height:1.1;letter-spacing:.045em}
.program-detail-copy h1{margin:0;max-width:590px;color:#fff;font-size:clamp(50px,4.05vw,64px);font-weight:800;line-height:.98;letter-spacing:-.045em}
.program-detail-copy h1 span{color:#ff552f}
.program-detail-copy h2{max-width:620px;margin:13px 0 0;color:#fff;font-size:22px;font-weight:700;line-height:1.27;letter-spacing:-.02em}
.program-detail-lead{max-width:650px;margin:18px 0 0;color:rgba(255,255,255,.80);font-size:12.5px;line-height:1.62}
.program-detail-trust{margin-top:26px;display:flex;align-items:center;flex-wrap:nowrap}
.program-detail-trust>div{padding:0 20px;gap:9px;font-size:9.5px;line-height:1.25}
.program-detail-trust>div:first-child{padding-left:0}
.program-detail-trust>div:not(:last-child){border-right:1px solid rgba(255,255,255,.15)}
.program-detail-trust svg{width:25px;height:25px}

.program-detail-hero-image{position:relative;min-height:430px;height:430px;overflow:hidden}
.program-detail-hero-image::before{
  content:"";
  position:absolute;
  z-index:1;
  inset:0 auto 0 0;
  width:17%;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(9,9,9,.78) 0%,rgba(9,9,9,.36) 40%,rgba(9,9,9,.08) 72%,transparent 100%);
}
.program-detail-hero-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center center;
  transform:none!important;
}

/* Large screens */
@media (min-width:1600px){
  .program-detail-hero-inner,.program-detail-copy,.program-detail-hero-image{min-height:470px}
  .program-detail-hero-image{height:470px}
  .program-detail-copy{padding-left:clamp(90px,7vw,145px);padding-right:clamp(64px,5vw,105px)}
  .program-detail-copy h1{font-size:68px}
  .program-detail-copy h2{font-size:24px}
  .program-detail-lead{font-size:13px}
}

/* Typical laptop / desktop */
@media (max-width:1366px) and (min-width:981px){
  .program-detail-hero-inner{grid-template-columns:50% 50%;min-height:390px}
  .program-detail-copy{min-height:390px;padding-left:58px;padding-right:38px}
  .program-detail-hero-image{min-height:390px;height:390px}
  .program-detail-copy h1{font-size:52px}
  .program-detail-copy h2{font-size:19px}
  .program-detail-lead{font-size:11.5px}
  .program-detail-trust>div{padding:0 14px;font-size:8.8px}
}

/* Tablet */
@media (max-width:980px){
  .program-detail-hero-inner{grid-template-columns:1fr;min-height:0}
  .program-detail-copy{min-height:auto;padding:42px 34px 32px}
  .program-detail-copy h1{font-size:46px}
  .program-detail-copy h2{font-size:20px}
  .program-detail-lead{max-width:680px;font-size:12.5px}
  .program-detail-trust{margin-top:22px;flex-wrap:wrap;gap:12px 0}
  .program-detail-trust>div{font-size:9.5px}
  .program-detail-hero-image{min-height:360px;height:360px}
  .program-detail-hero-image::before{display:none}
}

/* Mobile */
@media (max-width:620px){
  .program-detail-copy{padding:32px 20px 28px}
  .program-detail-breadcrumb{margin-bottom:12px;font-size:8px}
  .program-detail-kicker{font-size:10.5px}
  .program-detail-copy h1{font-size:39px}
  .program-detail-copy h2{font-size:17px}
  .program-detail-lead{margin-top:14px;font-size:11.5px;line-height:1.55}
  .program-detail-trust{align-items:flex-start;flex-direction:column;gap:10px}
  .program-detail-trust>div,.program-detail-trust>div:first-child{width:100%;padding:0;border-right:0;font-size:9.5px}
  .program-detail-hero-image{min-height:260px;height:260px}
}


/* ==========================================================
   IELTS & CAREER GUIDANCE PAGE
   Source-grounded combined detail page
   ========================================================== */
.icg-page {
  background: #fff;
  color: #111;
}

.icg-hero {
  padding: 70px 0 66px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 22%, rgba(255,85,47,.15), transparent 24%),
    radial-gradient(circle at 20% 18%, rgba(255,85,47,.07), transparent 23%),
    #090909;
}

.icg-hero-inner {
  width: min(88vw, 1180px);
  margin: 0 auto;
}

.icg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
}

.icg-breadcrumb a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.icg-eyebrow {
  margin: 0;
  color: #ff552f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.icg-hero .icg-eyebrow {
  margin-top: 30px;
}

.icg-hero h1 {
  max-width: 780px;
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -.055em;
}

.icg-hero h1 span {
  color: #ff552f;
}

.icg-hero-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.7;
}

.icg-hero-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icg-hero-links a {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,85,47,.64);
  border-radius: 7px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.icg-hero-links a:first-child {
  border-color: #ff552f;
  background: #ff552f;
}

/* Main program blocks */
.icg-program {
  width: min(90vw, 1280px);
  margin: 72px auto 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  border: 1px solid #eee7e2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(22,17,14,.07);
}

.icg-program-media {
  min-height: 590px;
  overflow: hidden;
  background: #111;
}

.icg-program-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.icg-program-content {
  padding: 52px 50px 46px;
}

.icg-program-content h2 {
  max-width: 690px;
  margin: 10px 0 0;
  color: #111;
  font-size: clamp(34px, 3.2vw, 49px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.icg-program-content > p {
  margin: 17px 0 0;
  color: #61676e;
  font-size: 13px;
  line-height: 1.68;
}

.icg-list-title {
  margin-top: 27px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.icg-feature-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 9px 12px;
}

.icg-feature-grid span {
  position: relative;
  min-height: 38px;
  padding: 10px 12px 10px 34px;
  display: flex;
  align-items: center;
  border: 1px solid #eee6e1;
  border-radius: 9px;
  color: #30343a;
  background: #fffaf7;
  font-size: 10.5px;
  font-weight: 500;
}

.icg-feature-grid span::before {
  content: "✓";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff552f;
  font-size: 13px;
  font-weight: 800;
}

.icg-feature-grid span:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.icg-instructor {
  margin-top: 24px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  gap: 13px;
  align-items: center;
  border-left: 3px solid #ff552f;
  border-radius: 0 9px 9px 0;
  background: #faf8f6;
}

.icg-instructor-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ff552f;
  background: #fff0ea;
}

.icg-instructor-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icg-instructor strong {
  display: block;
  color: #17191c;
  font-size: 11.5px;
  line-height: 1.35;
}

.icg-instructor p {
  margin: 4px 0 0;
  color: #6b7077;
  font-size: 10.5px;
  line-height: 1.45;
}

.icg-closing-line {
  margin-top: 22px !important;
  color: #111 !important;
  font-weight: 600;
}

.icg-career {
  grid-template-columns: 1.08fr .92fr;
}

.icg-career-media img {
  object-position: 60% center;
}

.icg-feature-grid-career {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

/* Final source-derived next-step strip */
.icg-next-step {
  width: min(90vw, 1160px);
  margin: 72px auto 74px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 17px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 50%, rgba(255,85,47,.17), transparent 27%),
    #0a0a0a;
}

.icg-next-step h2 {
  margin: 6px 0 0;
  font-size: 30px;
  line-height: 1.1;
}

.icg-next-step a {
  min-width: 190px;
  height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 7px;
  color: #fff;
  background: #ff552f;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 1600px) {
  .icg-program {
    max-width: 1360px;
  }

  .icg-program-media {
    min-height: 630px;
  }

  .icg-program-content {
    padding: 58px 58px 52px;
  }
}

@media (max-width: 980px) {
  .icg-program,
  .icg-career {
    grid-template-columns: 1fr;
  }

  .icg-program-media {
    min-height: 390px;
  }

  .icg-career .icg-program-content {
    order: 2;
  }

  .icg-career .icg-program-media {
    order: 1;
  }
}

@media (max-width: 620px) {
  .icg-hero {
    padding: 48px 0 44px;
  }

  .icg-hero-inner {
    width: calc(100% - 28px);
  }

  .icg-hero .icg-eyebrow {
    margin-top: 24px;
  }

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

  .icg-hero-copy {
    font-size: 12.5px;
  }

  .icg-hero-links {
    flex-direction: column;
  }

  .icg-hero-links a {
    width: 100%;
    justify-content: space-between;
  }

  .icg-program {
    width: calc(100% - 28px);
    margin-top: 48px;
  }

  .icg-program-media {
    min-height: 280px;
  }

  .icg-program-content {
    padding: 32px 20px 28px;
  }

  .icg-program-content h2 {
    font-size: 31px;
  }

  .icg-program-content > p {
    font-size: 12px;
  }

  .icg-feature-grid,
  .icg-feature-grid-career {
    grid-template-columns: 1fr;
  }

  .icg-feature-grid span:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .icg-next-step {
    width: calc(100% - 28px);
    margin-top: 48px;
    margin-bottom: 54px;
    padding: 25px 22px;
    align-items: stretch;
    flex-direction: column;
  }

  .icg-next-step h2 {
    font-size: 27px;
  }

  .icg-next-step a {
    width: 100%;
  }
}


/* ==========================================================
   CONSISTENT NON-HOME PAGE WIDTH / SPACING
   ========================================================== */
:root {
  --inner-page-width: 1240px;
  --inner-page-gutter: 5vw;
  --inner-section-space: 72px;
}

.program-detail-overview-inner,
.pd-v2-track-grid,
.pd-v2-accreditation,
.pd-v2-why-grid,
.icg-program,
.icg-next-step {
  max-width: var(--inner-page-width);
}

@media (max-width: 900px) {
  :root { --inner-section-space: 58px; }
}

@media (max-width: 620px) {
  :root { --inner-section-space: 46px; }
}

/* ==========================================================
   PRIVACY POLICY / TERMS & CONDITIONS
   ========================================================== */
.policy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 6%, rgba(255,84,47,.055), transparent 24%),
    #0e1318;
  color: #fff;
}

.policy-hero {
  padding: 62px 0 28px;
}

.policy-hero-inner {
  width: min(90vw, 1120px);
  margin: 0 auto;
}

.policy-brand {
  margin: 0;
  color: #ff7a1a;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.policy-tagline {
  margin: 7px 0 0;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}

.policy-hero h1 {
  margin: 18px 0 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #ee7919;
  color: #fff;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.policy-hero > .policy-hero-inner > p:nth-of-type(3) {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.6;
}

.policy-hero-inner > span {
  margin-top: 13px;
  display: block;
  color: rgba(255,255,255,.42);
  font-size: 10px;
}

.policy-content {
  width: min(90vw, 1120px);
  margin: 0 auto;
  padding: 0 0 70px;
  display: grid;
  gap: 12px;
}

.policy-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 4px minmax(0,1fr);
  border: 1px solid rgba(255,255,255,.035);
  border-radius: 5px;
  background: rgba(255,255,255,.025);
}

.policy-card::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  background: #ef7919;
}

.policy-card-number {
  display: none;
}

.policy-card-content {
  grid-column: 2;
  padding: 18px 18px 17px;
}

.policy-card h2 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.policy-card p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.67);
  font-size: 11.5px;
  line-height: 1.5;
}

.policy-card ul {
  margin: 9px 0 0;
  padding-left: 20px;
  color: rgba(255,255,255,.67);
}

.policy-card li {
  padding-left: 2px;
  font-size: 11.5px;
  line-height: 1.5;
}

.policy-card li + li {
  margin-top: 4px;
}

.policy-card strong {
  color: rgba(255,255,255,.86);
}

.policy-contact-line {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  color: #ef8a28;
  font-size: 11px;
  font-weight: 700;
}

.policy-contact-line a {
  color: #ef8a28;
  text-decoration: none;
}

@media (min-width: 1500px) {
  .policy-hero-inner,
  .policy-content {
    max-width: 1240px;
  }

  .policy-card-content {
    padding: 20px 22px;
  }

  .policy-card p,
  .policy-card li {
    font-size: 12px;
  }
}

@media (max-width: 620px) {
  .policy-hero {
    padding: 44px 0 24px;
  }

  .policy-hero-inner,
  .policy-content {
    width: calc(100% - 28px);
  }

  .policy-brand {
    font-size: 23px;
  }

  .policy-hero h1 {
    font-size: 28px;
  }

  .policy-card-content {
    padding: 16px 14px;
  }

  .policy-card h2 {
    font-size: 13px;
  }

  .policy-card p,
  .policy-card li {
    font-size: 11px;
  }

  .policy-contact-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-contact-line > span {
    display: none;
  }
}


/* ==========================================================
   CONTACT PAGE — premium modern layout
   ========================================================== */

.contact-page {
  background: #fff;
  color: #111;
}

.contact-hero {
  padding: 70px 0 74px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(255,84,47,.16), transparent 24%),
    radial-gradient(circle at 14% 8%, rgba(255,84,47,.06), transparent 24%),
    linear-gradient(120deg, #101010 0%, #080808 68%, #0b0b0b 100%);
}

.contact-hero-inner {
  width: min(88vw, 1160px);
  margin: 0 auto;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
}

.contact-breadcrumb a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.contact-hero-copy {
  max-width: 850px;
  margin-top: 28px;
}

.contact-eyebrow {
  margin: 0;
  color: #ff552f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 13px 0 0;
  color: #fff;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -.055em;
}

.contact-hero h1 span {
  color: #ff552f;
}

.contact-hero-copy > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
}

/* Main contact block */
.contact-main {
  padding: 74px 0 66px;
}

.contact-main-grid {
  width: min(90vw, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
}

.contact-info-panel,
.contact-form-card {
  border: 1px solid #eee7e3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(21,17,14,.07);
}

.contact-info-panel {
  padding: 38px 34px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,84,47,.045), transparent 25%),
    linear-gradient(180deg, #fffdfb 0%, #fff 100%);
}

.contact-info-head h2,
.contact-form-head h2 {
  margin: 10px 0 0;
  color: #111;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.contact-info-head > p:last-child,
.contact-form-head > p:last-child {
  margin: 12px 0 0;
  color: #676c73;
  font-size: 12.5px;
  line-height: 1.6;
}

.contact-methods {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-method {
  min-height: 74px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) auto;
  gap: 13px;
  align-items: center;
  border: 1px solid #eee7e2;
  border-radius: 13px;
  color: #111;
  background: #fff;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-method:not(.contact-method-static):hover {
  transform: translateY(-2px);
  border-color: rgba(255,85,47,.32);
  box-shadow: 0 12px 24px rgba(20,16,13,.055);
}

.contact-method-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ff552f;
  background: #fff1eb;
}

.contact-method-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}

.contact-method small {
  margin-top: 4px;
  display: block;
  color: #6c7178;
  font-size: 10.5px;
}

.contact-method i {
  color: #ff552f;
  font-size: 18px;
  font-style: normal;
}

.contact-help-card {
  margin-top: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  border-radius: 14px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,84,47,.15), transparent 28%),
    #0b0b0b;
}

.contact-help-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,85,47,.34);
  border-radius: 50%;
  color: #ff552f;
}

.contact-help-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-help-card strong {
  font-size: 12px;
}

.contact-help-card p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.67);
  font-size: 10.5px;
  line-height: 1.55;
}

/* Form */
.contact-form-card {
  padding: 38px 38px 34px;
}

.contact-form {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: #222;
  font-size: 10.5px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e9e5e2;
  border-radius: 9px;
  outline: 0;
  color: #16191c;
  background: #fbfaf9;
  font: inherit;
  font-size: 12px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a9da1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255,85,47,.62);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,85,47,.08);
}

.contact-submit {
  min-width: 170px;
  height: 48px;
  padding: 0 20px;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #ff552f;
  box-shadow: 0 12px 24px rgba(255,85,47,.18);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.contact-submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Explore cards */
.contact-paths {
  padding: 0 0 78px;
}

.contact-paths-inner {
  width: min(90vw, 1280px);
  margin: 0 auto;
}

.contact-paths-head {
  max-width: 700px;
  margin: 0 auto 28px;
  text-align: center;
}

.contact-paths-head h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

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

.contact-path-grid a {
  min-height: 185px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee7e3;
  border-radius: 16px;
  color: #111;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,85,47,.04), transparent 28%),
    #fff;
  box-shadow: 0 14px 30px rgba(22,18,15,.055);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.contact-path-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(255,85,47,.25);
}

.contact-path-grid svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #ff552f;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-path-grid strong {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.3;
}

.contact-path-grid span {
  margin-top: 8px;
  color: #696e75;
  font-size: 10.5px;
  line-height: 1.5;
}

@media (min-width: 1600px) {
  .contact-main-grid,
  .contact-paths-inner {
    max-width: 1360px;
  }
}

@media (max-width: 980px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .contact-hero {
    padding: 50px 0 48px;
  }

  .contact-hero-inner,
  .contact-main-grid,
  .contact-paths-inner {
    width: calc(100% - 28px);
  }

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

  .contact-hero-copy > p:last-child {
    font-size: 12.5px;
  }

  .contact-main {
    padding: 48px 0 46px;
  }

  .contact-info-panel,
  .contact-form-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .contact-info-head h2,
  .contact-form-head h2 {
    font-size: 30px;
  }

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

  .contact-submit {
    width: 100%;
  }

  .contact-paths {
    padding-bottom: 54px;
  }

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

  .contact-path-grid a {
    min-height: 155px;
  }
}

/* CONTACT V2 approved dark design */
.contact-dark-page{background:#0b0d0f}
.contact-v2{background:#0b0d0f;color:#fff}
.contact-v2-hero{overflow:hidden;background:#090a0b}
.contact-v2-hero-inner{min-height:410px;display:grid;grid-template-columns:47% 53%;background:#090a0b}
.contact-v2-copy{padding:48px clamp(42px,5.6vw,84px) 38px clamp(60px,7vw,112px);display:flex;flex-direction:column;justify-content:center;background:radial-gradient(circle at 16% 18%,rgba(255,84,47,.055),transparent 25%),#090a0b}
.contact-v2-breadcrumb{display:flex;align-items:center;gap:7px;color:rgba(255,255,255,.55);font-size:9px}
.contact-v2-breadcrumb a{color:rgba(255,255,255,.82);text-decoration:none}
.contact-v2-eyebrow{margin:28px 0 0;color:#ff552f;font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}
.contact-v2 h1{margin:11px 0 0;color:#fff;font-size:clamp(44px,4.2vw,66px);font-weight:800;line-height:1.02;letter-spacing:-.05em}
.contact-v2 h1 span{color:#ff552f}
.contact-v2-line{width:62px;height:3px;margin-top:14px;border-radius:999px;background:#ff552f}
.contact-v2-intro{max-width:560px;margin:15px 0 0;color:rgba(255,255,255,.72);font-size:12px;line-height:1.62}
.contact-v2-benefits{margin-top:27px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0}
.contact-v2-benefits article{padding:0 18px;display:grid;grid-template-columns:34px 1fr;gap:10px;align-items:start}
.contact-v2-benefits article:first-child{padding-left:0}
.contact-v2-benefits article:not(:last-child){border-right:1px solid rgba(255,255,255,.15)}
.contact-v2-benefits svg{width:31px;height:31px;fill:none;stroke:#ff552f;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.contact-v2-benefits strong{display:block;font-size:10.5px}
.contact-v2-benefits span{margin-top:5px;display:block;color:rgba(255,255,255,.55);font-size:8.8px;line-height:1.5}
.contact-v2-hero-image{position:relative;min-height:410px;overflow:hidden}
.contact-v2-hero-image::before{content:"";position:absolute;z-index:1;inset:0 auto 0 0;width:20%;background:linear-gradient(90deg,#090a0b,rgba(9,10,11,.38),transparent)}
.contact-v2-hero-image img{width:100%;height:100%;display:block;object-fit:cover;object-position:center}
.contact-v2-main{padding:42px 0 18px;background:linear-gradient(180deg,#101214 0%,#0b0d0f 100%)}
.contact-v2-main-inner{width:min(90vw,1220px);margin:0 auto;display:grid;grid-template-columns:.78fr 1.22fr;gap:28px}
.contact-v2-info{padding:18px 0 0}
.contact-v2-heading h2{margin:0;color:#fff;font-size:27px;line-height:1.1;letter-spacing:-.03em}
.contact-v2-heading>span{width:35px;height:2px;margin-top:10px;display:block;background:#ff552f}
.contact-v2-heading p{max-width:520px;margin:13px 0 0;color:rgba(255,255,255,.58);font-size:10.5px;line-height:1.58}
.contact-v2-list{margin-top:26px;display:grid;gap:23px}
.contact-v2-list>a,.contact-v2-list-static{display:grid;grid-template-columns:48px minmax(0,1fr);gap:14px;align-items:start;color:#fff;text-decoration:none}
.contact-v2-list-icon{width:46px;height:46px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.12);border-radius:50%;color:#ff552f}
.contact-v2-list-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.contact-v2-list strong{display:block;font-size:11px}
.contact-v2-list small{margin-top:5px;display:block;color:rgba(255,255,255,.58);font-size:9.5px}
.contact-v2-list b{margin-top:6px;display:block;color:#ff552f;font-size:10.5px;font-weight:700}
.contact-v2-advisor{margin-top:28px;padding:18px;display:grid;grid-template-columns:58px 1fr;gap:14px;border:1px solid rgba(255,85,47,.52);border-radius:8px;background:rgba(255,255,255,.018)}
.contact-v2-advisor-icon{width:58px;height:58px;display:grid;place-items:center;border:1px solid #ff552f;border-radius:50%;color:#ff552f}
.contact-v2-advisor-icon svg{width:31px;height:31px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.contact-v2-advisor h3{margin:0;font-size:15px}
.contact-v2-advisor p{margin:6px 0 0;color:rgba(255,255,255,.62);font-size:9.2px;line-height:1.55}
.contact-v2-advisor a{margin-top:10px;min-height:34px;padding:0 12px;display:inline-flex;align-items:center;border-radius:5px;color:#fff;background:#ff552f;font-size:9px;font-weight:700;text-decoration:none}
.contact-v2-form-card{padding:28px 28px 24px;border:1px solid rgba(255,255,255,.09);border-radius:8px;background:linear-gradient(180deg,#181a1d 0%,#121416 100%);box-shadow:0 16px 34px rgba(0,0,0,.18)}
.contact-v2-form{margin-top:24px;display:grid;gap:14px}
.contact-v2-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.contact-v2-form label{display:grid;gap:7px}
.contact-v2-form label>span{color:#fff;font-size:9.5px;font-weight:600}
.contact-v2-form label i{color:#ff552f;font-style:normal}
.contact-v2-form input,.contact-v2-form select,.contact-v2-form textarea{width:100%;border:1px solid rgba(255,255,255,.12);border-radius:5px;outline:0;color:#fff;background:#181a1c;font:inherit;font-size:9.8px}
.contact-v2-form input,.contact-v2-form select{height:42px;padding:0 12px}
.contact-v2-form textarea{min-height:145px;padding:12px;resize:vertical}
.contact-v2-form input::placeholder,.contact-v2-form textarea::placeholder{color:rgba(255,255,255,.28)}
.contact-v2-form input:focus,.contact-v2-form select:focus,.contact-v2-form textarea:focus{border-color:rgba(255,85,47,.7);box-shadow:0 0 0 2px rgba(255,85,47,.08)}
.contact-v2-form-actions{margin-top:3px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.contact-v2-form-actions button{min-width:145px;height:44px;padding:0 16px;display:inline-flex;align-items:center;justify-content:center;gap:18px;border:0;border-radius:5px;color:#fff;background:#ff552f;font-size:10px;font-weight:700;cursor:pointer}
.contact-v2-form-actions button svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.contact-v2-form-actions>div{display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.50);font-size:8.5px;line-height:1.5}
.contact-v2-form-actions>div svg{width:18px;height:18px;fill:none;stroke:rgba(255,255,255,.60);stroke-width:1.7}
.contact-v2-programs{padding:18px 0 36px;background:#0b0d0f}
.contact-v2-programs-inner{width:min(90vw,1220px);margin:0 auto;padding:20px 22px 22px;border:1px solid rgba(255,255,255,.08);border-radius:8px;background:#131517}
.contact-v2-heading-center{text-align:center}.contact-v2-heading-center>span{margin-left:auto;margin-right:auto}
.contact-v2-program-grid{margin-top:18px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr))}
.contact-v2-program-grid a{min-width:0;padding:0 18px;display:grid;grid-template-columns:45px minmax(0,1fr);grid-template-rows:auto auto;column-gap:13px;color:#fff;text-decoration:none}
.contact-v2-program-grid a:not(:last-child){border-right:1px solid rgba(255,255,255,.12)}
.contact-v2-program-icon{grid-row:1 / span 2;width:45px;height:45px;display:grid;place-items:center;border-radius:50%;color:#ff552f;background:#fff1eb}
.contact-v2-program-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.contact-v2-program-grid strong{font-size:10px;line-height:1.35}
.contact-v2-program-grid small{margin-top:7px;color:#ff552f;font-size:8.8px}
@media (min-width:1600px){.contact-v2-hero-inner{min-height:450px}.contact-v2-copy,.contact-v2-hero-image{min-height:450px}.contact-v2-main-inner,.contact-v2-programs-inner{max-width:1320px}}
@media (max-width:980px){.contact-v2-hero-inner{grid-template-columns:1fr}.contact-v2-copy{padding:42px 34px 34px}.contact-v2-hero-image{min-height:340px}.contact-v2-main-inner{grid-template-columns:1fr}.contact-v2-info{padding-top:0}.contact-v2-program-grid{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:22px}.contact-v2-program-grid a:nth-child(2){border-right:0}}
@media (max-width:620px){.contact-v2-copy{padding:32px 20px 28px}.contact-v2-eyebrow{margin-top:22px}.contact-v2 h1{font-size:40px}.contact-v2-intro{font-size:11.5px}.contact-v2-benefits{grid-template-columns:1fr;gap:14px}.contact-v2-benefits article,.contact-v2-benefits article:first-child{padding:0;border-right:0}.contact-v2-hero-image{min-height:280px}.contact-v2-main{padding-top:34px}.contact-v2-main-inner,.contact-v2-programs-inner{width:calc(100% - 28px)}.contact-v2-list{gap:19px}.contact-v2-advisor{grid-template-columns:1fr}.contact-v2-advisor-icon{width:52px;height:52px}.contact-v2-form-card{padding:24px 18px 20px}.contact-v2-fields{grid-template-columns:1fr}.contact-v2-form-actions{align-items:stretch;flex-direction:column}.contact-v2-form-actions button{width:100%}.contact-v2-program-grid{grid-template-columns:1fr;gap:18px}.contact-v2-program-grid a,.contact-v2-program-grid a:not(:last-child){padding:0;border-right:0}}


/* ==========================================================
   CONTACT INQUIRY TYPE — premium custom dropdown
   ========================================================== */

.contact-v2-inquiry-field {
  position: relative;
  z-index: 30;
}

.contact-v2-select {
  position: relative;
}

.contact-v2-select-trigger {
  width: 100%;
  height: 42px;
  padding: 0 12px 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
  outline: 0;
  color: rgba(255,255,255,.72);
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006)),
    #181a1c;
  font: inherit;
  font-size: 9.8px;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-v2-select-trigger:hover {
  border-color: rgba(255,255,255,.22);
  background: #1c1e21;
}

.contact-v2-select.is-open .contact-v2-select-trigger,
.contact-v2-select-trigger:focus-visible {
  border-color: rgba(255,85,47,.8);
  background: #1a1c1f;
  box-shadow: 0 0 0 2px rgba(255,85,47,.08);
}

.contact-v2-select-trigger svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ff552f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.contact-v2-select.is-open .contact-v2-select-trigger > svg {
  transform: rotate(180deg);
}

.contact-v2-select-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 350px;
  padding: 7px;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 9px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.985);
  transform-origin: top center;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,85,47,.07), transparent 28%),
    #121416;
  box-shadow:
    0 20px 45px rgba(0,0,0,.44),
    0 3px 10px rgba(0,0,0,.28);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 200ms cubic-bezier(.2,.7,.2,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,85,47,.4) transparent;
}

.contact-v2-select.is-open .contact-v2-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-v2-select-menu::-webkit-scrollbar {
  width: 5px;
}

.contact-v2-select-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255,85,47,.34);
}

.contact-v2-select-menu > button {
  width: 100%;
  min-height: 55px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) 18px;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background 150ms ease,
    color 150ms ease;
}

.contact-v2-select-menu > button + button {
  margin-top: 2px;
}

.contact-v2-select-menu > button:hover,
.contact-v2-select-menu > button:focus-visible {
  outline: none;
  background: rgba(255,255,255,.055);
}

.contact-v2-select-menu > button[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(255,85,47,.14), rgba(255,85,47,.035));
}

.contact-v2-select-option-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,85,47,.24);
  border-radius: 8px;
  color: #ff552f;
  background: rgba(255,85,47,.055);
}

.contact-v2-select-option-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-v2-select-menu strong {
  display: block;
  color: rgba(255,255,255,.92);
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.28;
}

.contact-v2-select-menu small {
  margin-top: 3px;
  display: block;
  color: rgba(255,255,255,.38);
  font-size: 7.8px;
  line-height: 1.3;
}

.contact-v2-select-check {
  width: 16px;
  height: 16px;
  opacity: 0;
  fill: none;
  stroke: #ff552f;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-v2-select-menu > button[aria-selected="true"] .contact-v2-select-check {
  opacity: 1;
}

/* Dropdown must overlay subsequent form fields cleanly. */
.contact-v2-form-card,
.contact-v2-form {
  overflow: visible;
}

@media (max-width: 620px) {
  .contact-v2-select-menu {
    max-height: 300px;
  }

  .contact-v2-select-menu > button {
    min-height: 58px;
  }

  .contact-v2-select-menu strong {
    font-size: 10px;
  }

  .contact-v2-select-menu small {
    font-size: 8px;
  }
}


/* ==========================================================
   TEAM — Featured Patron-in-Chief + responsive leadership roster
   ========================================================== */

.team-section-featured {
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 84, 47, .045), transparent 27%),
    radial-gradient(circle at 12% 42%, rgba(15, 18, 21, .025), transparent 30%),
    #fff;
}

.team-section-featured .team-clean-inner {
  width: min(92vw, 1380px);
}

.team-section-featured .team-heading-clean {
  max-width: 860px;
  margin-bottom: 38px;
}

.team-patron-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  min-height: 540px;
  border: 1px solid #e9e4e0;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 28px 70px rgba(18, 17, 16, .10),
    0 4px 14px rgba(18, 17, 16, .035);
}

.team-patron-feature::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -130px;
  right: -110px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 84, 47, .10);
  border-radius: 50%;
  pointer-events: none;
}

.team-patron-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, .02), rgba(8, 10, 12, .88)),
    #15181c;
}

.team-patron-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .95;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 91, 52, .18), transparent 34%),
    linear-gradient(145deg, #171b20 0%, #090c10 100%);
}

.team-patron-photo-frame {
  position: absolute;
  inset: 0;
}

.team-patron-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(6, 8, 10, .25) 64%, rgba(6, 8, 10, .94) 100%),
    linear-gradient(90deg, transparent 64%, rgba(8, 10, 12, .14));
}

.team-patron-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.team-patron-visual-meta {
  position: relative;
  z-index: 2;
  max-width: 330px;
}

.team-patron-kicker {
  display: block;
  color: #ff603b;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.team-patron-visual-meta strong {
  margin-top: 7px;
  display: block;
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.12;
}

.team-patron-visual-meta > span:last-child {
  margin-top: 5px;
  display: block;
  color: rgba(255,255,255,.66);
  font-size: 12px;
}

.team-patron-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 48px 52px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-patron-topline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.team-patron-label {
  color: #ff552f;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.team-patron-rule {
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: #ff552f;
}

.team-patron-content h3 {
  margin: 15px 0 0;
  color: #0d0f12;
  font-size: clamp(31px, 2.8vw, 44px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.team-patron-roles {
  margin-top: 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-patron-roles span {
  min-height: 32px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #f0ded6;
  border-radius: 999px;
  color: #25282c;
  background: #fff8f5;
  font-size: 10px;
  font-weight: 600;
}

.team-patron-description {
  margin-top: 24px;
  display: grid;
  gap: 13px;
}

.team-patron-description p {
  margin: 0;
  color: #5c6269;
  font-size: 11.7px;
  line-height: 1.68;
}

.team-patron-highlights {
  margin-top: 25px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid #eee6e1;
}

.team-patron-highlights span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25282c;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.35;
}

.team-patron-highlights svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ff552f;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Remaining roster */
.team-roster-heading {
  margin: 54px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: end;
}

.team-roster-eyebrow {
  margin: 0;
  color: #ff552f;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.team-roster-heading h3 {
  max-width: 520px;
  margin: 8px 0 0;
  color: #111;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.team-roster-heading > p {
  max-width: 620px;
  margin: 0;
  justify-self: end;
  color: #676d74;
  font-size: 11.5px;
  line-height: 1.6;
}

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

.team-grid-roster .team-member-card {
  grid-column: span 2;
  min-height: 330px;
  padding: 22px 16px 18px;
  border-radius: 17px;
}

/* Center a 3-card final row when 7 roster members are present. */
.team-grid-roster .team-member-card:nth-last-child(3) {
  grid-column: 2 / span 2;
}

.team-grid-roster .team-member-card:nth-last-child(2) {
  grid-column: 4 / span 2;
}

.team-grid-roster .team-member-card:nth-last-child(1) {
  grid-column: 6 / span 2;
}

.team-grid-roster .team-member-photo {
  width: 150px;
  height: 150px;
  border: 4px solid #fff;
  box-shadow:
    0 0 0 1px #ebe4df,
    0 10px 25px rgba(20, 17, 15, .08);
}

.team-grid-roster .team-member-card h3 {
  margin-top: 17px;
  font-size: 13.5px;
}

.team-grid-roster .team-member-card p {
  min-height: 34px;
  max-width: 245px;
  font-size: 10.5px;
}

.team-member-photo-placeholder {
  color: #ff552f;
}

/* Large desktop */
@media (min-width: 1600px) {
  .team-section-featured .team-clean-inner {
    max-width: 1460px;
  }

  .team-patron-feature {
    grid-template-columns: minmax(390px, .82fr) minmax(0, 1.18fr);
  }

  .team-patron-content {
    padding: 58px 64px 50px;
  }

  .team-patron-description p {
    font-size: 12.4px;
  }
}

/* Laptop / small desktop */
@media (max-width: 1180px) {
  .team-patron-feature {
    grid-template-columns: minmax(310px, .9fr) minmax(0, 1.1fr);
  }

  .team-patron-content {
    padding: 40px 38px 36px;
  }

  .team-patron-highlights {
    grid-template-columns: 1fr;
  }

  .team-grid-roster {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .team-grid-roster .team-member-card {
    grid-column: span 2;
  }

  .team-grid-roster .team-member-card:nth-last-child(3),
  .team-grid-roster .team-member-card:nth-last-child(2),
  .team-grid-roster .team-member-card:nth-last-child(1) {
    grid-column: span 2;
  }

  .team-grid-roster .team-member-card:last-child {
    grid-column: 3 / span 2;
  }
}

/* Tablet */
@media (max-width: 860px) {
  .team-section-featured {
    padding: 58px 0 64px;
  }

  .team-patron-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .team-patron-visual {
    min-height: 500px;
  }

  .team-patron-content {
    padding: 34px 30px 32px;
  }

  .team-patron-description p {
    font-size: 11.5px;
  }

  .team-roster-heading {
    margin-top: 44px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .team-roster-heading > p {
    justify-self: start;
  }

  .team-grid-roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .team-grid-roster .team-member-card,
  .team-grid-roster .team-member-card:nth-last-child(3),
  .team-grid-roster .team-member-card:nth-last-child(2),
  .team-grid-roster .team-member-card:nth-last-child(1),
  .team-grid-roster .team-member-card:last-child {
    grid-column: auto;
  }

  .team-grid-roster .team-member-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }
}

/* Mobile */
@media (max-width: 580px) {
  .team-section-featured {
    padding: 48px 0 54px;
  }

  .team-section-featured .team-clean-inner {
    width: calc(100% - 28px) !important;
  }

  .team-section-featured .team-heading-clean {
    margin-bottom: 28px;
  }

  .team-patron-feature {
    border-radius: 18px;
  }

  .team-patron-visual {
    min-height: 390px;
    padding: 24px;
  }

  .team-patron-photo-frame img {
    object-position: center 18%;
  }

  .team-patron-visual-meta strong {
    font-size: 23px;
  }

  .team-patron-content {
    padding: 27px 20px 26px;
  }

  .team-patron-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .team-patron-content h3 {
    font-size: 30px;
  }

  .team-patron-roles {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-patron-roles span {
    width: 100%;
    border-radius: 8px;
  }

  .team-patron-description {
    margin-top: 20px;
  }

  .team-patron-description p {
    font-size: 11.2px;
    line-height: 1.65;
  }

  .team-patron-highlights {
    grid-template-columns: 1fr;
  }

  .team-roster-heading {
    margin-top: 38px;
  }

  .team-grid-roster {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-grid-roster .team-member-card,
  .team-grid-roster .team-member-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .team-grid-roster .team-member-card {
    min-height: 300px;
  }

  .team-grid-roster .team-member-photo {
    width: 180px;
    height: 180px;
  }
}


/* ==========================================================
   CONTACT — Official Fee Payment Details
   ========================================================== */
.contact-payment-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255,85,47,.08), transparent 27%),
    linear-gradient(180deg, #15181b 0%, #101214 100%);
}

.contact-payment-head {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 14px;
  align-items: start;
}

.contact-payment-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,85,47,.35);
  border-radius: 12px;
  color: #ff552f;
  background: rgba(255,85,47,.06);
}

.contact-payment-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-payment-eyebrow {
  margin: 0;
  color: #ff552f;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-payment-head h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.contact-payment-head > div > p:last-child {
  margin: 5px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 9px;
  line-height: 1.5;
}

.contact-payment-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

.contact-payment-item {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 7px;
  background: rgba(255,255,255,.018);
}

.contact-payment-item > span {
  display: block;
  color: rgba(255,255,255,.40);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-payment-item strong {
  margin-top: 5px;
  display: block;
  min-width: 0;
  color: rgba(255,255,255,.91);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.contact-payment-iban {
  grid-column: 1 / -1;
}

.contact-payment-iban > div {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.contact-payment-iban strong {
  margin-top: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 12px;
  letter-spacing: .035em;
}

.contact-copy-iban {
  min-width: 106px;
  height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,85,47,.42);
  border-radius: 6px;
  color: #ff6a46;
  background: rgba(255,85,47,.055);
  font: inherit;
  font-size: 8.5px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.contact-copy-iban:hover {
  transform: translateY(-1px);
  border-color: #ff552f;
  color: #fff;
  background: #ff552f;
}

.contact-copy-iban svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-payment-note {
  margin-top: 12px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 20px minmax(0,1fr);
  gap: 9px;
  align-items: start;
  border-left: 2px solid #ff552f;
  border-radius: 0 6px 6px 0;
  background: rgba(255,85,47,.05);
}

.contact-payment-note svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #ff552f;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-payment-note p {
  margin: 1px 0 0;
  color: rgba(255,255,255,.59);
  font-size: 8.8px;
  line-height: 1.55;
}

.contact-payment-note strong {
  color: rgba(255,255,255,.88);
}

.contact-copy-status {
  min-height: 12px;
  margin: 7px 0 0;
  color: #ff704d;
  font-size: 8px;
  font-weight: 600;
}

@media (max-width: 620px) {
  .contact-payment-card {
    margin-top: 20px;
    padding: 18px 14px;
  }

  .contact-payment-head {
    grid-template-columns: 42px minmax(0,1fr);
    gap: 11px;
  }

  .contact-payment-icon {
    width: 42px;
    height: 42px;
  }

  .contact-payment-grid {
    grid-template-columns: 1fr;
  }

  .contact-payment-iban {
    grid-column: auto;
  }

  .contact-payment-iban > div {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-copy-iban {
    width: 100%;
  }
}
