:root {
  --black: #111111;
  --navy: #2A085C;
  --white: #ffffff;
  --accent: #FF9900;
  --text: #5F6368;
  --ink: #1F1F1F;
  --line: #E5E7EB;
  --soft: #F8F9FA;
  --deep: #2A085C;
  --tn-purple: #2A085C;
  --tn-orange: #FF9900;
  --tn-orange-dark: #E88900;
  --font-heading: "Poppins", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font: var(--font-heading);
  --cyan: #38bdf8;
  --rayzon-teal: #095763;
  --rayzon-orange: #ff5e15;
  --education-primary: #2563eb;
  --education-accent: #1d4ed8;
  --education-deep: #1e3a8a;
  --solar-gold: #f59e0b;
  --nature-green: #5f7f16;
  --warm-sun: #f5c76b;
  --shadow: 0 18px 50px rgba(8, 23, 54, .12);
  --page-max: 1640px;
  --page-pad: clamp(24px, 5vw, 96px);
  --page-x: clamp(48px, 7vw, 130px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding-top: 84px;
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6,
.primary-nav,
.btn,
.eyebrow,
.section-kicker {
  font-family: var(--font-heading);
}

.home-video-hero {
  position: relative;
  height: calc(100svh - 84px);
  min-height: 620px;
  overflow: hidden;
  background: #07111f;
}

.home-video-stage {
  position: absolute;
  inset: 0;
}

.home-video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}

.home-video-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-video-copy {
  position: absolute;
  z-index: 4;
  left: clamp(28px, 7vw, 128px);
  top: 50%;
  width: min(540px, 44vw);
  transform: translateY(-50%);
  color: #ffffff;
}

.home-video-copy h1 {
  margin: 16px 0 14px;
  min-height: 2.05em;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(19px, 1.95vw, 28px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 5px 20px rgba(0,0,0,.64);
}

.home-video-copy p {
  max-width: 480px;
  min-height: 3.2em;
  margin: 0 0 22px;
  color: rgba(255,255,255,.94);
  font-size: clamp(14px, .95vw, 16px);
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 3px 16px rgba(0,0,0,.62);
}

.home-video-copy h1::after,
.home-video-copy p::after {
  content: "";
  display: none;
  width: .08em;
  height: .9em;
  margin-left: .12em;
  background: var(--tn-orange);
  vertical-align: -.08em;
  animation: type-caret .75s steps(1) infinite;
}

.home-video-copy.is-typing-title h1::after,
.home-video-copy.is-typing-body p::after {
  display: inline-block;
}

.home-video-copy.is-typing-title p {
  visibility: hidden;
}

.home-video-copy p::after {
  height: .82em;
}

.home-video-copy.is-typed h1::after,
.home-video-copy.is-typed p::after {
  display: none;
}

.home-video-slide .btn.primary {
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.home-video-slide:has(.home-unit-energy) .btn.primary {
  background: #16a34a;
  color: #ffffff;
}

.home-video-slide:has(.home-unit-energy) .btn.primary:hover {
  background: #15803d;
}

.home-video-slide:has(.home-unit-education) .btn.primary {
  background: var(--education-primary);
  color: #ffffff;
}

.home-video-slide:has(.home-unit-education) .btn.primary:hover {
  background: var(--education-accent);
}

@keyframes type-caret {
  50% { opacity: 0; }
}

.brand-mantra-section {
  width: 100%;
  min-height: calc(100svh - 108px);
  padding: clamp(56px, 5.5vw, 86px) var(--page-x);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 153, 0, .10), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(42, 8, 92, .08), transparent 30%),
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.brand-mantra-head {
  max-width: 980px;
  margin: 0 auto clamp(34px, 4vw, 56px);
  text-align: center;
}

.brand-mantra-head .section-kicker {
  color: var(--tn-purple);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
}

.brand-mantra-head h2 {
  margin: 12px 0 16px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-mantra-head h2 span:nth-of-type(2) {
  color: var(--tn-orange);
}

.brand-mantra-head h2 em {
  color: var(--tn-purple);
  font-style: normal;
  font-weight: 500;
}

.brand-mantra-head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(14px, .95vw, 16px);
  line-height: 1.65;
}

.brand-mantra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1480px);
  margin: 0 auto;
}

.brand-mantra-grid article {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(42, 8, 92, .08);
  transition: color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.brand-mantra-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--tn-purple), var(--tn-orange));
}

.brand-mantra-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--tn-orange);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
}

.brand-mantra-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.15;
  font-weight: 600;
}

.brand-mantra-grid p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.62;
}

.brand-mantra-grid article:hover {
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
  transform: translateY(-3px);
}

.brand-mantra-grid article:hover span,
.brand-mantra-grid article:hover h3,
.brand-mantra-grid article:hover p {
  color: #ffffff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .58);
}

.brand-mantra-grid article:nth-child(1):hover {
  background:
    linear-gradient(180deg, rgba(42, 8, 92, .06), rgba(15, 23, 42, .54)),
    url("assets/philosophy-imagine-v2.png") center / cover no-repeat;
}

.brand-mantra-grid article:nth-child(2):hover {
  background:
    linear-gradient(180deg, rgba(42, 8, 92, .06), rgba(15, 23, 42, .54)),
    url("assets/philosophy-create-v2.png") center / cover no-repeat;
}

.brand-mantra-grid article:nth-child(3):hover {
  background:
    linear-gradient(180deg, rgba(42, 8, 92, .06), rgba(15, 23, 42, .54)),
    url("assets/philosophy-empower-v2.png") center / cover no-repeat;
}

.home-unit-brand {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  gap: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.55vw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(0,0,0,.62);
  white-space: nowrap;
}

.home-unit-brand b {
  font: inherit;
}

.home-unit-energy b {
  color: #16a34a;
}

.home-unit-education b {
  color: var(--education-primary);
}

.unit-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--tn-purple);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 700;
  letter-spacing: 0;
}

.unit-label::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--tn-orange);
}

.unit-energy {
  background: #2A085C;
}

.unit-education {
  background: #3A0B7D;
}

.home-video-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #07111f;
}

.home-video-media img,
.home-video-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transform-origin: center center;
  backface-visibility: hidden;
  image-rendering: auto;
  filter: none;
  opacity: 0;
  transition: opacity .55s ease;
  display: block;
}

.education-media video {
  object-position: center center;
}

.energy-media video {
  object-position: center center;
}

.home-video-media.is-video-ready video,
.home-video-media img {
  opacity: 1;
}

.home-video-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,12,24,.62) 0%, rgba(7,12,24,.36) 38%, rgba(7,12,24,.08) 100%),
    linear-gradient(180deg, rgba(7,12,24,.04), rgba(7,12,24,.18));
}

.motion-grid,
.motion-orbit {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.motion-grid {
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000 78%, transparent);
  animation: grid-drift 9s linear infinite;
}

.motion-orbit {
  width: clamp(180px, 22vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,153,0,.34);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(255,153,0,.18);
}

.orbit-one {
  right: 9%;
  top: 12%;
  animation: orbit-float 7s ease-in-out infinite;
}

.orbit-two {
  right: 26%;
  bottom: 10%;
  width: clamp(120px, 16vw, 280px);
  border-color: rgba(255,255,255,.28);
  animation: orbit-float 8s ease-in-out infinite reverse;
}

@keyframes cinematic-pan {
  from {
    transform: translate3d(-1.2%, -1%, 0) scale(1.06);
  }
  to {
    transform: translate3d(1.6%, 1%, 0) scale(1.12);
  }
}

@keyframes grid-drift {
  from { background-position: 0 0; }
  to { background-position: 72px 72px; }
}

@keyframes orbit-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .44; }
  50% { transform: translate3d(-18px, 14px, 0) scale(1.04); opacity: .78; }
}

.home-education-feature {
  position: relative;
  width: 100%;
  padding: clamp(58px, 6vw, 92px) var(--page-x);
  background:
    linear-gradient(135deg, rgba(37,99,235,.08), rgba(255,255,255,0) 44%),
    #ffffff;
}

.home-education-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.home-education-copy {
  max-width: 620px;
}

.home-education-copy .section-kicker {
  color: var(--education-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}

.home-education-copy h2 {
  margin: 14px 0 16px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-education-copy h2 span {
  color: var(--education-primary);
}

.home-education-copy p {
  max-width: 590px;
  margin: 0 0 12px;
  color: #303846;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.7;
  font-weight: 400;
}

.home-education-copy .education-link {
  margin-top: 12px;
  min-height: 44px;
  padding: 0 24px;
  background: var(--education-primary);
  color: #ffffff;
  border: 1px solid var(--education-primary);
  border-radius: 10px;
}

.home-education-copy .education-link:hover {
  background: var(--education-accent);
  border-color: var(--education-accent);
}

.home-education-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border: 1px solid #dbe7ff;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 50px rgba(37,99,235,.10);
}

.home-education-panel article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--education-primary);
  border-radius: 14px;
  background: #ffffff;
}

.home-education-panel article span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--education-primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.home-education-panel h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.home-education-panel p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.home-education-courses {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #f5f8ff;
}

.home-education-courses span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: var(--education-deep);
  background: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.home-unit-split-feature {
  padding: clamp(28px, 3.2vw, 44px) 0 clamp(28px, 3.4vw, 46px);
  background:
    linear-gradient(90deg, rgba(37,99,235,.07), rgba(255,255,255,0) 46%, rgba(22,163,74,.07)),
    #ffffff;
}

.home-unit-split-head {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 22px;
  text-align: center;
}

.home-unit-split-head .section-kicker {
  color: var(--tn-purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.home-unit-split-head h2 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}

.home-unit-split-head p {
  max-width: 780px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.home-unit-split-feature .home-education-shell {
  width: min(1560px, calc(100% - 88px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.home-unit-feature-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 44px rgba(15,23,42,.08);
}

.home-unit-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.home-unit-feature-card .section-kicker {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.home-unit-card-meta {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.home-unit-feature-card.is-energy .home-unit-card-meta {
  border-color: #bbf7d0;
  color: #166534;
  background: #f0fdf4;
}


.home-unit-feature-card .unit-kicker span {
  color: var(--ink);
}

.home-unit-feature-card .unit-kicker b {
  font: inherit;
}

.home-unit-feature-card.is-education .unit-kicker b {
  color: var(--education-primary);
}

.home-unit-feature-card.is-energy .unit-kicker b {
  color: #15803d;
}
.home-unit-feature-card h2 {
  max-width: 560px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.home-unit-feature-card p {
  max-width: 590px;
  margin: 0 0 8px;
  color: #303846;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.home-unit-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 16px;
}

.home-unit-flow span {
  position: relative;
  overflow: hidden;
  min-height: 72px;
  padding: 12px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: none;
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-unit-flow b {
  display: block;
  margin-bottom: 8px;
  color: var(--education-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.home-unit-flow span:hover {
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .2);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  transform: translateY(-2px);
}

.home-unit-flow span:hover b {
  color: #ffffff;
}

.home-unit-feature-card.is-education .home-unit-flow span:nth-child(1):hover {
  background:
    linear-gradient(180deg, rgba(11, 30, 70, .26), rgba(11, 30, 70, .74)),
    url("assets/ai-course.png") center / cover no-repeat;
}

.home-unit-feature-card.is-education .home-unit-flow span:nth-child(2):hover {
  background:
    linear-gradient(180deg, rgba(11, 30, 70, .26), rgba(11, 30, 70, .74)),
    url("assets/development-course.png") center / cover no-repeat;
}

.home-unit-feature-card.is-education .home-unit-flow span:nth-child(3):hover {
  background:
    linear-gradient(180deg, rgba(11, 30, 70, .1), rgba(11, 30, 70, .68)),
    url("assets/certificate-hover.svg") center / cover no-repeat;
}

.home-unit-feature-card.is-energy .home-unit-flow span {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #ffffff, #f5fff8);
}

.home-unit-feature-card.is-energy .home-unit-flow b {
  color: #15803d;
}

.home-unit-feature-card.is-energy .home-unit-flow span:nth-child(1):hover {
  background:
    linear-gradient(180deg, rgba(6, 48, 26, .24), rgba(6, 48, 26, .74)),
    url("assets/solar-energy.png") center / cover no-repeat;
}

.home-unit-feature-card.is-energy .home-unit-flow span:nth-child(2):hover {
  background:
    linear-gradient(180deg, rgba(6, 48, 26, .24), rgba(6, 48, 26, .74)),
    url("assets/transmission-switchyard.png") center / cover no-repeat;
}

.home-unit-feature-card.is-energy .home-unit-flow span:nth-child(3):hover {
  background:
    linear-gradient(180deg, rgba(6, 48, 26, .24), rgba(6, 48, 26, .74)),
    url("assets/energy-storage.png") center / cover no-repeat;
}

.home-unit-feature-card.is-education {
  border-top: 5px solid var(--education-primary);
}

.home-unit-feature-card.is-education .section-kicker,
.home-unit-feature-card.is-education h2 span {
  color: var(--education-primary);
}

.home-unit-feature-card.is-energy {
  border-top: 5px solid #16a34a;
}

.home-unit-feature-card.is-energy .section-kicker,
.home-unit-feature-card.is-energy h2 span {
  color: #15803d;
}

.home-feature-link-label {
  display: block;
  margin: 0 0 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.home-feature-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: var(--education-deep);
  background: #ffffff;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.home-feature-links a:hover {
  color: #ffffff;
  background: var(--education-primary);
  border-color: var(--education-primary);
}

.home-unit-feature-card.is-energy .home-feature-links a {
  border-color: #bbf7d0;
  color: #166534;
}

.home-unit-feature-card.is-energy .home-feature-links {
  flex-wrap: nowrap;
  gap: 8px;
}

.home-unit-feature-card.is-energy .home-feature-links a {
  padding: 0 12px;
  font-size: 13px;
  white-space: nowrap;
}

.home-unit-feature-card.is-energy .home-feature-links a:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.home-unit-feature-card .btn {
  width: fit-content;
  min-height: 40px;
  margin-top: auto;
  padding: 0 20px;
  border-radius: 10px;
}

.home-unit-feature-card .education-link {
  background: var(--education-primary);
  color: #ffffff;
  border: 1px solid var(--education-primary);
}

.home-unit-feature-card .education-link:hover {
  background: var(--education-accent);
  border-color: var(--education-accent);
}

.home-unit-feature-card .energy-link {
  background: #16a34a;
  color: #ffffff;
  border: 1px solid #16a34a;
}

.home-unit-feature-card .energy-link:hover {
  background: #15803d;
  border-color: #15803d;
}

.home-video-tabs {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 7vw, 128px);
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.home-video-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 850;
}

.home-video-tabs span.is-active {
  color: #07111f;
  background: #ffffff;
}

.top-bar {
  background:
    linear-gradient(90deg, rgba(255,153,0,.18), transparent 18% 82%, rgba(42,8,92,.22)),
    linear-gradient(90deg, #2A085C, #3b1175 55%, #2A085C);
  color: #dff8ff;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: none;
}
.top-bar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
}
.top-bar-rotator,
.top-bar-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.top-bar-rotator {
  position: relative;
  min-width: min(610px, 58vw);
  height: 34px;
  overflow: hidden;
}
.top-bar-badge {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #ffffff;
  font-size: 10px;
  letter-spacing: -.4px;
  position: relative;
  z-index: 2;
}
.top-bar-message {
  position: absolute;
  left: 42px;
  right: 0;
  top: 50%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
  white-space: nowrap;
}
.top-bar-message.is-active {
  opacity: 1;
  transform: translateY(-50%);
}
.top-bar-contact span + span {
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.24);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 72px);
  min-height: 84px;
  padding: 4px var(--page-x);
  background: #ffffff;
  border-bottom: 1px solid rgba(7, 17, 31, .08);
  box-shadow: 0 8px 28px rgba(8, 23, 54, .08);
  backdrop-filter: none;
  transition: min-height .25s ease, padding .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header::after { display: none; }
.site-header.is-scrolled {
  min-height: 84px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(42, 8, 92, .08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.brand-image {
  width: clamp(230px, 17vw, 320px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: normal;
  transition: width .25s ease, max-height .25s ease;
}
.site-header.is-scrolled .brand-image {
  width: clamp(230px, 17vw, 320px);
  max-height: 72px;
}
.brand-mark {
  width: 55px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 8px rgba(11, 94, 215, .10));
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.tn-letter {
  font-family: Arial Black, Impact, var(--font);
  font-size: 46px;
  font-weight: 950;
  letter-spacing: -7px;
}
.tn-t { fill: var(--black); }
.tn-n { fill: var(--navy); }
.brand-copy { display: grid; line-height: .94; transform: translateY(1px); }
.brand-copy strong { font-size: 21px; letter-spacing: -.75px; }
.brand-copy span { color: var(--black); }
.brand-copy em { color: var(--navy); font-style: normal; }
.brand-copy small { margin-top: 4px; font-size: 7px; font-weight: 950; color: var(--black); letter-spacing: .12px; }

.primary-nav { display: flex; align-items: center; gap: clamp(22px, 2vw, 38px); font-size: clamp(15px, 1.05vw, 20px); font-weight: 600; text-transform: none; margin-left: auto; color: var(--ink); }
.primary-nav > a, .nav-group > button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  padding: 22px 0;
  transition: color .2s ease;
}

.nav-group > button::after { content: ""; }
.primary-nav > a:hover,
.nav-group > button:hover {
  color: var(--tn-purple);
}
.nav-group { position: relative; }
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: grid;
  gap: 4px;
  width: 260px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: .18s ease;
  text-transform: none;
  font-size: 13px;
  font-weight: 750;
}
.mega.wide { width: 420px; grid-template-columns: repeat(2, 1fr); }
.mega a,
.mega .nav-option-disabled { padding: 10px; border-radius: 6px; color: var(--text); }
.mega .nav-option-disabled {
  display: block;
  cursor: default;
  font-weight: 760;
}
.mega a:hover { background: #eff6ff; color: var(--navy); }
.nav-group:hover .mega, .nav-group:focus-within .mega { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.primary-nav .nav-cta {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  min-height: auto;
  padding: 34px 0;
  background: transparent;
  color: #4a4a4a;
  border-radius: 0;
  box-shadow: none;
  white-space: nowrap;
}
.primary-nav .nav-cta:hover { color: var(--navy); }
.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  position: relative;
  border: 2px solid #111111;
  border-radius: 0;
  color: var(--black);
  background: #ffffff;
  box-shadow: none;
  white-space: nowrap;
  text-transform: none;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.country-badge:hover {
  transform: translateY(-2px);
  border-color: var(--rayzon-teal);
  box-shadow: 0 14px 30px rgba(9,87,99,.13);
}
.country-badge .top-key,
.country-badge .bottom-key-1,
.country-badge .bottom-key-2 {
  position: absolute;
  background: #ffffff;
}
.country-badge .top-key {
  top: -3px;
  left: 14px;
  width: 34px;
  height: 6px;
}
.country-badge .bottom-key-1 {
  bottom: -3px;
  left: 18px;
  width: 72px;
  height: 6px;
}
.country-badge .bottom-key-2 {
  bottom: -3px;
  right: 12px;
  width: 20px;
  height: 6px;
}
.country-badge > * { position: relative; z-index: 1; }
.country-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.country-badge strong {
  font-size: 16px;
  font-weight: 850;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.india-flag {
  width: 34px;
  height: 22px;
  position: relative;
  display: inline-block;
  border: 1px solid #d1d5db;
  box-shadow: 0 4px 10px rgba(8, 23, 54, .12);
  background: linear-gradient(180deg, #ff9933 0 33.33%, #ffffff 33.33% 66.66%, #138808 66.66% 100%);
}
.india-flag::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border: 1.4px solid #000080;
  border-radius: 50%;
  background: radial-gradient(circle, #000080 0 16%, transparent 18%);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 98px);
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  animation: none;
  transition: opacity .85s ease, transform 6s ease;
}
.hero-picture {
  display: none;
}
.hero-picture img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-slideshow img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-image-cta {
  display: none;
}

.hero-static-cta {
  display: none;
}

.hero.is-image-only {
  min-height: 0;
  height: auto;
  width: 100%;
  background: #ffffff;
  display: block;
}

.hero.is-image-only .hero-slideshow {
  position: relative;
  inset: auto;
  z-index: 0;
  width: min(100%, calc((100vh - 98px) * 1.9), 1945px);
  margin: 0 auto;
  height: auto;
  overflow: visible;
}

.hero.is-image-only .hero-slideshow img,
.hero.is-image-only .hero-picture {
  position: relative;
  inset: auto;
  display: none;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: none;
}

.hero.is-image-only .hero-slideshow img.is-active,
.hero.is-image-only .hero-picture.is-active {
  display: block;
  object-fit: contain;
  object-position: center top;
  background: #ffffff;
  transform: none;
}

.hero.is-image-only .hero-picture img {
  display: block;
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  opacity: 1;
  transform: none;
}

.hero.is-image-only .hero-overlay,
.hero.is-image-only .hero-content,
.hero.is-image-only .hero-title-card,
.hero.is-image-only .hero-slider-ui {
  display: none;
}

.hero.is-image-only .hero-image-cta {
  display: none;
}

.hero.is-image-only .hero-static-cta {
  position: absolute;
  z-index: 5;
  left: max(42px, calc((100vw - min(100vw, calc((100vh - 98px) * 1.9), 1945px)) / 2 + 88px));
  top: 78%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: clamp(46px, 3.5vw, 58px);
  padding: 0 clamp(20px, 2.4vw, 34px);
  border-radius: 8px;
  background: linear-gradient(135deg, #0b5ed7, #13b33f);
  color: #ffffff;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 800;
  text-decoration: none;
}

.hero.is-image-only .hero-static-cta::after {
  content: "->";
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1;
}

.energy-corporate-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 700px);
  background: #ffffff;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(219, 229, 242, .95);
  isolation: isolate;
}

.energy-corporate-hero::before,
.energy-corporate-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.energy-corporate-hero::before {
  z-index: 0;
  width: clamp(720px, 62vw, 1180px);
  height: clamp(720px, 62vw, 1180px);
  right: clamp(-470px, -23vw, -230px);
  top: 50%;
  border-radius: 50%;
  border: clamp(46px, 4.2vw, 82px) solid rgba(11, 94, 215, .11);
  border-left-color: rgba(19, 179, 63, .13);
  border-bottom-color: rgba(19, 179, 63, .09);
  transform: translateY(-50%);
}

.energy-corporate-hero::after {
  z-index: 1;
  left: 50%;
  top: 0;
  bottom: 0;
  width: clamp(130px, 10vw, 210px);
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,.9) 42%, rgba(255,255,255,0) 100%);
}

.energy-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - clamp(44px, 8vw, 150px), 1500px);
  min-height: clamp(520px, 72vh, 700px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(350px, .40fr) minmax(540px, .60fr);
  align-items: center;
  gap: clamp(28px, 4.4vw, 84px);
  padding-left: 0;
}

.energy-hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 520px;
  min-height: auto;
  padding: clamp(8px, 2vh, 26px) 0 clamp(22px, 4vh, 46px);
  transform: none;
  animation: energyCopyIn .7s ease both;
}

.energy-logo-lockup {
  display: inline-grid;
  gap: clamp(2px, .4vw, 6px);
  margin-bottom: clamp(18px, 3vh, 32px);
  line-height: .88;
  letter-spacing: -.045em;
}

.energy-logo-lockup strong {
  color: #062552;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 900;
  filter: none;
}

.energy-logo-word {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.energy-logo-word > span:not(.energy-logo-e) {
  display: inline-block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.energy-logo-e {
  position: relative;
  display: inline-block;
  width: .66em;
  height: .58em;
  margin: 0 .035em 0 .045em;
  transform: translateY(-.01em);
}

.energy-logo-e i {
  position: absolute;
  left: 0;
  display: block;
  height: .105em;
  border-radius: 0;
}

.energy-logo-e i:nth-child(1),
.energy-logo-e i:nth-child(3) {
  width: .62em;
  background: #062552;
}

.energy-logo-e i:nth-child(1) {
  top: 0;
}

.energy-logo-e i:nth-child(2) {
  top: 50%;
  width: .48em;
  background: #10a13b;
  transform: translateY(-50%);
}

.energy-logo-e i:nth-child(3) {
  bottom: 0;
}

.energy-logo-lockup > span {
  color: #10a13b;
  font-size: clamp(20px, 1.85vw, 30px);
  font-weight: 900;
  letter-spacing: .11em;
}

.energy-hero-copy h1 {
  margin: 0;
  color: #062552;
  max-width: 500px;
  font-size: clamp(22px, 2.15vw, 38px);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 850;
  text-transform: none;
  text-shadow: none !important;
}

.energy-hero-copy h1 span {
  color: #062552;
  text-shadow: none !important;
}

.energy-hero-copy h1 em {
  color: #0bb039;
  font-style: normal;
  text-shadow: none !important;
}

.energy-corporate-hero .energy-hero-copy h1,
.energy-corporate-hero .energy-hero-copy h1 span,
.energy-corporate-hero .energy-hero-copy h1 em {
  text-shadow: none !important;
  filter: none !important;
}

.energy-title-rule {
  width: clamp(70px, 5vw, 96px);
  height: 3px;
  margin: clamp(16px, 1.3vw, 22px) 0 clamp(22px, 2vw, 32px);
  border-radius: 999px;
  background: linear-gradient(90deg, #0b5ed7 0%, #0b5ed7 50%, #13b33f 50%, #13b33f 100%);
  box-shadow: none;
}

.energy-corporate-hero .energy-hero-copy p {
  margin: 0;
  color: #111111 !important;
  font-size: clamp(12px, .78vw, 14px);
  line-height: 1.85;
  max-width: 500px;
  font-weight: 550;
  letter-spacing: -.006em;
  text-shadow: none !important;
}

.energy-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 18px);
  min-height: clamp(42px, 3vw, 52px);
  margin-top: clamp(24px, 3.2vh, 36px);
  padding: 0 clamp(22px, 2.2vw, 34px);
  border-radius: 7px;
  background: linear-gradient(135deg, #0b5ed7 0%, #0a8c7c 52%, #13b33f 100%);
  color: #ffffff;
  font-size: clamp(12px, .8vw, 14px);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(11, 94, 215, .16), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.energy-hero-cta::after {
  content: "\2192";
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1;
}

.energy-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(19, 179, 63, .22);
  filter: saturate(1.08);
}

.energy-hero-visual {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
  padding-top: 0;
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 47vw, 660px);
  overflow: visible;
  animation: energyVisualIn .8s ease .08s both;
}

.energy-hero-visual::before,
.energy-hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.energy-hero-visual::before {
  z-index: 3;
  width: clamp(520px, 43vw, 850px);
  height: clamp(520px, 43vw, 850px);
  left: clamp(-185px, -9vw, -80px);
  top: 50%;
  border-radius: 50%;
  border-left: clamp(20px, 1.8vw, 34px) solid #0b5ed7;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: inset 12px 0 0 #13b33f, inset 26px 0 0 #ffffff;
  transform: translateY(-50%);
}

.energy-hero-visual::after {
  z-index: 0;
  right: 8%;
  bottom: 1%;
  width: 78%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(8, 23, 54, .10), rgba(19, 179, 63, .06) 46%, transparent 74%);
  filter: blur(20px);
}

.energy-hero-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(112%, 920px);
  max-height: clamp(410px, 56vh, 640px);
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  transform: translateX(clamp(10px, 2.4vw, 42px));
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 32px rgba(8, 23, 54, .07));
}

@keyframes energyCopyIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes energyVisualIn {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-slideshow img.is-manual {
  opacity: 1;
  transform: scale(1.02);
  animation: none;
}
.hero-slideshow.is-manual img:not(.is-manual) {
  opacity: 0;
  animation: none;
}
.hero-slideshow img:nth-child(1) {
  animation-delay: 0s;
  filter: saturate(1.04) contrast(1.02) brightness(1.02);
}
.hero-slideshow img:nth-child(2) {
  animation-delay: 3s;
  filter: saturate(1.04) contrast(1.02) brightness(1.03);
}
.hero-slideshow img:nth-child(3) {
  animation-delay: 6s;
  filter: saturate(1.02) contrast(1.02) brightness(1.08);
}
.hero-slideshow img:nth-child(4) {
  animation-delay: 9s;
  filter: saturate(1.05) contrast(1.03) brightness(1.08);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(0,0,0,.05) 58%, rgba(0,0,0,.18) 100%),
    linear-gradient(90deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.08) 35%, rgba(255,255,255,.02) 70%);
  z-index: -1;
}

@keyframes heroSlide {
  0% { opacity: 0; transform: scale(1.04); }
  7% { opacity: 1; }
  25% { opacity: 1; transform: scale(1); }
  32% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); }
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}
.hero-content {
  width: min(calc(100% - (var(--page-pad) * 2)), 1720px);
  max-width: none;
  margin: 0 auto;
  min-height: calc(100vh - 98px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  align-items: end;
  gap: clamp(52px, 7vw, 120px);
  padding: 72px 0 74px;
  color: var(--white);
}
.hero-copy {
  align-self: end;
  max-width: 760px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #075c66;
  font-size: clamp(16px, 1.1vw, 21px);
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
}
.hero-pill span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 55%, #ffffff 0 20%, transparent 22%),
    linear-gradient(135deg, #075c66, #6a8f18);
}
.hero-slider-ui {
  position: absolute;
  right: clamp(26px, 4vw, 78px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(3,16,36,.42);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  animation: arrowPulse 2.6s ease-in-out infinite;
}
.hero-dots {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}
.hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.36);
  box-shadow: 0 3px 18px rgba(0,0,0,.22);
  animation: none;
}
.hero-dots span.is-active {
  width: 12px;
  height: 54px;
  border-radius: 999px;
  background: #ffffff;
  animation: none;
}
.hero-dots.is-manual span:not(.is-active) {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.50);
  animation: none;
}
.hero-dots span:nth-child(2),
.hero-dots span:nth-child(3),
.hero-dots span:nth-child(4) { height: 12px; background: rgba(255,255,255,.36); }
.hero-dots span.is-active { height: 54px !important; background: #ffffff !important; }

@keyframes arrowPulse {
  0%, 100% { transform: translateY(0); border-color: rgba(255,255,255,.34); }
  50% { transform: translateY(-4px); border-color: rgba(255,94,21,.62); }
}

@keyframes dotActive {
  0%, 30% { width: 28px; border-radius: 999px; background: #ffffff; }
  31%, 100% { width: 8px; border-radius: 50%; background: rgba(255,255,255,.50); }
}
@keyframes verticalDot {
  0%, 100% { opacity: .45; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.12); }
}
.eyebrow {
  display: inline-flex;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
}
.hero .eyebrow { color: #075c66; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 940px;
  font-size: clamp(54px, 5.8vw, 112px);
  line-height: .94;
  letter-spacing: .01em;
  margin-bottom: 22px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(0,0,0,.34);
}
h1 span { color: #ffffff; font-weight: 950; text-shadow: 0 4px 22px rgba(0,0,0,.34); }
h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -1px; margin-bottom: 16px; }
h3 { line-height: 1.15; margin-bottom: 10px; }
p { color: var(--text); }
.hero p { max-width: 640px; color: #ffffff; font-size: clamp(17px, 1.2vw, 22px); text-shadow: 0 3px 18px rgba(0,0,0,.35); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
}
.btn.primary { background: var(--tn-orange); color: var(--white); box-shadow: 0 12px 30px rgba(255,153,0,.24); }
.btn.ghost { border: 1px solid rgba(255,255,255,.62); color: var(--white); background: rgba(255,255,255,.10); }
.btn {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn.primary:hover {
  background: var(--tn-orange-dark);
}
.glance {
  padding: clamp(28px, 2.5vw, 42px);
  border: 1px solid rgba(144,198,255,.35);
  border-radius: 8px;
  background: rgba(4,18,43,.66);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}
.hero-title-card {
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 6px;
  text-align: right;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 5px 26px rgba(0,0,0,.30);
}
.hero-title-card span {
  font-size: clamp(18px, 1.6vw, 28px);
  letter-spacing: .15em;
  font-weight: 700;
}
.hero-title-card strong {
  font-size: clamp(42px, 4.4vw, 82px);
  line-height: .9;
  letter-spacing: .08em;
  font-weight: 900;
}

.hero.theme-energy-light .hero-slideshow img.is-active {
  filter: none;
  object-position: center right;
}
.hero.theme-energy-light .hero-overlay {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 46%, rgba(255,255,255,.96) 58%, rgba(255,255,255,.42) 72%, rgba(255,255,255,.06) 100%);
}
.hero.theme-energy-light .hero-content {
  min-height: calc(100vh - 98px);
  grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
  align-items: center;
  padding: clamp(36px, 5vh, 64px) 0;
}
.hero.theme-energy-light .hero-copy {
  max-width: 500px;
  align-self: center;
}
.energy-hero-brand {
  display: grid;
  gap: 0;
  margin-bottom: clamp(28px, 4vh, 42px);
  line-height: .86;
}
.energy-hero-brand strong {
  color: #08223f;
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 900;
  letter-spacing: .01em;
}
.energy-hero-brand strong::first-letter {
  color: #08223f;
}
.energy-hero-brand span {
  color: #13b33f;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 900;
  letter-spacing: .14em;
}
.hero.theme-energy-light .hero-pill {
  display: none;
}
.hero.theme-energy-light h1 {
  max-width: 520px;
  margin-bottom: 24px;
  color: #08223f;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
}
.hero.theme-energy-light h1 span {
  color: #14a83b;
  text-shadow: none;
}
.hero.theme-energy-light p {
  max-width: 470px;
  color: #111111;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.7;
  text-shadow: none;
}
.hero.theme-energy-light .hero-actions {
  margin-top: 28px;
}
.hero.theme-energy-light .btn.primary {
  background: linear-gradient(135deg, #0b5ed7, #13b33f);
  color: #ffffff;
  border-color: transparent;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: none;
}
.hero.theme-energy-light .btn.primary::after {
  content: "->";
  margin-left: 18px;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}
.hero.theme-energy-light .btn.ghost {
  display: none;
}
.hero.theme-energy-light .hero-title-card,
.hero.theme-energy-light .hero-slider-ui {
  display: none;
}

.glance h2 { font-size: clamp(16px, 1.15vw, 22px); letter-spacing: 0; text-transform: uppercase; }
.glance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2vw, 34px); }
.glance-grid span { display: grid; color: #dbeafe; font-size: clamp(12px, .9vw, 15px); }
.glance-grid strong { color: var(--white); font-size: clamp(30px, 2.4vw, 44px); line-height: 1; }

.trust-bar {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0 var(--page-pad);
  background: #050608;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust-bar span {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  padding: 16px 24px;
  background:
    linear-gradient(135deg, rgba(4,18,43,.98), rgba(9,87,99,.92)),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.22), transparent 32%);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.trust-bar span::before {
  content: "";
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background-color: #ffffff;
  border: 1px solid rgba(255,255,255,.24);
  mask: var(--cred-icon) center / 22px 22px no-repeat;
  -webkit-mask: var(--cred-icon) center / 22px 22px no-repeat;
}
.trust-bar span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.22) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: credentialShine 5.5s ease-in-out infinite;
  z-index: -1;
}
.trust-bar span:hover {
  transform: translateY(-5px);
  border-color: rgba(255,94,21,.45);
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
}
.trust-bar span:nth-child(2)::after { animation-delay: .35s; }
.trust-bar span:nth-child(3)::after { animation-delay: .7s; }
.trust-bar span:nth-child(4)::after { animation-delay: 1.05s; }
.trust-bar span:nth-child(5)::after { animation-delay: 1.4s; }
.cred-company { --cred-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 20V6h8v14M13 10h6v10M8 9h2m-2 4h2m-2 4h2m6-3h2m-2 3h2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.cred-startup { --cred-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 19c3-1 5-3 6-6l-3-3c3-5 7-7 12-7 0 5-2 9-7 12l-3-3c-3 1-5 3-6 6l1 1zm10-10l.01 0M4 14l-2 2m6 4l-2 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.cred-msme { --cred-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20V9l5 3V9l5 3V7h6v13H4zm3-4h2m3 0h2m3 0h2' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.cred-gst { --cred-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h10v18H7zM9 7h6M9 11h6M9 15h3m4 0h.01' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.cred-iso { --cred-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l2.5 5 5.5.8-4 3.8.9 5.4-4.9-2.6L7.1 18l.9-5.4-4-3.8 5.5-.8L12 3z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }

@keyframes credentialShine {
  0%, 68% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
.section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 96px var(--page-pad);
  background:
    radial-gradient(circle at 92% 12%, rgba(9,87,99,.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}
.split {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(620px, 1.12fr);
  gap: clamp(56px, 6vw, 120px);
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: 96px var(--page-pad);
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(246,249,253,.92) 46%, rgba(232,240,250,.76) 78%, rgba(224,235,248,.58) 100%),
    url("assets/technext-smart-city-hero.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(219,229,242,.85);
}
.split > div:first-child {
  max-width: 760px;
}
.split::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(37,99,235,.18), transparent 26%),
    radial-gradient(circle at 58% 78%, rgba(11,94,215,.1), transparent 30%);
  pointer-events: none;
}
.split > * { position: relative; z-index: 1; }
.split h2,
.split p,
.section h2,
.section h3,
.section p {
  color: var(--ink);
}
.split p,
.section p {
  color: var(--text);
}
.section .eyebrow,
.split .eyebrow {
  color: var(--navy);
}
.purpose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.purpose-grid article, .cards article, .columns > div, .lower-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 48px rgba(8,23,54,.11);
  color: var(--ink);
}
.purpose-grid article {
  min-height: 230px;
  padding: 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.purpose-grid article b { color: var(--black); }
.purpose-grid article span { color: var(--text); }
.purpose-grid article::after {
  content: "";
  width: 56px;
  height: 56px;
  order: -1;
  margin-bottom: 16px;
  background: var(--navy);
  mask: var(--purpose-icon) center / contain no-repeat;
  -webkit-mask: var(--purpose-icon) center / contain no-repeat;
}
.purpose-grid article:nth-child(1) { --purpose-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18h6M10 22h4M8 14a6 6 0 118 0c-1 1-1.5 2-1.5 3h-5c0-1-.5-2-1.5-3zM4 10H2m20 0h-2M5 4l1.5 1.5M19 4l-1.5 1.5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.purpose-grid article:nth-child(2) { --purpose-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 19c3-1 5-3 6-6l-3-3c3-5 7-7 12-7 0 5-2 9-7 12l-3-3c-3 1-5 3-6 6l1 1zm10-10l.01 0M4 14l-2 2m6 4l-2 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.purpose-grid article:nth-child(3) { --purpose-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8a4 4 0 100 8 4 4 0 000-8zm0-5v3m0 12v3M4.2 4.2l2.1 2.1m11.4 11.4l2.1 2.1M3 12h3m12 0h3M4.2 19.8l2.1-2.1M17.7 6.3l2.1-2.1' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.purpose-grid article:nth-child(4) { --purpose-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 12l7-7m0 0h-4m4 0v4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.purpose-grid b { font-size: 22px; color: var(--black); }
.purpose-grid span { color: var(--text); }

.ecosystem { text-align: center; padding-top: 96px; padding-bottom: 96px; }
.ecosystem-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 24px 0;
}
.ecosystem-flow span {
  padding: 10px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 850;
  background: #eff6ff;
}
.unit-grid { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 14px; text-align: left; }
.unit-grid article {
  min-height: 360px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.12) 38%, rgba(0,0,0,.76) 100%),
    linear-gradient(90deg, rgba(10,20,12,.45), rgba(245,199,107,.08)),
    var(--unit-img);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 16px 40px rgba(3,12,29,.18);
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.unit-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 16%, rgba(245,199,107,.22), transparent 34%);
  opacity: .36;
  z-index: -1;
  transition: opacity .25s ease, transform .45s ease;
}
.unit-grid article:hover::before { opacity: .72; transform: scale(1.06); }
.unit-grid article > * { position: relative; z-index: 1; }
.unit-grid article:nth-child(1) { --unit-img: url("assets/energy.jpg"); }
.unit-grid article:nth-child(2) { --unit-img: url("assets/education.jpg"); }
.unit-grid article:nth-child(3) { --unit-img: url("assets/networks.jpg"); }
.unit-grid article:nth-child(4) { --unit-img: url("assets/digital.jpg"); }
.unit-grid article:nth-child(5) { --unit-img: url("assets/automation.jpg"); }
.unit-grid article:nth-child(6) { --unit-img: url("assets/ai-data.jpg"); }
.unit-grid article:nth-child(7) { --unit-img: url("assets/commerce.jpg"); }
.unit-grid article:nth-child(8) { --unit-img: url("assets/healthcare.jpg"); }
.unit-grid article:nth-child(9) { --unit-img: url("assets/smart-cities-iot.jpg"); }
.unit-grid small { color: #f5c76b; font-weight: 950; text-shadow: 0 2px 12px rgba(0,0,0,.42); }
.unit-grid h3 { font-size: 17px; color: #ffffff; text-shadow: 0 2px 16px rgba(0,0,0,.48); }
.unit-grid p { color: rgba(255,255,255,.88); font-size: 13px; text-shadow: 0 2px 14px rgba(0,0,0,.44); }

.education-programs {
  width: min(100% - 96px, 1640px);
  margin: 0 auto;
  padding: 82px 0 88px;
  background: #ffffff;
  scroll-margin-top: 116px;
}

.education-programs-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.education-programs-head h2 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.02;
}

.education-programs-head p {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.7;
}

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

.education-program-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(8, 23, 54, .07);
}

.education-program-grid h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.18;
}

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

.education-program-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-weight: 750;
  line-height: 1.45;
}

.education-program-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #13b33f);
}

.education-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, .86fr) minmax(440px, 1.14fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  width: 100%;
  min-height: calc(100svh - 108px);
  padding: clamp(104px, 8vw, 138px) var(--page-x) clamp(36px, 4.5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 94, 21, .12), transparent 24%),
    linear-gradient(135deg, #f8fbff 0%, #eef4fb 52%, #ffffff 100%);
}

.education-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(7, 17, 31, .04));
  pointer-events: none;
}

.education-home-copy,
.education-hero-gallery,
.education-home-hero .unit-jump {
  position: relative;
  z-index: 1;
}

.education-home-copy {
  max-width: 640px;
  align-self: center;
  text-align: left;
}

.education-home-copy h1 {
  max-width: 540px;
  margin: 16px 0 16px;
  color: var(--education-primary);
  font-size: clamp(18px, 1.22vw, 22px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
  white-space: nowrap;
}

.education-home-copy p {
  max-width: 620px;
  margin: 0 0 12px;
  color: #3a3a3a;
  font-size: clamp(14px, .9vw, 15px);
  line-height: 1.65;
  font-weight: 400;
  text-align: justify;
  text-align-last: left;
  text-shadow: none;
}

.education-landing {
  min-height: calc(100svh - 108px);
  grid-template-columns: minmax(360px, 620px) minmax(420px, 1fr);
}

.education-logo-type {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  gap: 10px;
  color: #1f1f1f;
  font-size: clamp(28px, 2.35vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: none;
  white-space: nowrap;
}

.education-logo-type b {
  color: var(--education-accent);
  font-size: 1em;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: none;
}

.education-main-nav {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: clamp(28px, 4vw, 64px);
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 14px var(--page-x);
  overflow-x: auto;
  background: rgba(255,255,255,.96);
  border-top: 0;
  border-bottom: 1px solid rgba(229,231,235,.92);
  box-shadow: 0 10px 28px rgba(42,8,92,.08);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.education-main-nav::-webkit-scrollbar {
  display: none;
}

.education-main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #1F1F1F;
  background: transparent;
  font-weight: 900;
  text-shadow: none;
  box-shadow: none;
  transition: color .2s ease;
}

.education-main-nav .education-nav-brand {
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.2vw, 21px);
  font-weight: 600;
  letter-spacing: .2px;
}

.education-main-nav .education-nav-brand b {
  color: var(--education-primary);
  font: inherit;
}

.education-main-nav a.is-active {
  color: var(--education-primary);
}

.education-visual-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  min-height: min(54vh, 520px);
  box-shadow: 0 28px 70px rgba(8, 23, 54, .18);
  border: 1px solid rgba(8, 23, 54, .10);
  background: #ffffff;
}

.education-visual-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.education-course-mosaic {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(54vh, 520px);
  min-height: 360px;
  margin-top: 0;
  overflow: hidden;
  align-self: center;
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(42,8,92,.14);
  background: #ffffff;
}

.course-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.course-mosaic-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(42,8,92,.12);
  background: #ffffff;
  box-shadow: none;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px) scale(.985);
  transition: opacity .75s ease, transform .75s ease;
}

.course-mosaic-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.course-mosaic-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.course-mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(42,8,92,.68));
  pointer-events: none;
}

.course-mosaic-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 3px 14px rgba(0,0,0,.34);
}

.course-mosaic-card:hover {
  transform: translateX(0) scale(1);
  box-shadow: none;
}

.course-mosaic-card:hover img {
  transform: scale(1.04);
}

.education-overview-section {
  width: min(100% - 96px, 1500px);
  margin: 0 auto;
  padding: 76px 0 82px;
  border-top: 1px solid var(--line);
}

.education-overview-head {
  display: block;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  text-align: center;
}

.education-overview-head h2 {
  max-width: 1120px;
  margin: 10px auto 14px;
  color: var(--ink);
  font-size: clamp(19px, 1.35vw, 25px);
  line-height: 1.14;
  font-weight: 500;
  white-space: nowrap;
}

.education-section-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #1f1f1f;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.education-section-brand b {
  color: var(--education-primary);
  font: inherit;
}

.education-overview-head p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.7;
}

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

.education-overview-grid article {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(42, 8, 92, .06);
}

.education-overview-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--education-primary), var(--education-accent));
}

.education-overview-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--education-primary);
  font-weight: 600;
  font-size: 14px;
}

.education-overview-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.18;
  font-weight: 600;
}

.education-overview-grid p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.education-pathway-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.education-pathway-strip div {
  padding: 22px 24px;
  background: #f8fbff;
}

.education-pathway-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--education-deep);
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 600;
}

.education-pathway-strip span {
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.education-main-nav a:hover {
  transform: none;
  color: var(--education-primary);
  background: transparent;
}

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

.education-hero-gallery article {
  position: relative;
  min-height: clamp(150px, 13vw, 210px);
  padding: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 20px 52px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}

.education-hero-gallery.vertical-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: stretch;
  align-content: center;
}

.education-vertical-card {
  position: relative;
  min-height: clamp(118px, 10vw, 172px);
  padding: 22px;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(3, 14, 31, .72), rgba(8, 25, 52, .46));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 20px 52px rgba(0,0,0,.28);
  backdrop-filter: blur(6px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.education-vertical-card.feature {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(5, 15, 32, .60), rgba(5, 13, 28, .84)),
    url("assets/hero-education-ai-4k.jpg") center / cover no-repeat;
}

.education-vertical-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.48);
  background: linear-gradient(145deg, rgba(11, 48, 99, .82), rgba(255, 94, 21, .28));
}

.education-vertical-card small {
  display: block;
  margin-bottom: 10px;
  color: #93c5fd;
  font-weight: 900;
}

.education-vertical-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(24px, 1.65vw, 34px);
  line-height: 1.08;
  text-shadow: 0 3px 16px rgba(0,0,0,.36);
}

.education-vertical-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-weight: 650;
  line-height: 1.55;
}

.education-hero-gallery article:first-child {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08)),
    url("assets/hero-education-ai-4k.jpg") center / cover no-repeat;
}

.education-hero-gallery small {
  display: block;
  margin-bottom: 10px;
  color: #93c5fd;
  font-weight: 900;
  text-transform: uppercase;
}

.education-hero-gallery h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 1.5vw, 30px);
  line-height: 1.12;
  text-shadow: 0 3px 16px rgba(0,0,0,.36);
}

.education-home-hero .unit-jump {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.education-home-hero .unit-jump a {
  color: rgba(255,255,255,.94);
  text-shadow: 0 2px 12px rgba(0,0,0,.30);
}

.education-home-hero .unit-jump a:hover {
  color: #ffffff;
}

.education-page .unit-card-grid article::before,
.education-page .two-panel > div::before,
.education-page .contact-panel::before {
  background: linear-gradient(90deg, #0b5ed7, #13b33f);
}

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

.education-detail-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(8, 23, 54, .07);
  overflow: hidden;
}

.education-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0b5ed7, #13b33f);
}

.education-detail-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.45vw, 28px);
  line-height: 1.12;
}

.education-detail-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.program-meta,
.program-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.program-meta li {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.program-meta b,
.program-list b {
  display: block;
  color: var(--ink);
}

.program-meta span,
.program-list span {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.program-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.55;
}

.program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.education-course-hero {
  width: min(100% - 96px, 1640px);
  margin: 0 auto;
  padding: 78px 0 42px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.education-course-hero h1 {
  max-width: 980px;
  margin: 12px auto 16px;
  color: var(--ink);
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.12;
  font-weight: 600;
  text-shadow: none !important;
  filter: none !important;
}

.education-course-hero p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(14px, .95vw, 17px);
  line-height: 1.58;
}

.education-course-hero .unit-metric-row {
  justify-content: center;
}

.education-course-hero > .eyebrow {
  color: var(--education-deep);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 700;
  letter-spacing: .2px;
}

.education-course-label {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.education-course-label b {
  color: var(--education-primary);
  font: inherit;
}

.education-course-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.course-hierarchy {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.course-hierarchy-parent {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--education-primary);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.course-hierarchy-parent::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 12px;
  background: var(--education-primary);
}

.education-course-nav.course-hierarchy-children {
  position: relative;
  margin-top: 0;
  padding-top: 12px;
}

.education-course-nav.course-hierarchy-children::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background: var(--education-primary);
}

.education-course-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--education-primary);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.education-course-nav a:hover {
  color: var(--accent);
  border-color: #bfdbfe;
}

.course-block {
  width: min(100% - 96px, 1640px);
  margin: 0 auto;
  padding: 66px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 108px;
}

.course-block-head {
  display: block;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  text-align: center;
}

.course-block-head h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.14;
  font-weight: 600;
}

.course-block-head p {
  max-width: 850px;
  margin: 14px auto 0;
  color: var(--text);
  font-size: clamp(14px, .95vw, 17px);
  line-height: 1.6;
}

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

.course-panel {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 34px rgba(8, 23, 54, .07);
  overflow: hidden;
}

.course-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0b5ed7, #13b33f);
}

.course-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(17px, 1.12vw, 21px);
  font-weight: 600;
}

.course-panel p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.course-list,
.number-roadmap {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.course-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

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

.number-roadmap li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

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

.course-faq article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.course-faq h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.28;
}

.course-faq p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 96px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 18% 8%, rgba(11,94,215,.08), transparent 26%),
    linear-gradient(180deg, #eef3f8 0%, #ffffff 100%);
}
.columns > div { padding: clamp(26px, 2.6vw, 44px); }
.columns h2 { font-size: 25px; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 16px; padding: 0; margin: 20px 0 0; list-style: none; color: var(--text); font-weight: 800; font-size: 14px; }
.check-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 38px;
}
.check-list li::before {
  content: attr(data-icon);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(37,99,235,.1);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: -.2px;
}
.tech-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px 18px;
  margin-top: 24px;
}
.tech-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .76);
  color: var(--text);
  font-weight: 850;
  font-size: 13px;
  border: 1px solid rgba(219, 229, 242, .82);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.tech-cloud span:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .13);
}
.tech-cloud img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 9px rgba(15, 23, 42, .12));
}

.check-list li { grid-template-columns: 28px 1fr; }
.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 0;
  background: var(--navy);
  box-shadow: none;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}
.icon-education { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l9-4 9 4-9 4-9-4zm4 3v5c2 2 8 2 10 0v-5M19 9v6' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-government { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20h16M6 10h12M5 10l7-5 7 5M7 10v8m5-8v8m5-8v8' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-enterprise { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 20V6h8v14M13 10h6v10M8 9h2m-2 4h2m-2 4h2m6-3h2m-2 3h2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-msme { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12a4 4 0 118 0 4 4 0 01-8 0zm-4 8a6 6 0 0116 0M4 9h3m10 0h3M12 2v3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-healthcare { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 8c0 7-8 12-8 12S4 15 4 8a4 4 0 017-2 4 4 0 017 2zM9 12h2l1-3 2 6 1-3h2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-manufacturing { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20V9l5 3V9l5 3V7h6v13H4zm3-4h2m3 0h2m3 0h2' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-retail { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 7h15l-2 8H8L6 4H3m6 16a1 1 0 100-2 1 1 0 000 2zm9 0a1 1 0 100-2 1 1 0 000 2z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-infra { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20h16M6 20V8h5v12m2 0V4h5v16M8 11h1m0 4H8m8-7h1m-1 4h1m-1 4h1' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-logistics { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 16V7h11v9M14 10h4l3 4v2h-3M7 18a2 2 0 100-4 2 2 0 000 4zm10 0a2 2 0 100-4 2 2 0 000 4zM9 16h6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-smartcity { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20V9h4v11m4 0V4h4v16m4 0v-8h-4M6 12h0m0 4h0m8-8h0m0 4h0m0 4h0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-platform,.icon-data,.icon-lms,.icon-ai,.icon-automation,.icon-cloud,.icon-iot,.icon-analytics,.icon-integration,.icon-custom { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l8 4v10l-8 4-8-4V7l8-4zm0 0v18M4 7l8 4 8-4M4 17l8-4 8 4' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-data { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='12' cy='6' rx='7' ry='3' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M5 6v12c0 2 14 2 14 0V6M5 12c0 2 14 2 14 0' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E"); }
.icon-lms { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5h10a4 4 0 014 4v10H8a3 3 0 01-3-3V5zm4 4h6M9 13h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-ai { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 6a4 4 0 018 0v12a4 4 0 01-8 0V6zm4-3v18M8 9H5m14 0h-3M8 15H5m14 0h-3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-automation { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 17l5-5 3 3 6-6M15 6h5v5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-cloud { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 18h10a4 4 0 00.5-8A6 6 0 006 11a3.5 3.5 0 001 7z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.icon-iot { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 3v3m0 12v3M3 12h3m12 0h3M5 5l2 2m10 10l2 2M19 5l-2 2M7 17l-2 2' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-analytics { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20V4m4 16v-7m5 7V8m5 12V5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-integration { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7h4v4H7zM13 13h4v4h-4zM11 9h4m-6 2v4m8-8l2-2m-2 14l2 2M5 5l2 2M5 19l2-2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-custom { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l2.5 5 5.5.8-4 3.8.9 5.4-4.9-2.6L7.1 18l.9-5.4-4-3.8 5.5-.8L12 3z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.process {
  margin: 0;
  width: 100%;
  max-width: none;
  padding: clamp(64px, 5vw, 96px) var(--page-pad);
  border-radius: 0;
  background: linear-gradient(135deg, #031024, #08215b 52%, #061735);
  color: var(--white);
}
.process h2 { color: var(--white); }
.process .eyebrow { color: #93c5fd; }
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.process-row article { border-top: 1px solid rgba(255,255,255,.2); padding-top: 22px; }
.process-row b { color: #93c5fd; }
.process-row p { color: #cbd5e1; font-size: 13px; }
.service-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.15); }
.service-strip span { color: #dbeafe; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 8px 12px; font-size: 12px; font-weight: 850; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background:
    radial-gradient(circle at 82% 16%, rgba(37,99,235,.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}
.cards article, .lower-grid article { padding: clamp(26px, 2.4vw, 42px); }
.cards h2, .lower-grid h2 { font-size: 25px; }
.identity-list { margin: 20px 0 0; }
.identity-list div { padding: 12px 0; border-top: 1px solid var(--line); }
.identity-list dt { font-weight: 950; color: var(--black); }
.identity-list dd { margin: 0; color: var(--text); overflow-wrap: anywhere; }

.lower-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1.2fr;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 96px;
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.timeline b { color: var(--navy); }
.timeline span { color: var(--text); }
.cta-card { background: linear-gradient(145deg, #061735, #0b5ed7) !important; color: var(--white); }
.cta-card p { color: #dbeafe; }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px 32px;
  background: #020817;
  color: var(--white);
}
footer p { margin: 0; color: #94a3b8; font-size: 13px; }
.footer-brand {
  width: fit-content;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.footer-brand .brand-image { width: 360px; max-height: 95px; }
.footer-brand .tn-t { fill: var(--white); }
.footer-brand .tn-n,
.footer-brand .brand-copy em { fill: #60a5fa; color: #60a5fa; }
.footer-brand .brand-copy small { color: #cbd5e1; }
.footer-brand .brand-copy span { color: var(--white); }

.columns > div,
.cards article,
.lower-grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.columns > div::before,
.cards article::before,
.lower-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(6,23,53,.72), rgba(8,33,91,.46)),
    var(--section-img) center / cover no-repeat;
  opacity: .16;
  transform: scale(1.08);
  transition: opacity .28s ease, transform .55s ease;
}
.columns > div:hover::before,
.cards article:hover::before,
.lower-grid article:hover::before {
  opacity: 1;
  transform: scale(1);
}
.ecosystem {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
}
.ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62)),
    url("assets/smart-cities-iot.jpg") center / cover no-repeat;
  opacity: .18;
  transform: scale(1.06);
  transition: opacity .3s ease, transform .6s ease;
  pointer-events: none;
}
.ecosystem:hover::before { opacity: 1; transform: scale(1); }
.ecosystem > * { position: relative; z-index: 1; }

.columns > div:nth-child(1) { --section-img: url("assets/education.jpg"); }
.columns > div:nth-child(2) { --section-img: url("assets/automation.jpg"); }
.columns > div:nth-child(3) { --section-img: url("assets/ai-data.jpg"); }

.process {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #031024, #08215b 52%, #061735);
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3,16,36,.76), rgba(8,33,91,.52)),
    url("assets/networks.jpg") center / cover no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .32s ease, transform .65s ease;
  pointer-events: none;
}
.process:hover::before { opacity: 1; transform: scale(1); }
.process > * { position: relative; z-index: 1; }

.cards article:nth-child(1) { --section-img: url("assets/digital.jpg"); }
.cards article:nth-child(2) { --section-img: url("assets/smart-cities-iot.jpg"); }
.cards article:nth-child(3) { --section-img: url("assets/networks.jpg"); }
.cards article:nth-child(4) { --section-img: url("assets/automation.jpg"); }
.lower-grid article:nth-child(1) { --section-img: url("assets/energy.jpg"); }
.lower-grid article:nth-child(2) { --section-img: url("assets/ai-data.jpg"); }
.lower-grid article:nth-child(3) { --section-img: url("assets/education.jpg"); }
.lower-grid article:nth-child(4) { --section-img: url("assets/commerce.jpg"); }

.unit-grid article,
.purpose-grid article,
.columns > div,
.cards article,
.lower-grid article {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.unit-grid article:hover,
.purpose-grid article:hover,
.columns > div:hover,
.cards article:hover,
.lower-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(95,127,22,.30);
  box-shadow: 0 24px 60px rgba(64,82,23,.14);
}

/* Green/gold visual direction inspired by premium solar references. */
.mega a:hover {
  background: #f5f9ed;
  color: #075c66;
}
.section,
.ecosystem {
  background:
    radial-gradient(circle at 90% 14%, rgba(245,199,107,.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f6ef 100%);
}
.split {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,252,242,.92) 50%, rgba(235,242,216,.76) 100%),
    url("assets/technext-solar-green-hero.png") center / cover no-repeat;
}
.split::before {
  background:
    radial-gradient(circle at 84% 18%, rgba(245,199,107,.20), transparent 26%),
    radial-gradient(circle at 58% 78%, rgba(95,127,22,.12), transparent 30%);
}
.purpose-grid article,
.columns > div,
.cards article,
.lower-grid article {
  border-color: rgba(95,127,22,.18);
  background: rgba(255,255,255,.92);
}
.columns > div::before,
.cards article::before,
.lower-grid article::before {
  background:
    linear-gradient(135deg, rgba(25,35,12,.40), rgba(95,127,22,.20)),
    var(--section-img) center / cover no-repeat;
}
.ecosystem::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,250,236,.64)),
    url("assets/technext-solar-green-hero.png") center / cover no-repeat;
}
.process {
  background: linear-gradient(135deg, #071812, #075c66 48%, #3f5f14);
}
.process::before {
  background:
    linear-gradient(135deg, rgba(7,24,18,.72), rgba(63,95,20,.44)),
    url("assets/energy.jpg") center / cover no-repeat;
}
.cta-card {
  background: linear-gradient(145deg, #071812, #075c66 58%, #6a8f18) !important;
}
.tech-cloud span {
  background: rgba(255,255,255,.86);
  border-color: rgba(95,127,22,.22);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .85s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    transform .85s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-copy,
.glance {
  animation: heroEntrance .9s cubic-bezier(.22, 1, .36, 1) both;
}
.glance { animation-delay: .18s; }

@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

footer {
  background: #020817;
}

/* Clean all non-home section backgrounds. Home hero slideshow stays unchanged. */
main > section:not(.hero),
.section,
.split,
.ecosystem,
.columns,
.process,
.cards,
.lower-grid {
  background: #ffffff !important;
  background-image: none !important;
}

.split::before,
.ecosystem::before,
.process::before,
.unit-grid article::before,
.columns > div::before,
.cards article::before,
.lower-grid article::before {
  display: none !important;
  background: none !important;
}

.purpose-grid article,
.unit-grid article,
.columns > div,
.cards article,
.lower-grid article,
.cta-card {
  background: #ffffff !important;
  background-image: none !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.unit-grid article {
  min-height: 300px;
  justify-content: flex-start;
}

.unit-grid small,
.unit-grid h3,
.unit-grid p,
.cta-card h3,
.cta-card p {
  color: var(--ink) !important;
  text-shadow: none !important;
}

.unit-grid small {
  color: var(--accent) !important;
}

.unit-grid article.unit-energy-card {
  grid-column: span 3;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(190px, 1fr) auto;
  background: #ffffff !important;
}

.unit-grid article.unit-energy-card::before {
  display: none !important;
}

.unit-energy-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.unit-energy-card div {
  padding: 20px;
}

.unit-grid .unit-energy-card h3 {
  font-size: clamp(22px, 1.7vw, 30px);
}

.unit-grid .unit-energy-card p {
  font-size: 15px;
  line-height: 1.55;
}

.unit-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.unit-learn::after {
  content: "->";
}

.unit-learn:hover {
  color: var(--navy);
}

.ecosystem .ecosystem-flow {
  justify-content: center;
  width: min(100%, 720px);
  margin-left: auto;
  margin-right: auto;
}

.ecosystem .unit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.ecosystem .unit-grid article,
.ecosystem .unit-grid article.unit-energy-card {
  grid-column: auto;
  min-height: 460px;
  border-radius: 8px;
}

.ecosystem .unit-grid article:not(.unit-energy-card) {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(4, 17, 35, .14), rgba(4, 17, 35, .72)),
    url("assets/education.jpg") center / cover no-repeat !important;
}

.ecosystem .unit-grid article:not(.unit-energy-card)::before {
  display: none !important;
}

.ecosystem .unit-grid article:not(.unit-energy-card) small,
.ecosystem .unit-grid article:not(.unit-energy-card) h3,
.ecosystem .unit-grid article:not(.unit-energy-card) p,
.ecosystem .unit-grid article:not(.unit-energy-card) .unit-learn {
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.44) !important;
}

.ecosystem .unit-grid article:not(.unit-energy-card) h3 {
  font-size: clamp(24px, 2vw, 34px);
}

.ecosystem .unit-grid article:not(.unit-energy-card) p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
}

.business-showcase {
  background: #ffffff;
  padding: 52px 0 84px;
  scroll-margin-top: 116px;
}

.business-showcase-frame {
  width: min(100% - 96px, 1760px);
  margin: 0 auto;
}

.business-showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.network-page {
  background: #ffffff;
}

.network-image-hero {
  width: min(100% - 96px, 1780px);
  margin: 42px auto 0;
  background: #ffffff;
}

.network-image-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.network-jump {
  width: min(100% - 96px, 1640px);
  margin: 32px auto 0;
  padding: 18px 0 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.network-jump a {
  color: var(--ink);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 760;
  text-decoration: none;
}

.network-jump a:hover {
  color: var(--accent);
}

.network-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.network-feature-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(8, 23, 54, .07);
}

.network-feature-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.network-feature-grid span {
  color: var(--text);
  line-height: 1.55;
}

.network-visual-section {
  width: min(100% - 96px, 1640px);
  margin: 0 auto;
  padding: 74px 0;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(460px, 1.18fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.network-visual-section.reverse {
  grid-template-columns: minmax(460px, 1.18fr) minmax(320px, .82fr);
}

.network-visual-section.reverse .network-visual-copy {
  order: 2;
}

.network-visual-copy h2 {
  margin: 12px 0 16px;
  color: var(--ink);
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1.02;
}

.network-visual-copy p {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.2vw, 21px);
  line-height: 1.7;
}

.network-visual-card {
  min-height: clamp(340px, 30vw, 520px);
  border-radius: 8px;
  background: var(--network-img) center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(8, 23, 54, .16);
}

.network-card-primary {
  --network-img: url("assets/technext-network-business-section.png");
}

.network-card-secondary {
  --network-img: url("assets/networks.jpg");
}

@media (max-width: 1439px) {
  .energy-corporate-hero,
  .energy-hero-inner {
    min-height: clamp(500px, 72vh, 660px);
  }
  .energy-hero-inner {
    width: min(100% - clamp(42px, 7vw, 110px), 1280px);
    grid-template-columns: minmax(330px, .42fr) minmax(460px, .58fr);
    gap: clamp(24px, 3.6vw, 56px);
  }
  .energy-hero-copy {
    max-width: 500px;
  }
  .energy-logo-lockup {
    margin-bottom: clamp(18px, 3vh, 30px);
  }
  .energy-logo-lockup strong {
    font-size: clamp(32px, 3vw, 46px);
  }
  .energy-logo-lockup > span {
    font-size: clamp(19px, 1.8vw, 26px);
  }
  .energy-hero-copy h1 {
    max-width: 460px;
    font-size: clamp(22px, 2.25vw, 34px);
    line-height: 1.18;
    letter-spacing: -.02em;
  }
  .energy-corporate-hero .energy-hero-copy p {
    max-width: 470px;
    font-size: clamp(12px, .9vw, 13px);
    line-height: 1.78;
    font-weight: 550;
  }
  .energy-hero-visual img {
    width: min(113%, 800px);
    max-height: clamp(390px, 55vh, 570px);
    transform: translateX(clamp(6px, 2vw, 26px));
  }
}

@media (max-width: 1023px) {
  .energy-corporate-hero,
  .energy-hero-inner {
    min-height: clamp(560px, calc(100svh - 86px), 760px);
  }
  .energy-hero-inner {
    width: min(100% - 44px, 1400px);
    grid-template-columns: minmax(0, .45fr) minmax(0, .55fr);
    gap: clamp(16px, 2.8vw, 32px);
  }
  .energy-hero-copy {
    padding: clamp(26px, 4vh, 54px) 0;
    transform: none;
  }
  .energy-logo-lockup {
    margin-bottom: clamp(18px, 3vh, 28px);
  }
  .energy-hero-copy p {
    line-height: 1.68;
  }
  .energy-hero-visual::before {
    left: clamp(-150px, -15vw, -80px);
  }
}

.cta-card .btn.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.about-page {
  background: #ffffff;
  color: var(--ink);
  padding-top: 92px;
}

.about-hero,
.about-section {
  width: min(100% - 96px, 1640px);
  margin: 0 auto;
  background: #ffffff;
}

.about-hero {
  padding: 78px 0 38px;
}

.about-hero h1 {
  max-width: 1050px;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: none !important;
  text-transform: none;
}

.about-hero p {
  max-width: 880px;
  color: var(--text);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

.about-jump {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 14px clamp(24px, 5vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(42,8,92,.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.about-jump::-webkit-scrollbar {
  display: none;
}

.about-jump a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
  text-align: center;
  transition: color .2s ease;
}

.about-jump a:hover {
  color: var(--accent);
}

.about-jump a.is-active {
  color: var(--accent);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-section {
  padding: 68px 0;
  scroll-margin-top: 190px;
}

.about-section + .about-section {
  border-top: 1px solid var(--line);
}

.about-section-head {
  display: block;
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-section-head h2 {
  margin: 10px auto 14px;
  color: var(--ink);
  text-align: center;
}

.about-section-head p {
  margin: 0 auto;
  max-width: 900px;
  color: var(--text);
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.7;
  text-align: center;
}

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

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

.about-subgrid article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.about-subgrid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--black), var(--accent));
}

.about-subgrid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(18px, 1.2vw, 23px);
  text-shadow: none;
}

.about-subgrid p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.narrative-grid p {
  font-size: clamp(16px, 1.02vw, 18px);
  line-height: 1.78;
}

.about-subgrid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  font-size: clamp(16px, 1.02vw, 18px);
  line-height: 1.78;
}

.about-subgrid li + li {
  margin-top: 6px;
}

.timeline-card {
  grid-column: 1 / -1;
}

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

.year-grid > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.year-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 20px;
}

.year-grid ul {
  font-size: 15px;
  line-height: 1.55;
}

footer.mega-footer {
  display: block;
  width: 100%;
  padding: 0;
  background: linear-gradient(135deg, #2A085C 0%, #3b1175 52%, #210548 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.mega-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(360px, .8fr);
  gap: 48px;
  width: min(100% - 120px, 1500px);
  margin: 0 auto;
  padding: 34px 0 16px;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: clamp(28px, 4vw, 72px);
}

.footer-link-grid h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(24px, 1.5vw, 30px);
  font-weight: 500;
  letter-spacing: 0;
}

.footer-link-grid a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(15px, .95vw, 18px);
  line-height: 1.25;
  text-decoration: none;
}

.footer-link-grid .footer-option-disabled {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(15px, .95vw, 18px);
  line-height: 1.25;
}

.footer-link-grid a:hover {
  color: var(--tn-orange);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  align-self: start;
  padding-left: 72px;
  border-left: 0;
}

.social-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 28px;
  margin-bottom: 22px;
}

.social-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  line-height: 0;
}

.social-logo svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.social-logo.youtube {
  width: 38px;
}

.social-logo.instagram {
  width: 31px;
  height: 31px;
}

.social-logo.mail {
  width: 34px;
}

.social-logo.instagram svg,
.social-logo.mail svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-logo:hover {
  opacity: .78;
}

.social-logo-disabled {
  opacity: .58;
  cursor: default;
}

.social-logo-disabled:hover {
  opacity: .58;
}

.mobile-social-placeholder {
  display: inline-flex;
}

/* Compact footer: approximately 20% smaller than the original presentation. */
footer.mega-footer {
  font-size: 80%;
}

.mega-footer-inner {
  padding-top: 27px;
  padding-bottom: 13px;
}

.footer-link-grid {
  gap: clamp(22px, 3.2vw, 58px);
}

.footer-link-grid h3 {
  margin-bottom: 13px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(17.1px, 1.08vw, 21.6px);
  font-style: normal;
  font-weight: 400 !important;
  letter-spacing: .025em !important;
  color: var(--tn-orange);
}

.footer-link-grid a,
.footer-link-grid .footer-option-disabled {
  margin-bottom: 8px;
  font-size: clamp(12px, .76vw, 14.5px);
}

.footer-connect {
  padding-left: 58px;
}

.social-row {
  gap: 22px;
  margin-bottom: 18px;
}

.social-logo {
  width: 26px;
  height: 26px;
}

.social-logo.instagram {
  width: 25px;
  height: 25px;
}

.social-logo.mail {
  width: 27px;
}

.footer-subscribe {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 58px;
  width: min(100%, 380px);
  min-height: 54px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, .75);
}

.footer-subscribe input,
.footer-subscribe button {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
}

.footer-subscribe input {
  padding: 0 18px;
  font-size: 14px;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, .92);
}

.footer-subscribe button {
  border-left: 1px solid rgba(255, 255, 255, .55);
  font-size: 26px;
  cursor: pointer;
}

.footer-emblem {
  margin-top: auto;
  align-self: center;
  text-align: center;
}

.footer-emblem img {
  width: min(290px, 100%);
  max-height: 110px;
  object-fit: contain;
  filter: none;
  background: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 120px, 1500px);
  margin: 0 auto;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .32);
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
}

.unit-page {
  background: #ffffff;
  color: var(--ink);
}

.energy-page {
  padding-top: 0;
}

.energy-page .unit-section {
  scroll-margin-top: 180px;
}

.energy-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(28px, 4.2vw, 70px);
  align-items: center;
  width: 100%;
  min-height: calc(100svh - 108px);
  padding: clamp(48px, 5.4vw, 84px) clamp(48px, 7vw, 130px) 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,153,0,.13), transparent 30%),
    linear-gradient(90deg, rgba(4, 12, 18, .92) 0%, rgba(8, 20, 28, .78) 42%, rgba(8, 20, 28, .40) 100%),
    url("assets/home-energy-hero-desktop-4k.png") center / cover no-repeat;
}

.energy-home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(5,18,16,.74));
  pointer-events: none;
}

.energy-home-copy,
.energy-home-gallery,
.energy-home-hero .unit-jump {
  position: relative;
  z-index: 1;
}

.energy-home-copy {
  max-width: 620px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(clamp(-92px, -9vh, -46px));
}

.energy-home-copy h1 {
  max-width: 620px;
  margin: 12px 0 18px;
  color: #1f1f1f;
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: none;
}

.energy-home-copy h1 span {
  color: #15803d;
  font-size: 1em;
  font-weight: 800;
  text-shadow: none;
}

.energy-home-copy p {
  max-width: 620px;
  color: #3a3a3a;
  font-size: clamp(14px, .9vw, 15px);
  line-height: 1.65;
  font-weight: 400;
  text-shadow: none;
}

.energy-home-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.05vw, 18px);
  align-self: center;
}

.energy-home-gallery article {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: var(--energy-img) center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  isolation: isolate;
  transform: translateY(0);
  animation: none;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

.energy-home-gallery article:nth-child(1) { --energy-img: url("assets/solar-energy.png"); }
.energy-home-gallery article:nth-child(2) { --energy-img: url("assets/wind-energy.png"); }
.energy-home-gallery article:nth-child(3) { --energy-img: url("assets/rooftop-solar.png"); background-position: center; }
.energy-home-gallery article:nth-child(4) { --energy-img: url("assets/ground-mounted-solar.png"); background-position: center; }
.energy-home-gallery article:nth-child(5) { --energy-img: url("assets/solar-water-pumping.png"); background-position: center; }
.energy-home-gallery article:nth-child(6) { --energy-img: url("assets/solar-street-lighting.png"); }
.energy-home-gallery article:nth-child(7) { --energy-img: url("assets/solar-power-plants.png"); background-position: center; }
.energy-home-gallery article:nth-child(8) { --energy-img: url("assets/transmission-switchyard.png"); }
.energy-home-gallery article:nth-child(9) { --energy-img: url("assets/energy-storage.png"); }

.energy-home-gallery article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62));
}

.energy-home-gallery article span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #ffffff;
  font-size: clamp(13px, .9vw, 17px);
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 3px 14px rgba(0,0,0,.55);
}

.energy-home-gallery article:hover {
  transform: translateY(-6px) scale(1.02);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 26px 62px rgba(0,0,0,.28);
}

.energy-home-hero .unit-jump {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 80;
  grid-column: auto;
  margin-top: 0;
  padding: 14px clamp(24px, 5vw, 96px);
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(229,231,235,.82);
  border-bottom: 1px solid rgba(229,231,235,.92);
  box-shadow: 0 10px 28px rgba(42,8,92,.08);
  backdrop-filter: blur(14px);
}

.energy-home-hero .unit-jump a {
  color: #1F1F1F;
  text-shadow: none;
}

.energy-home-hero .unit-jump a:hover {
  color: var(--brand-purple);
}

@keyframes energyTileFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.unit-hero,
.unit-section {
  width: min(100% - 96px, 1640px);
  margin: 0 auto;
}

.unit-hero {
  padding: 86px 0 48px;
  border-bottom: 1px solid var(--line);
}

.unit-hero h1 {
  max-width: 1120px;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: none !important;
  text-transform: uppercase;
}

.unit-hero p {
  max-width: 980px;
  color: var(--text);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.65;
}

.unit-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
  width: 100%;
  margin-top: 26px;
}

.unit-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 700;
  box-shadow: none;
}

.unit-metric-row span,
.resource-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.unit-jump a:hover {
  color: var(--accent);
}

.unit-section {
  padding: 66px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px;
}

.unit-section-head {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.unit-section-head h2,
.two-panel h2,
.contact-panel h2 {
  margin: 10px 0 0;
  color: var(--ink);
}

.unit-section-head p,
.two-panel p,
.contact-panel p {
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.7;
}

.energy-page .unit-section-head {
  display: block;
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.energy-page .unit-section-head h2 {
  margin: 10px auto 14px;
  text-align: center;
}

.energy-page .unit-section-head p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.unit-metric-row,
.resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.unit-card-grid article,
.two-panel > div,
.contact-panel {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.unit-card-grid article::before,
.two-panel > div::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1f7a30, var(--accent));
}

.unit-card-grid article {
  min-height: 170px;
}

.unit-card-grid.compact article {
  min-height: 112px;
  display: flex;
  align-items: center;
}

.unit-card-grid h3,
.two-panel h2,
.contact-panel h2 {
  color: var(--ink);
}

.unit-card-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.15vw, 23px);
  text-shadow: none;
}

.unit-card-grid p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

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

.two-panel > div {
  min-height: 280px;
}

.contact-panel {
  margin-bottom: 74px;
}

.compliance-grid article {
  min-height: 170px;
}

@media (max-width: 1180px) {
  .top-bar-inner { padding: 0 18px; }
  .top-bar-contact { display: none; }
  body { padding-top: 76px; }
  html { scroll-padding-top: 84px; }
  .site-header { min-height: 76px; padding: 6px 18px; }
  .site-header.is-scrolled { min-height: 76px; }
  .brand-image,
  .site-header.is-scrolled .brand-image { width: 270px; max-height: 70px; }
  .primary-nav { gap: 14px; font-size: 13px; }
  .home-video-copy { width: min(620px, 62vw); }
  .home-video-hero {
    height: calc(100svh - 76px);
    min-height: 560px;
  }
  .home-education-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-unit-split-feature .home-education-shell {
    grid-template-columns: 1fr;
  }
  .home-unit-split-head {
    width: min(100% - 48px, 860px);
  }
  .home-education-copy {
    max-width: 780px;
  }
  .education-home-hero { grid-template-columns: 1fr; }
  .education-visual-card,
  .education-course-mosaic {
    height: 360px;
    min-height: 320px;
  }
  .trust-bar { grid-template-columns: repeat(3, 1fr); }
  .trust-bar span { justify-content: flex-start; }
  .unit-grid { grid-template-columns: repeat(3, 1fr); }
  .unit-grid article.unit-energy-card { grid-column: 1 / -1; }
  .business-showcase-frame { width: min(100% - 48px, 1180px); }
  .network-image-hero,
  .network-jump,
  .network-visual-section { width: min(100% - 48px, 1180px); }
  .network-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .network-visual-section,
  .network-visual-section.reverse { grid-template-columns: 1fr; }
  .network-visual-section.reverse .network-visual-copy { order: 0; }
  .columns { grid-template-columns: 1fr; }
  .cards, .lower-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section-head { max-width: 100%; }
  .about-subgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .energy-home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 78px 28px 42px;
  }
  .energy-home-copy {
    transform: translateY(-24px);
  }
  .energy-page {
    padding-top: 0;
  }
  .energy-page .unit-section {
    scroll-margin-top: 150px;
  }
  .energy-home-hero .unit-jump {
    top: 76px;
    padding: 12px 24px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .energy-home-hero .unit-jump::-webkit-scrollbar {
    display: none;
  }
  .energy-home-hero .unit-jump a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .education-home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 128px 28px 42px;
    background:
      linear-gradient(180deg, rgba(245,249,255,.96), rgba(226,234,246,.86));
  }
  .education-main-nav {
    top: 76px;
    justify-content: flex-start;
    gap: 24px;
    padding: 12px 24px;
  }
  .education-course-hero,
  .course-block { width: min(100% - 48px, 1180px); }
  .course-block-head { grid-template-columns: 1fr; gap: 18px; }
  .course-faq { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .energy-home-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .education-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .education-overview-head { grid-template-columns: 1fr; gap: 18px; }
  .education-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .unit-section-head { grid-template-columns: 1fr; gap: 18px; }
  .unit-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mega-footer-inner {
    grid-template-columns: 1fr;
    width: min(100% - 56px, 980px);
    gap: 28px;
  }
  .footer-connect {
    min-height: auto;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .34);
    padding-top: 26px;
  }
  .footer-bottom { width: min(100% - 56px, 980px); }
}

@media (max-width: 860px) {
  .brand-mantra-grid {
    grid-template-columns: 1fr;
  }
  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 6px;
    padding: 10px 14px;
    font-weight: 900;
  }
  .primary-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 94px;
    display: none;
    max-height: calc(100vh - 110px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a, .nav-group > button, .nav-cta { padding: 12px; text-align: left; }
  .primary-nav .nav-cta {
    align-self: stretch;
    justify-content: flex-start;
    margin-left: 0;
    padding: 14px 16px;
    background: transparent;
    color: var(--black);
    box-shadow: none;
  }
  .country-badge {
    justify-content: flex-start;
    width: 100%;
    border-radius: 6px;
    box-shadow: none;
    border: 1px solid var(--line);
  }
  .country-badge::before,
  .country-badge::after { display: none; }
  .mega, .mega.wide {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    display: none;
    grid-template-columns: 1fr;
    margin-bottom: 8px;
  }
  .nav-group.open .mega { display: grid; }
  .hero-content { width: 100%; grid-template-columns: 1fr; min-height: auto; padding: 58px 18px; }
  .home-video-hero {
    height: calc(100svh - 76px);
    min-height: 540px;
  }
  .home-video-stage {
    position: absolute;
    min-height: 0;
  }
  .home-video-slide {
    position: absolute;
    display: block;
    min-height: calc(100svh - 82px);
    padding: 0;
  }
  .home-video-slide.is-active {
    display: block;
  }
  .home-video-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 72px;
    width: min(100%, 560px);
    transform: none;
  }
  .home-video-copy h1 { font-size: clamp(20px, 5vw, 26px); }
  .home-education-feature {
    padding: 48px 18px;
  }
  .home-unit-feature-card {
    min-height: auto;
    padding: 24px;
    min-width: 0;
  }
  .home-unit-feature-card.is-education {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 24px 18px 22px;
  }
  .home-unit-feature-card.is-education .home-unit-card-top {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .home-unit-feature-card.is-education h2 {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .home-unit-feature-card.is-education > p {
    grid-column: 1 / -1;
    grid-row: 3;
  }
  .home-unit-feature-card.is-education .home-unit-flow {
    grid-column: 1 / -1;
    grid-row: 4;
  }
  .home-unit-feature-card.is-education .home-feature-link-label {
    grid-column: 1;
    grid-row: 5;
    align-self: center;
    margin: 0;
  }
  .home-unit-feature-card.is-education .home-unit-card-top {
    gap: 12px;
    margin-bottom: 18px;
  }
  .home-unit-feature-card.is-education .unit-kicker {
    width: 100%;
    font-size: 21px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: .02em;
    text-align: left;
    white-space: nowrap;
  }
  .home-unit-feature-card.is-education .home-unit-card-meta {
    min-height: 36px;
    padding: 7px 14px;
    line-height: 1.25;
  }
  .home-unit-feature-card.is-education h2 {
    width: 100%;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 550 !important;
    line-height: 1.18;
    text-align: left;
  }
  .home-unit-feature-card.is-education > p {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.5;
  }
  .home-unit-split-feature .home-education-shell {
    width: calc(100% - 36px);
    grid-template-columns: minmax(0, 1fr);
  }
  .home-unit-card-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-unit-card-meta {
    white-space: normal;
  }
  .home-unit-flow {
    grid-template-columns: 1fr;
  }
  .home-unit-feature-card.is-education .home-unit-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 22px;
  }
  .home-unit-feature-card.is-education .home-unit-flow span {
    display: flex;
    min-height: 92px;
    padding: 12px 10px;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
  }
  .home-unit-feature-card.is-education .home-unit-flow b {
    margin-bottom: 7px;
    font-size: 11px;
  }
  .home-unit-feature-card h2,
  .home-unit-feature-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .home-unit-feature-card.is-energy .home-feature-links {
    flex-wrap: wrap;
  }
  .home-unit-feature-card.is-education .home-feature-links {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 6;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px 8px;
    margin-top: 10px;
    margin-bottom: 18px;
  }
  .home-unit-feature-card.is-education .home-feature-links a {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
  }
  .home-unit-feature-card.is-education .home-feature-links a:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #111827;
  }
  .home-unit-feature-card.is-education .home-feature-links a:nth-child(4) {
    grid-column: 3 / 5;
    grid-row: 1;
    border-color: #ddd6fe;
    background: #f5f3ff;
    color: #111827;
  }
  .home-unit-feature-card.is-education .home-feature-links a:nth-child(5) {
    grid-column: 5 / 7;
    grid-row: 1;
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #111827;
  }
  .home-unit-feature-card.is-education .home-feature-links a:nth-child(2) {
    grid-column: 1 / 4;
    grid-row: 2;
    border-color: #fecdd3;
    background: #fff1f2;
    color: #111827;
  }
  .home-unit-feature-card.is-education .home-feature-links a:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 2;
    border-color: #fecdd3;
    background: #fff1f2;
    color: #111827;
  }
  .home-unit-feature-card.is-education .education-link {
    grid-column: 2;
    grid-row: 5;
    width: auto;
    min-height: 26px;
    margin: 0;
    padding: 0 7px;
    align-self: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0;
  }
  .home-unit-feature-card.is-education .education-link::after {
    content: "More  >";
    font-size: 10px;
    line-height: 1;
  }
  .home-unit-feature-card.is-energy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 24px 18px 22px;
  }
  .home-unit-feature-card.is-energy .home-unit-card-top {
    grid-column: 1 / -1;
    grid-row: 1;
    gap: 12px;
    margin-bottom: 18px;
  }
  .home-unit-feature-card.is-energy .unit-kicker {
    width: 100%;
    font-size: 21px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: .02em;
    text-align: left;
    white-space: nowrap;
  }
  .home-unit-feature-card.is-energy .home-unit-card-meta {
    min-height: 36px;
    padding: 7px 14px;
    line-height: 1.25;
  }
  .home-unit-feature-card.is-energy h2 {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 550 !important;
    line-height: 1.18;
    text-align: left;
  }
  .home-unit-feature-card.is-energy > p {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.5;
  }
  .home-unit-feature-card.is-energy .home-unit-flow {
    grid-column: 1 / -1;
    grid-row: 4;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 22px;
  }
  .home-unit-feature-card.is-energy .home-unit-flow span {
    display: flex;
    min-height: 92px;
    padding: 12px 10px;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
  }
  .home-unit-feature-card.is-energy .home-unit-flow b {
    margin-bottom: 7px;
    font-size: 11px;
  }
  .home-unit-feature-card.is-energy .home-feature-link-label {
    grid-column: 1;
    grid-row: 5;
    align-self: center;
    margin: 0;
  }
  .home-unit-feature-card.is-energy .home-feature-links {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 6;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
    margin: 10px 0 0;
  }
  .home-unit-feature-card.is-energy .home-feature-links a {
    width: 100%;
    min-height: 42px;
    padding: 7px 8px;
    justify-content: center;
    border-radius: 8px;
    color: #111827;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }
  .home-unit-feature-card.is-energy .home-feature-links a:nth-child(1) {
    border-color: #a5f3fc;
    background: #ecfeff;
  }
  .home-unit-feature-card.is-energy .home-feature-links a:nth-child(2) {
    border-color: #a5f3fc;
    background: #ecfeff;
  }
  .home-unit-feature-card.is-energy .home-feature-links a:nth-child(3) {
    border-color: #fde68a;
    background: #fffbeb;
  }
  .home-unit-feature-card.is-energy .home-feature-links a:nth-child(4) {
    border-color: #fde68a;
    background: #fffbeb;
  }
  .home-unit-feature-card.is-energy .energy-link {
    grid-column: 2;
    grid-row: 5;
    width: auto;
    min-height: 26px;
    margin: 0;
    padding: 0 7px;
    align-self: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0;
  }
  .home-unit-feature-card.is-energy .energy-link::after {
    content: "More  >";
    font-size: 10px;
    line-height: 1;
  }


.home-unit-feature-card h2 {
    font-size: clamp(18px, 5.2vw, 23px);
  }
  .home-education-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
  .home-education-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .home-education-panel article {
    min-height: auto;
  }
  .home-education-panel article span {
    margin-bottom: 18px;
  }
  .home-video-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }
  .home-video-tabs { left: 18px; bottom: 28px; }
  .hero { min-height: auto; }
  .hero.is-image-only { min-height: 0; height: auto; }
  .hero.is-image-only .hero-slideshow {
    width: min(100%, calc((100vh - 76px) * 1.48), 1120px);
  }
  .hero.is-image-only .hero-static-cta {
    left: 44px;
    top: 79%;
  }
  .glance { max-width: 520px; }
  .trust-bar { grid-template-columns: 1fr; margin: 0; padding: 18px; }
  .trust-bar span { min-height: 64px; }
  .split, .columns, .process-row { grid-template-columns: 1fr; }
  .tech-cloud { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
  .split { border-radius: 0; padding: 58px 18px; }
  .section { width: 100%; padding: 58px 18px; }
  .ecosystem, .columns { padding-top: 58px; padding-bottom: 58px; }
  .process { width: 100%; border-radius: 0; padding: 46px 18px; }
  .about-hero,
  .about-section {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .about-jump {
    top: 76px;
    justify-content: flex-start;
    padding: 12px 18px;
    gap: 22px;
  }
  .about-jump a {
    flex: 0 0 auto;
    padding: 0;
  }
  .about-page { padding-top: 76px; }
  .about-subgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .energy-home-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .energy-home-gallery article { min-height: 160px; }
  .education-hero-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .education-detail-grid { grid-template-columns: 1fr; }
  .education-overview-section {
    width: 100%;
    padding: 46px 18px 54px;
  }
  .education-overview-head h2 {
    white-space: normal;
  }
  .education-overview-grid,
  .education-pathway-strip {
    grid-template-columns: 1fr;
  }
  .program-meta { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: 1fr; }
  .number-roadmap { grid-template-columns: 1fr; }
  .unit-grid article.unit-energy-card { grid-column: 1 / -1; }
  .ecosystem .unit-grid { grid-template-columns: 1fr; }
  .ecosystem .unit-grid article.unit-energy-card { grid-column: auto; }
  .unit-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-panel { grid-template-columns: 1fr; }
  .unit-hero,
  .unit-section {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .year-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .top-bar { display: none; }
  .brand-mantra-section {
    min-height: auto;
    padding: 58px 18px;
  }
  .brand-mantra-head h2 {
    width: 100%;
    font-size: clamp(14px, 4.4vw, 17px);
    line-height: 1.2;
    letter-spacing: 0 !important;
    text-align: center;
    white-space: nowrap;
  }
  .brand-mantra-grid article {
    position: sticky;
    top: 86px;
    display: flex;
    min-height: min(70svh, 390px);
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(42, 8, 92, .14);
    transform: none;
  }
  .brand-mantra-grid article:nth-child(1) {
    background:
      linear-gradient(180deg, rgba(4, 8, 31, 0) 28%, rgba(4, 8, 31, .64) 100%),
      url("assets/philosophy-imagine-v2.png") center / cover no-repeat;
  }
  .brand-mantra-grid article:nth-child(2) {
    background:
      linear-gradient(180deg, rgba(4, 8, 31, 0) 28%, rgba(4, 8, 31, .64) 100%),
      url("assets/philosophy-create-v2.png") center / cover no-repeat;
  }
  .brand-mantra-grid article:nth-child(3) {
    background:
      linear-gradient(180deg, rgba(4, 8, 31, 0) 28%, rgba(4, 8, 31, .64) 100%),
      url("assets/philosophy-empower-v2.png") center / cover no-repeat;
  }
  .brand-mantra-grid article span,
  .brand-mantra-grid article h3,
  .brand-mantra-grid article p {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .48);
  }
  .brand-mantra-grid {
    display: block;
  }
  .brand-mantra-grid article + article {
    margin-top: 32px;
  }
  .brand-mantra-grid article:nth-child(1) {
    z-index: 1;
  }
  .brand-mantra-grid article:nth-child(2) {
    z-index: 2;
  }
  .brand-mantra-grid article:nth-child(3) {
    z-index: 3;
  }
  .brand-mantra-grid article:hover {
    transform: none;
  }
  body { padding-top: 70px; }
  html { scroll-padding-top: 78px; }
  .site-header,
  .site-header.is-scrolled { min-height: 70px; }
  .brand-image,
  .site-header.is-scrolled .brand-image { width: 230px; max-height: 62px; }
  .primary-nav { top: 70px; max-height: calc(100vh - 86px); }
  .footer-brand .brand-image { width: 260px; max-height: 72px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 7px; }
  .brand-mark { width: 54px; height: 27px; }
  h1 { letter-spacing: -1px; }
  .hero-content { padding: 52px 18px; }
  .hero.is-image-only { min-height: 0; height: auto; }
  .hero.is-image-only .hero-slideshow {
    width: min(100%, 430px);
  }
  .hero.is-image-only .hero-static-cta {
    left: 48px;
    top: 62%;
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
  }
  .glance-grid, .purpose-grid, .unit-grid, .cards, .lower-grid, .check-list { grid-template-columns: 1fr; }
  .business-showcase { padding: 32px 0 48px; }
  .business-showcase-frame { width: 100%; }
  .network-image-hero { width: 100%; margin-top: 18px; }
  .network-jump,
  .network-visual-section { width: calc(100% - 36px); }
  .network-jump { justify-content: flex-start; gap: 12px 18px; }
  .network-feature-grid { grid-template-columns: 1fr; }
  .network-visual-section { padding: 46px 0; }
  .network-visual-card { min-height: 260px; }
  .tech-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .tech-cloud span { padding: 8px; }
  .tech-cloud img { width: 26px; height: 26px; }
  .timeline li { grid-template-columns: 1fr; gap: 2px; }
  footer { flex-direction: column; align-items: flex-start; }
  .mega-footer-inner {
    width: calc(100% - 36px);
    padding: 30px 0 18px;
  }
  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }
  .footer-connect {
    width: 100%;
    padding-left: 0;
  }
  .social-row {
    justify-content: space-between;
    width: 80%;
    gap: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .social-row .social-logo,
  .social-row .social-logo.instagram,
  .social-row .social-logo.youtube,
  .social-row .social-logo.mail {
    width: 26px;
    height: 26px;
  }
  .mobile-social-placeholder {
    display: inline-flex;
  }
  .footer-subscribe {
    grid-template-columns: 1fr 42px;
    width: 80%;
    height: 43px;
    min-height: 43px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-subscribe input,
  .footer-subscribe button {
    min-height: 0;
    height: 41px;
  }
  .footer-subscribe input {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }
  .footer-subscribe button {
    font-size: 22px;
  }
  .footer-emblem { align-self: flex-start; }
  .footer-emblem img { width: 230px; }
  .footer-bottom {
    width: calc(100% - 36px);
    flex-direction: column;
  }
  .footer-bottom span:last-child {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .footer-bottom span:first-child {
    order: 2;
  }
  .about-hero { padding-top: 52px; }
  .about-jump {
    top: 70px;
    padding: 10px 18px;
  }
  .about-page { padding-top: 70px; }
  .about-subgrid { grid-template-columns: 1fr; }
  .about-subgrid.narrative-grid { grid-template-columns: 1fr; }
  .about-subgrid article { min-height: auto; }
  .energy-page { padding-top: 0; }
  .energy-page .unit-section { scroll-margin-top: 136px; }
  .energy-home-hero { padding: 54px 18px 34px; }
  .energy-home-copy { transform: none; }
  .energy-home-hero .unit-jump {
    top: 70px;
    padding: 10px 18px;
    gap: 10px 18px;
  }
  .energy-home-gallery { grid-template-columns: 1fr; }
  .energy-home-gallery article { min-height: 190px; }
  .education-home-hero { padding: 108px 18px 34px; }
  .education-main-nav {
    top: 70px;
    gap: 20px;
    padding: 10px 18px;
  }
  .education-home-copy h1 {
    margin-top: 24px;
    font-size: clamp(20px, 6.4vw, 28px);
    font-weight: 500;
    white-space: normal;
  }
  .education-logo-type { font-size: clamp(25px, 8.4vw, 34px); }
  .education-home-copy p { font-size: 14px; line-height: 1.62; font-weight: 400; }
  .education-visual-card,
  .education-course-mosaic {
    height: 260px;
    min-height: 230px;
  }
  .home-video-slide { min-height: calc(100svh - 70px); }
  .home-video-hero {
    height: calc(100svh - 70px);
    min-height: 520px;
  }
  .home-video-copy p { font-size: 14px; line-height: 1.55; }
  .home-unit-brand { font-size: clamp(18px, 5.6vw, 24px); }
  .unit-label {
    min-height: 34px;
    padding: 0 13px;
    font-size: 14px;
  }
  .home-video-media {
    width: 100%;
    max-height: none;
  }
  .education-hero-gallery { grid-template-columns: 1fr; }
  .education-hero-gallery article:first-child { grid-column: auto; }
  .education-hero-gallery.vertical-links { grid-template-columns: 1fr; }
  .education-vertical-card.feature { grid-column: auto; }
  .education-main-nav a { flex: 0 0 auto; }
  .education-course-hero,
  .course-block {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .course-faq { grid-template-columns: 1fr; }
  .unit-grid article.unit-energy-card { grid-column: auto; }
  .ecosystem .unit-grid article,
  .ecosystem .unit-grid article.unit-energy-card { min-height: 360px; }
  .unit-card-grid { grid-template-columns: 1fr; }
  .unit-card-grid article,
  .unit-card-grid.compact article { min-height: auto; }
  .unit-hero { padding-top: 52px; }
  .year-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .energy-corporate-hero,
  .energy-hero-inner {
    min-height: auto;
  }

  .energy-corporate-hero {
    overflow: hidden;
  }
  .energy-corporate-hero::before,
  .energy-corporate-hero::after,
  .energy-hero-visual::before {
    display: none;
  }

  .energy-hero-inner {
    width: min(100% - 32px, 620px);
    grid-template-columns: 1fr;
    gap: clamp(22px, 6vw, 34px);
    padding: clamp(34px, 8vw, 54px) 0 0;
  }

  .energy-hero-copy {
    align-items: center;
    max-width: none;
    padding: 0;
    text-align: center;
  }

  .energy-logo-lockup {
    margin-bottom: clamp(18px, 6vw, 28px);
  }

  .energy-hero-copy h1 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.18;
    letter-spacing: -.025em;
  }

  .energy-title-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .energy-hero-copy p {
    max-width: 100%;
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.68;
  }

  .energy-hero-cta {
    width: 100%;
    margin-top: clamp(24px, 7vw, 34px);
  }

  .energy-hero-visual {
    justify-content: center;
    align-self: center;
    padding-top: 0;
  }

  .energy-hero-visual img {
    width: 100%;
    max-width: 680px;
    transform: none;
    object-position: center bottom;
  }
}

@media (max-width: 1439px) {
  .education-program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .education-programs {
    width: min(100% - 48px, 980px);
    padding: 64px 0 70px;
  }

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

@media (max-width: 767px) {
  .education-programs {
    width: 100%;
    padding: 54px 18px 58px;
  }

  .education-programs-head {
    margin-bottom: 22px;
  }

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

  .education-program-grid article {
    min-height: auto;
    padding: 22px;
  }
}

/* Technext Education pro landing */
.education-pro-body {
  padding-top: 0;
  background: #f5f7fb;
  color: #07142d;
  font-family: "Inter", Arial, sans-serif;
}

.edu-alert-bar {
  position: sticky;
  top: 0;
  z-index: 120;
  background: #04132f;
  color: #ffffff;
}

.edu-alert-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 34px;
  width: min(100% - 84px, 1800px);
  margin: 0 auto;
  font-size: 13px;
  font-weight: 700;
}

.edu-alert-inner b { color: #ff9b32; }

.edu-alert-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.edu-alert-actions a,
.edu-alert-actions a:visited {
  color: #ffffff;
  text-decoration: none;
}

.edu-header {
  position: sticky;
  top: 34px;
  z-index: 110;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  min-height: 82px;
  padding: 0 clamp(18px, 2vw, 34px) 0 clamp(34px, 4vw, 74px);
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #e5e9f2;
  box-shadow: 0 8px 26px rgba(15, 23, 42, .07);
  backdrop-filter: blur(14px);
}

.edu-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: #07142d;
}

.edu-brand img {
  width: clamp(230px, 17vw, 320px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.edu-brand span { display: grid; line-height: 1; }

.edu-brand strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(24px, 1.8vw, 33px);
  letter-spacing: 1.6px;
  color: #07142d;
}

.edu-brand b {
  color: #07142d;
  font-size: 14px;
  letter-spacing: 6px;
  font-weight: 800;
}

.edu-brand small {
  margin-top: 4px;
  color: #1b2b4d;
  font-size: 10px;
  font-weight: 700;
}

.edu-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 1.8vw, 32px);
  min-width: 0;
}

.edu-nav a,
.edu-nav a:visited {
  color: #07142d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.edu-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.edu-search,
.edu-search:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #dce3ee;
  border-radius: 6px;
  color: #07142d;
  text-decoration: none;
  font-size: 31px;
  background: #ffffff;
}

.edu-apply,
.edu-apply:visited,
.edu-btn,
.edu-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.edu-apply,
.edu-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff8d24, #ff5f1d);
  box-shadow: 0 12px 28px rgba(255, 112, 31, .28);
}

.education-pro-page { background: #f5f7fb; }

.edu-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, .92fr) minmax(430px, 1fr) minmax(255px, 310px);
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
  min-height: 420px;
  padding: clamp(28px, 3.2vw, 48px) clamp(36px, 4.5vw, 76px) 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 17, 43, .98) 0%, rgba(5, 21, 53, .96) 38%, rgba(10, 18, 54, .90) 100%),
    url("assets/hero-education-ai-4k.jpg") center / cover no-repeat;
  color: #ffffff;
}

.edu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 163, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 163, 255, .13) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 54% 42%, black, transparent 65%);
  pointer-events: none;
}

.edu-hero-copy,
.edu-hero-stage,
.edu-top-programs {
  position: relative;
  z-index: 1;
}

.edu-kicker,
.edu-section-head span,
.edu-dark-card span,
.edu-journey-card > span,
.edu-project-card > span,
.edu-scholarship span,
.edu-tools > span {
  display: inline-flex;
  width: fit-content;
  color: #f59e36;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.edu-hero-brandline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .6px;
  text-transform: uppercase;
  text-shadow: 0 12px 30px rgba(0,0,0,.36);
}

.edu-hero-brandline b {
  color: #2f7df6;
  font: inherit;
}

.edu-kicker {
  padding: 8px 14px;
  color: #ffffff;
  text-transform: none;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
}

.edu-hero h1 {
  margin: 18px 0 12px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(46px, 4.8vw, 80px);
  line-height: .98;
  letter-spacing: 0;
  color: #ffffff;
}

.edu-hero h1 em {
  color: #ff8d24;
  font-style: normal;
}

.edu-hero-copy p {
  max-width: 570px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.92);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.45;
}

.edu-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin-bottom: 22px;
}

.edu-proof-row span {
  position: relative;
  min-height: 42px;
  padding-left: 28px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.edu-proof-row span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #ff9b32;
  border-radius: 50%;
  color: #ff9b32;
  font-size: 12px;
}

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

.edu-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.64);
  background: rgba(255,255,255,.04);
}

.edu-hero-stage {
  min-height: 310px;
  align-self: stretch;
}

.edu-hero-art {
  position: absolute;
  right: -2%;
  bottom: -32px;
  width: min(700px, 105%);
  height: 112%;
  object-fit: cover;
  object-position: 55% 35%;
  opacity: .96;
  filter: saturate(1.08) contrast(1.02);
  mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 82%, transparent 100%);
}

.edu-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 118px;
  min-height: 72px;
  padding: 12px 18px;
  color: #ffffff;
  font-weight: 900;
  border: 1px solid rgba(121, 161, 255, .42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 27, 70, .84), rgba(16, 48, 112, .38)),
    radial-gradient(circle at 72% 22%, rgba(255, 141, 36, .22), transparent 42%);
  box-shadow: 0 18px 48px rgba(0,0,0,.30), inset 0 0 24px rgba(84, 143, 255, .18);
}

.edu-card-power { left: 2%; top: 18%; width: 180px; }
.edu-card-python { left: 38%; top: 14%; }
.edu-card-ai { right: 5%; top: 8%; width: 150px; }
.edu-card-sql { left: 45%; top: 46%; min-width: 92px; }

.edu-top-programs {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}

.edu-top-programs h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 19px;
}

.edu-top-programs a,
.edu-top-programs a:visited {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 37px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.edu-top-programs a::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid #3fd4ff;
  border-radius: 5px;
  background: rgba(255, 141, 36, .16);
  flex: 0 0 auto;
}

.edu-top-programs .edu-view-all {
  margin-top: 12px;
  color: #58d8ff;
}

.edu-stats-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr)) minmax(390px, 1.8fr);
  gap: 0;
  align-items: stretch;
  padding: 18px clamp(36px, 4.5vw, 76px);
  color: #ffffff;
  background: #082653;
}

.edu-stats-strip > div {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 0 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}

.edu-stats-strip strong {
  color: #ffb34a;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
}

.edu-stats-strip span {
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 800;
}

.edu-stats-strip .edu-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  border-right: 0;
}

.edu-trust span {
  width: 100%;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  text-align: left;
}

.edu-trust b {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
}

.edu-section {
  width: min(100% - 72px, 1780px);
  margin: 0 auto;
  padding: 34px 0 0;
}

.edu-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.edu-section-head h2 {
  margin: 4px 0 0;
  color: #091733;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.15;
}

.edu-section-head h2 em {
  color: #174ec8;
  font-style: normal;
}

.edu-section-head a,
.edu-section-head a:visited {
  color: #0f54ce;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

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

.edu-program-grid article {
  overflow: hidden;
  min-height: 242px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15,23,42,.10);
}

.edu-program-grid img {
  display: block;
  width: 100%;
  height: 84px;
  object-fit: cover;
  background: #07142d;
}

.edu-program-grid h3 {
  margin: 16px 18px 8px;
  color: #0b1a3d;
  font-size: 18px;
  line-height: 1.16;
}

.edu-program-grid p {
  margin: 0 18px 16px;
  min-height: 51px;
  color: #26344f;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.edu-program-grid a,
.edu-program-grid a:visited {
  display: inline-flex;
  margin: 0 18px 18px;
  color: #0f54ce;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.edu-feature-bands {
  display: grid;
  grid-template-columns: 1.05fr 1.08fr 1.15fr 1.15fr;
  gap: 14px;
  width: min(100% - 42px, 1840px);
  margin: 18px auto 0;
}

.edu-feature-bands article {
  min-height: 190px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.edu-dark-card {
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(4, 17, 43, .96), rgba(4, 17, 43, .72)),
    url("assets/education.jpg") right center / auto 100% no-repeat;
}

.edu-dark-card h2,
.edu-journey-card h2,
.edu-project-card h2,
.edu-scholarship h2 {
  margin: 6px 0 14px;
  color: inherit;
  font-size: 20px;
}

.edu-dark-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.edu-dark-card li {
  color: rgba(255,255,255,.94);
  font-size: 13px;
  font-weight: 800;
}

.edu-dark-card li::before {
  content: "✓";
  margin-right: 8px;
  color: #ff9b32;
}

.edu-dark-card a,
.edu-dark-card a:visited {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.edu-journey-card {
  padding: 24px;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
}

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

.edu-journey-grid div { display: grid; gap: 6px; }

.edu-journey-grid b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: #07142d;
  font-size: 12px;
}

.edu-journey-grid strong {
  color: #07142d;
  font-size: 12px;
  line-height: 1.18;
}

.edu-journey-grid p {
  margin: 0;
  color: #3c4b64;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 650;
}

.edu-project-card {
  padding: 24px;
  background: #eef6ff;
}

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

.edu-project-grid div {
  overflow: hidden;
  border-radius: 7px;
  background: #ffffff;
  border: 1px solid #dce3ee;
}

.edu-project-grid img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  display: block;
}

.edu-project-grid b,
.edu-project-grid small {
  display: block;
  padding: 0 8px;
}

.edu-project-grid b {
  margin-top: 8px;
  color: #07142d;
  font-size: 11px;
}

.edu-project-grid small {
  margin: 2px 0 8px;
  color: #465a7a;
  font-size: 10px;
  font-weight: 700;
}

.edu-scholarship {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 76%, rgba(255, 159, 54, .38), transparent 30%),
    linear-gradient(135deg, #1b123d, #062252 58%, #07142d);
}

.edu-scholarship p {
  max-width: 260px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.9);
  font-weight: 750;
}

.edu-scholarship a,
.edu-scholarship a:visited {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  background: linear-gradient(135deg, #ff8d24, #ff5f1d);
}

.edu-scholarship strong {
  position: absolute;
  right: 28px;
  bottom: 14px;
  color: #ffb34a;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 76px;
  line-height: .8;
  text-shadow: 0 8px 20px rgba(0,0,0,.24);
}

.edu-tools {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 18px;
  width: min(100% - 42px, 1840px);
  margin: 14px auto 38px;
  padding: 16px 24px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15,23,42,.07);
}

.edu-tools div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.edu-tools b {
  color: #142447;
  font-size: 13px;
}

@media (max-width: 1320px) {
  .edu-header { grid-template-columns: auto 1fr auto; }
  .edu-header-actions { grid-column: auto; justify-self: end; }
  .edu-nav {
    order: initial;
    grid-column: auto;
    justify-content: flex-end;
    gap: clamp(14px, 1.4vw, 24px);
    overflow-x: visible;
    padding-bottom: 0;
  }
  .edu-nav a,
  .edu-nav a:visited { font-size: 13px; }
  .edu-hero { grid-template-columns: 1fr; }
  .edu-hero-stage { min-height: 250px; }
  .edu-top-programs { max-width: 560px; }
  .edu-stats-strip,
  .edu-program-grid,
  .edu-feature-bands { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .edu-stats-strip .edu-trust { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .edu-alert-inner {
    width: min(100% - 28px, 100%);
    overflow-x: auto;
    white-space: nowrap;
  }
  .edu-alert-actions { display: none; }
  .edu-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 18px;
  }
  .edu-brand img { width: 46px; height: 46px; }
  .edu-brand strong { font-size: 22px; }
  .edu-brand b { font-size: 11px; letter-spacing: 4px; }
  .edu-nav {
    grid-column: auto;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
  }
  .edu-header-actions {
    grid-column: auto;
    justify-self: stretch;
  }
  .edu-search { display: none; }
  .edu-apply { width: 100%; }
  .edu-hero { padding: 28px 20px; }
  .edu-hero h1 { font-size: clamp(42px, 15vw, 58px); }
  .edu-proof-row,
  .edu-stats-strip,
  .edu-program-grid,
  .edu-feature-bands,
  .edu-journey-grid,
  .edu-project-grid,
  .edu-tools { grid-template-columns: 1fr; }
  .edu-section,
  .edu-feature-bands,
  .edu-tools { width: min(100% - 28px, 100%); }
  .edu-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .edu-hero-stage { display: none; }
  .edu-stats-strip { padding: 14px 20px; }
}

/* Education home alignment refinements */
.education-pro-body .edu-alert-bar {
  display: block;
}

.education-pro-body .edu-header {
  min-height: 84px;
}

.education-pro-body .edu-brand img {
  width: clamp(230px, 17vw, 320px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.education-pro-body .edu-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  grid-template-columns: minmax(430px, 680px) 1fr;
  min-height: calc(100svh - 82px);
  padding-top: clamp(42px, 5.2vh, 78px);
  padding-bottom: clamp(42px, 5.2vh, 78px);
  isolation: isolate;
  background: #06142f;
}

.education-pro-body .edu-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.education-pro-body .edu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 12, 31, .98) 0%, rgba(3, 15, 41, .82) 31%, rgba(4, 16, 44, .08) 58%, rgba(3, 14, 35, .14) 100%),
    linear-gradient(180deg, rgba(4, 13, 33, .04), rgba(4, 13, 33, .10));
  pointer-events: none;
}

.education-pro-body .edu-hero::before {
  z-index: -1;
  opacity: .42;
}

.education-pro-body .edu-hero-copy {
  max-width: 610px;
}

.education-pro-body .edu-hero h1 {
  margin-top: 14px;
  max-width: 620px;
  font-size: clamp(30px, 2.75vw, 48px);
  line-height: 1.08;
  text-shadow: 0 16px 42px rgba(0,0,0,.35);
  font-weight: 700;
}

.education-pro-body .edu-hero-brandline {
  font-weight: 700;
}

.education-pro-body .edu-kicker {
  font-weight: 650;
}

.education-pro-body .edu-hero-copy p {
  font-weight: 400;
}

.education-pro-body .edu-proof-row span {
  font-weight: 600;
}

.education-pro-body .edu-btn,
.education-pro-body .edu-btn:visited,
.education-pro-body .edu-apply,
.education-pro-body .edu-apply:visited {
  font-weight: 700;
}

.education-pro-body .edu-hero h1,
.education-pro-body .edu-hero-copy p,
.education-pro-body .edu-proof-row span {
  color: #ffffff;
}

.education-pro-body .edu-hero h1 em {
  color: #ff8d24;
}

.education-pro-body .edu-hero-copy p {
  max-width: 565px;
  font-size: clamp(18px, 1.18vw, 22px);
}

.education-pro-body .edu-proof-row {
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 14px;
}

.education-pro-body .edu-hero-stage {
  min-height: 520px;
}

.education-pro-body .edu-hero-art {
  display: none;
}

.education-pro-body .edu-floating-card {
  min-height: 68px;
  border-color: rgba(111, 166, 255, .62);
  background:
    linear-gradient(135deg, rgba(10, 30, 74, .72), rgba(9, 23, 58, .44)),
    radial-gradient(circle at 75% 22%, rgba(255, 141, 36, .24), transparent 44%);
  backdrop-filter: blur(10px);
}

.education-pro-body .edu-card-power {
  left: 6%;
  top: 18%;
  width: 180px;
}

.education-pro-body .edu-card-python {
  left: 42%;
  top: 12%;
  width: 130px;
}

.education-pro-body .edu-card-ai {
  right: 7%;
  top: 20%;
  width: 118px;
}

.education-pro-body .edu-card-sql {
  left: 50%;
  top: 58%;
  width: 94px;
}

.education-pro-body .edu-top-programs {
  align-self: center;
  min-height: 342px;
  padding: 22px 22px 18px;
  background: linear-gradient(145deg, rgba(20, 35, 75, .72), rgba(12, 23, 52, .48));
}

.education-pro-body .edu-top-programs h2 {
  font-size: 18px;
}

.education-pro-body .edu-top-programs a,
.education-pro-body .edu-top-programs a:visited {
  color: #ffffff;
  font-size: 13px;
}

.education-pro-body .edu-top-programs .edu-view-all,
.education-pro-body .edu-top-programs .edu-view-all:visited {
  color: #57d7ff;
  font-size: 14px;
}

.education-pro-body .edu-stats-strip {
  grid-template-columns: repeat(6, minmax(112px, 1fr)) minmax(440px, 1.9fr);
  padding-top: 16px;
  padding-bottom: 16px;
}

.education-pro-body .edu-program-grid {
  gap: 28px;
}

.education-pro-body .edu-section {
  padding-top: 46px;
  padding-bottom: 8px;
}

.education-pro-body .edu-feature-bands {
  margin-top: 28px;
  grid-template-columns: 1.05fr 1.08fr 1.15fr 1.15fr;
  align-items: stretch;
}

.education-pro-body .edu-feature-bands article {
  min-height: 228px;
}

.education-pro-body .edu-tools {
  margin-top: 18px;
  margin-bottom: 0;
}

.edu-counselling-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 42px, 1840px);
  margin: 14px auto 44px;
  padding: 22px 28px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  box-shadow: 0 18px 42px rgba(15,23,42,.07);
}

.edu-counselling-band h2 {
  margin: 0 0 4px;
  color: #07142d;
  font-size: 16px;
  font-weight: 650;
}

.edu-counselling-band p {
  margin: 0;
  color: #465a7a;
  font-size: 13px;
  font-weight: 400;
}

.edu-counselling-band a,
.edu-counselling-band a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 6px;
  color: #ffffff;
  background: #174ec8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}

.edu-depth-section {
  width: min(100% - 42px, 1840px);
  margin: 0 auto 18px;
  padding: 34px 42px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,246,255,.94)),
    url("assets/edu-pro-data-science.png") right center / 44% 100% no-repeat;
  box-shadow: 0 18px 42px rgba(15,23,42,.07);
}

.edu-depth-head {
  max-width: 1120px;
  margin-bottom: 26px;
}

.edu-depth-head span,
.edu-mode-section span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #f59e36;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.edu-depth-head h2 {
  margin: 0 0 10px;
  color: #07142d;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.15;
  white-space: nowrap;
  font-weight: 650;
}

.edu-depth-head p {
  margin: 0;
  color: #465a7a;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
}

.edu-depth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
}

.edu-depth-grid article {
  min-height: 128px;
  padding: 18px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 32px rgba(15,23,42,.08);
}

.edu-depth-grid h3,
.edu-mode-section h2 {
  margin: 0 0 10px;
  color: #07142d;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 600;
}

.edu-depth-grid p,
.edu-mode-section p {
  margin: 0;
  color: #465a7a;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 450;
}

.edu-mode-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100% - 42px, 1840px);
  margin: 0 auto 46px;
}

.edu-mode-section article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 28px;
  border-radius: 8px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, #031027, #071f4c);
  box-shadow: 0 20px 48px rgba(15,23,42,.16);
}

.edu-mode-section article::before {
  display: none;
  content: none;
}

.edu-mode-section article > * {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.edu-mode-section article:nth-child(2) {
  background: linear-gradient(135deg, #031027, #071f4c);
}

.edu-mode-section article:nth-child(3) {
  background: linear-gradient(135deg, #031027, #071f4c);
}

.edu-mode-section h2,
.edu-mode-section p {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0,0,0,.52);
}

@media (max-width: 1100px) {
  .edu-depth-grid,
  .edu-mode-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .edu-counselling-band,
  .edu-depth-grid,
  .edu-mode-section {
    grid-template-columns: 1fr;
  }

  .edu-depth-section {
    padding: 30px 22px;
    background: #ffffff;
  }

  .education-pro-body .edu-tools {
    grid-template-columns: 1fr;
  }

  .education-pro-body .edu-tools div {
    justify-content: flex-start;
    gap: 18px;
  }
}

/* Education section typography tightening */
.education-pro-body .edu-section-head {
  align-items: end;
  max-width: none;
}

.education-pro-body .edu-section-head > div {
  display: grid;
  gap: 4px;
}

.education-pro-body .edu-section-head h2 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
  font-weight: 650;
}

.education-pro-body .edu-section-head span,
.education-pro-body .edu-section-head a {
  font-size: 11px;
  font-weight: 650;
}

.education-pro-body .edu-program-grid {
  gap: 22px;
}

.education-pro-body .edu-program-grid article {
  min-height: 228px;
}

.education-pro-body .edu-program-grid img {
  height: 82px;
}

.education-pro-body .edu-program-grid h3 {
  margin: 14px 18px 8px;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 650;
}

.education-pro-body .edu-program-grid p {
  min-height: 46px;
  font-size: 12px;
  line-height: 1.42;
  font-weight: 500;
}

.education-pro-body .edu-program-grid a,
.education-pro-body .edu-program-grid a:visited {
  font-size: 11px;
  font-weight: 650;
}

.education-pro-body .edu-feature-bands article {
  min-height: 210px;
}

.education-pro-body .edu-dark-card h2,
.education-pro-body .edu-journey-card h2,
.education-pro-body .edu-project-card h2,
.education-pro-body .edu-scholarship h2 {
  font-size: 17px;
  line-height: 1.22;
  font-weight: 650;
}

.education-pro-body .edu-dark-card li {
  font-size: 12px;
  font-weight: 500;
}

.education-pro-body .edu-journey-grid strong {
  font-size: 11px;
  font-weight: 650;
}

.education-pro-body .edu-journey-grid p {
  font-size: 10px;
}

.education-pro-body .edu-project-grid b {
  font-size: 10px;
  font-weight: 650;
}

.education-pro-body .edu-project-grid small {
  font-size: 9px;
  font-weight: 500;
}

.education-pro-body .edu-scholarship p {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.education-pro-body .edu-scholarship strong {
  font-size: 58px;
}

/* Tools strip match */
.education-pro-body .edu-tools {
  grid-template-columns: 170px 1fr;
  min-height: 68px;
  margin-top: 14px;
  padding: 10px 22px;
  background: #ffffff;
}

.education-pro-body .edu-tools > span {
  color: #12244a;
  font-size: 10px;
  letter-spacing: .35px;
  font-weight: 650;
}

.education-pro-body .edu-tools div {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  overflow-x: auto;
}

.education-pro-body .edu-tools b {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 82px;
  color: #07142d;
  font-size: 9px;
  line-height: 1.05;
  text-align: center;
  font-weight: 500;
}

/* Scholarship card reference match */
.education-pro-body .edu-scholarship {
  min-height: 210px;
  padding: 20px 22px;
  background:
    linear-gradient(90deg, rgba(7, 20, 55, .96) 0%, rgba(7, 20, 55, .88) 45%, rgba(7, 20, 55, .22) 100%),
    url("assets/edu-pro-scholarship-reference.png") center / cover no-repeat;
}

.education-pro-body .edu-scholarship span {
  color: #ff9b32;
  font-size: 10px;
  font-weight: 650;
}

.education-pro-body .edu-scholarship h2 {
  max-width: 280px;
  margin: 7px 0 12px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 600;
}

.education-pro-body .edu-scholarship p {
  max-width: 220px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

.education-pro-body .edu-scholarship a,
.education-pro-body .edu-scholarship a:visited {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 650;
}

.education-pro-body .edu-scholarship strong {
  display: none;
}

.education-pro-body .edu-tools b:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 12px;
  color: #64748b;
  font-size: 14px;
}

.education-pro-body .edu-tools b::before {
  display: none;
  content: none;
}

.education-pro-body .edu-tools b img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.education-pro-body .edu-tools b[data-tool="excel"]::before { content: "X"; background: #168746; }
.education-pro-body .edu-tools b[data-tool="sql"]::before { content: "DB"; background: #113b76; font-size: 8px; }
.education-pro-body .edu-tools b[data-tool="python"]::before { content: "Py"; background: #f7c948; color: #14335f; font-size: 9px; }
.education-pro-body .edu-tools b[data-tool="powerbi"]::before { content: "▮"; background: #f59e0b; }
.education-pro-body .edu-tools b[data-tool="tableau"]::before { content: "✣"; background: #ffffff; color: #27a7df; border: 1px solid #dce3ee; }
.education-pro-body .edu-tools b[data-tool="analytics"]::before { content: "G"; background: #f59e0b; }
.education-pro-body .edu-tools b[data-tool="ads"]::before { content: "A"; background: #2f80ed; }
.education-pro-body .edu-tools b[data-tool="meta"]::before { content: "∞"; background: #ffffff; color: #1887ff; border: 1px solid #dce3ee; font-size: 16px; }
.education-pro-body .edu-tools b[data-tool="aws"]::before { content: "aws"; background: #ffffff; color: #111827; border: 1px solid #dce3ee; font-size: 8px; }
.education-pro-body .edu-tools b[data-tool="azure"]::before { content: "A"; background: #ffffff; color: #0078d4; border: 1px solid #dce3ee; }
.education-pro-body .edu-tools b[data-tool="chatgpt"]::before { content: "◎"; background: #18a058; font-size: 14px; }

/* Learning Journey card match */
.education-pro-body .edu-journey-card {
  padding: 18px 22px;
  background: linear-gradient(135deg, #fff3e2, #fffaf4);
}

.education-pro-body .edu-journey-card > span {
  margin-bottom: 4px;
  color: #ef7d00;
  font-size: 10px;
  letter-spacing: .35px;
}

.education-pro-body .edu-journey-card h2 {
  margin: 0 0 14px;
  color: #07142d;
  font-size: 18px;
  line-height: 1.1;
}

.education-pro-body .edu-journey-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.education-pro-body .edu-journey-grid div {
  position: relative;
  justify-items: center;
  text-align: center;
}

.education-pro-body .edu-journey-grid div:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 8px;
  right: -14px;
  color: #07142d;
  font-size: 17px;
  font-weight: 800;
}

.education-pro-body .edu-journey-grid b {
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  color: #ffffff;
  background: #07142d;
  font-size: 10px;
}

.education-pro-body .edu-journey-grid strong {
  max-width: 82px;
  color: #07142d;
  font-size: 11px;
  line-height: 1.1;
}

.education-pro-body .edu-journey-grid p {
  max-width: 86px;
  color: #07142d;
  font-size: 9px;
  line-height: 1.28;
  font-weight: 600;
}

.education-pro-body .edu-program-grid article {
  min-height: 248px;
}

.education-pro-body .edu-program-grid img {
  height: 88px;
  object-position: center;
}

.education-pro-body .edu-dark-card {
  background:
    linear-gradient(90deg, rgba(4, 17, 43, .98) 0%, rgba(4, 17, 43, .86) 52%, rgba(4, 17, 43, .10) 100%),
    url("assets/edu-pro-why-learn-reference.png") center / cover no-repeat;
}

.education-pro-body .edu-scholarship {
  background:
    linear-gradient(90deg, rgba(7, 20, 55, .94), rgba(7, 20, 55, .55)),
    url("assets/edu-pro-scholarship.png") center / cover no-repeat;
}

@media (max-width: 1500px) {
  .education-pro-body .edu-header {
    grid-template-columns: 330px 1fr auto;
    gap: 18px;
  }

  .education-pro-body .edu-nav {
    gap: 22px;
  }

  .education-pro-body .edu-hero {
    grid-template-columns: minmax(390px, 620px) 1fr;
  }
}

@media (max-width: 1320px) {
  .education-pro-body .edu-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .education-pro-body .edu-hero-stage {
    display: none;
  }
}

/* Data Analyst with AI syllabus page */
.data-analyst-page {
  background: #f5f7fb;
  color: #07142d;
}

.da-page {
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 76% 22%, rgba(47, 125, 246, .14), transparent 34%),
    radial-gradient(circle at 12% 30%, rgba(37, 99, 235, .08), transparent 30%),
    linear-gradient(180deg, #e8f1ff 0%, #dceaff 44%, #e8f1ff 100%);
}

.da-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
  width: min(100% - 72px, 1440px);
  margin: 0 auto 22px;
  padding: clamp(58px, 7vw, 104px) clamp(58px, 5vw, 86px) clamp(46px, 6vw, 82px);
  border: 1px solid #dbe4f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(8, 23, 54, .05);
}

.da-kicker,
.da-section-head p,
.da-hero-card span {
  margin: 0 0 10px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.da-kicker {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  color: #061536;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .4px;
  text-shadow: none;
}

.da-kicker b {
  color: #2f7df6;
  font: inherit;
}

.da-hero h1,
.da-section-head h2,
.da-final-cta h2 {
  margin: 0;
  color: #061536;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.da-hero h1 {
  max-width: 860px;
  font-size: clamp(20px, 1.85vw, 30px);
  line-height: 1.18;
  text-transform: none;
  text-shadow: none !important;
  filter: none !important;
  white-space: nowrap;
}

.da-hero > div > p:not(.da-kicker) {
  max-width: 700px;
  margin: 20px 0 0;
  color: #17345f;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.55;
}

.da-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.da-btn,
.da-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.da-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2f7df6, #174fc8);
  box-shadow: 0 14px 28px rgba(47, 125, 246, .22);
}

.da-btn-secondary {
  color: #061536;
  border: 1px solid #cbd7ea;
  background: #ffffff;
}

.da-hero-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid #d7e0ef;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 21, 54, .95), rgba(9, 38, 86, .92)),
    url("assets/edu-pro-data-analyst.png") center / cover no-repeat;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(8, 23, 54, .16);
}

.da-hero-card h2 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(20px, 1.55vw, 28px);
  font-weight: 500;
}

.da-hero-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.da-hero-card li {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.da-hero-card b,
.da-hero-card small {
  display: block;
}

.da-hero-card b {
  font-size: 15px;
  font-weight: 600;
}

.da-hero-card small {
  margin-top: 4px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.da-section {
  width: min(100% - 72px, 1440px);
  margin: 0 auto 22px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid #dbe4f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(8, 23, 54, .05);
}

.da-section-head {
  max-width: 900px;
  margin-bottom: 26px;
}

.da-section-head h2 {
  font-size: clamp(21px, 1.75vw, 31px);
  line-height: 1.22;
}

.da-two-col,
.da-roadmap,
.da-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.da-roadmap {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.da-two-col article,
.da-roadmap article,
.da-faq-grid article {
  padding: 22px;
  border: 1px solid #dce5f2;
  border-radius: 8px;
  background: #fbfdff;
}

.da-two-col h3,
.da-roadmap h3,
.da-faq-grid h3,
.da-module-grid h3 {
  margin: 0 0 10px;
  color: #061536;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.da-two-col p,
.da-roadmap p,
.da-faq-grid p,
.da-module-grid p {
  margin: 0;
  color: #17345f;
  font-size: 14px;
  line-height: 1.6;
}

.da-two-col ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #17345f;
  font-size: 14px;
  line-height: 1.5;
}

.da-highlight-grid,
.da-stack,
.da-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.da-highlight-grid span,
.da-stack span,
.da-project-grid span {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #dce5f2;
  border-radius: 8px;
  background: #fbfdff;
  color: #10284d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

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

.da-module-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid #dce5f2;
  border-radius: 8px;
  background: #fbfdff;
}

.da-module-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #061536;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.da-module-grid b,
.da-roadmap b {
  display: block;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
}

.da-stack {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.da-final-cta {
  width: min(100% - 72px, 1440px);
  margin: 0 auto 44px;
  padding: clamp(34px, 4vw, 58px);
  border-radius: 8px;
  background: linear-gradient(135deg, #061536, #0d2a63);
  color: #ffffff;
  text-align: center;
}

.da-final-cta p {
  margin: 0 0 8px;
  color: #8bbcff;
  font-weight: 700;
  text-transform: uppercase;
}

.da-final-cta h2 {
  max-width: 920px;
  margin: 0 auto 24px;
  color: #ffffff;
  font-size: clamp(21px, 1.75vw, 30px);
}

@media (max-width: 1080px) {
  .da-hero,
  .da-two-col,
  .da-roadmap,
  .da-faq-grid {
    grid-template-columns: 1fr;
  }

  .da-module-grid,
  .da-highlight-grid,
  .da-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .da-hero,
  .da-section,
  .da-final-cta {
    width: min(100% - 32px, 1440px);
  }

  .da-section {
    padding: 24px;
  }

  .da-module-grid,
  .da-highlight-grid,
  .da-stack,
  .da-project-grid,
  .da-hero-card ul {
    grid-template-columns: 1fr;
  }
}



/* Premium dark animated course detail format - 20260723 */
.data-analyst-page {
  --course-bg: #0c0613;
  --course-panel: #17111f;
  --course-panel-2: #201a28;
  --course-line: rgba(255,255,255,.14);
  --course-text: rgba(255,255,255,.92);
  --course-muted: rgba(255,255,255,.64);
  --course-accent: #a855f7;
  --course-accent-2: #f59e0b;
  --course-blue: #4ab7ff;
  background: var(--course-bg) !important;
  color: var(--course-text);
}

.data-analyst-page .site-header {
  background: rgba(10, 5, 18, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.data-analyst-page .primary-nav > a,
.data-analyst-page .nav-group > button {
  color: rgba(255,255,255,.86);
}

.data-analyst-page .brand-image {
  filter: brightness(0) invert(1);
  width: clamp(86px, 8vw, 130px);
  max-height: 42px;
}

.data-analyst-page .da-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(168,85,247,.20), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(245,158,11,.12), transparent 30%),
    linear-gradient(180deg, #090412 0%, #120b19 42%, #08040d 100%) !important;
}

.data-analyst-page .da-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: courseGridDrift 18s linear infinite;
}

.data-analyst-page .da-hero,
.data-analyst-page .da-section,
.data-analyst-page .da-final-cta {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1280px);
  border: 1px solid var(--course-line);
  border-radius: 0;
  background: rgba(22, 16, 29, .86) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 28px 80px rgba(0,0,0,.30);
  backdrop-filter: blur(18px);
}

.data-analyst-page .da-hero {
  min-height: calc(100vh - 116px);
  margin: 28px auto 26px;
  padding: clamp(36px, 5vw, 64px) clamp(26px, 4vw, 58px);
  grid-template-columns: 1fr;
  align-content: center;
  isolation: isolate;
}

.data-analyst-page .da-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 24%, rgba(168,85,247,.18), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(245,158,11,.14), transparent 28%);
  animation: courseGlow 7s ease-in-out infinite alternate;
}

.data-analyst-page .da-hero > div:first-child {
  max-width: 1120px;
  animation: courseFadeUp .8s ease both;
}

.data-analyst-page .da-kicker,
.data-analyst-page .da-section-head p,
.data-analyst-page .da-hero-card span,
.data-analyst-page .da-final-cta p {
  width: max-content;
  margin-bottom: 18px;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--course-accent-2) !important;
  background: rgba(245,158,11,.13);
  font-size: clamp(12px, 1.05vw, 17px);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.data-analyst-page .da-kicker b { color: inherit; }

.data-analyst-page .da-hero h1 {
  max-width: 1150px;
  color: #ffffff;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: .98;
  font-weight: 850;
  white-space: normal;
  letter-spacing: -1px;
}

.data-analyst-page .da-hero h1::first-letter { color: #ffffff; }

.data-analyst-page .da-hero > div > p:not(.da-kicker) {
  max-width: 1040px;
  margin-top: 24px;
  color: var(--course-muted);
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.48;
  font-weight: 600;
}

.data-analyst-page .da-actions {
  margin-top: 38px;
  gap: 18px;
}

.data-analyst-page .da-btn,
.data-analyst-page .da-btn:visited {
  min-height: 70px;
  min-width: 220px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 850;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.data-analyst-page .da-btn-primary,
.data-analyst-page .da-btn-secondary {
  background: linear-gradient(135deg, #8b3dff 0%, #b85cff 45%, #f59e0b 100%) !important;
  box-shadow: 0 18px 42px rgba(168,85,247,.28);
}

.data-analyst-page .da-btn-secondary {
  min-width: 260px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08) !important;
}

.data-analyst-page .da-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
  box-shadow: 0 24px 54px rgba(168,85,247,.36);
}

.data-analyst-page .da-hero-card {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.035) !important;
  box-shadow: none;
  animation: courseFadeUp 1s ease .1s both;
}

.data-analyst-page .da-hero-card h2 {
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 800;
}

.data-analyst-page .da-hero-card ul,
.data-analyst-page .da-highlight-grid,
.data-analyst-page .da-stack,
.data-analyst-page .da-project-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.data-analyst-page .da-hero-card li,
.data-analyst-page .da-highlight-grid span,
.data-analyst-page .da-stack span,
.data-analyst-page .da-project-grid span {
  min-height: 104px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.72);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 750;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.data-analyst-page .da-hero-card li:hover,
.data-analyst-page .da-highlight-grid span:hover,
.data-analyst-page .da-stack span:hover,
.data-analyst-page .da-project-grid span:hover {
  transform: translateY(-8px);
  border-color: var(--course-accent);
  background: rgba(168,85,247,.12);
  color: #ffffff;
}

.data-analyst-page .da-hero-card b {
  color: #ffffff;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 850;
}

.data-analyst-page .da-hero-card small {
  color: var(--course-muted);
  font-size: 14px;
}

.data-analyst-page .da-section {
  margin-bottom: 28px;
  padding: clamp(38px, 5vw, 80px);
  animation: courseFadeUp .75s ease both;
}

.data-analyst-page .da-section-head {
  max-width: 1100px;
  margin-bottom: 36px;
}

.data-analyst-page .da-section-head h2,
.data-analyst-page .da-final-cta h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 68px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -1px;
}

.data-analyst-page .da-two-col,
.data-analyst-page .da-roadmap,
.data-analyst-page .da-faq-grid {
  gap: 28px;
}

.data-analyst-page .da-two-col article,
.data-analyst-page .da-roadmap article,
.data-analyst-page .da-faq-grid article,
.data-analyst-page .da-module-grid article {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.045) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.data-analyst-page .da-two-col article:hover,
.data-analyst-page .da-roadmap article:hover,
.data-analyst-page .da-faq-grid article:hover,
.data-analyst-page .da-module-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(245,158,11,.55);
  background: rgba(255,255,255,.065) !important;
}

.data-analyst-page .da-two-col h3,
.data-analyst-page .da-roadmap h3,
.data-analyst-page .da-faq-grid h3,
.data-analyst-page .da-module-grid h3 {
  color: #ffffff;
  font-size: clamp(20px, 1.6vw, 30px);
  font-weight: 850;
}

.data-analyst-page .da-two-col p,
.data-analyst-page .da-roadmap p,
.data-analyst-page .da-faq-grid p,
.data-analyst-page .da-module-grid p,
.data-analyst-page .da-two-col ul {
  color: var(--course-muted);
  font-size: clamp(16px, 1.18vw, 21px);
  line-height: 1.55;
  font-weight: 600;
}

.data-analyst-page .da-roadmap article b,
.data-analyst-page .da-module-grid b {
  color: var(--course-accent-2);
  font-size: 15px;
  letter-spacing: .04em;
}

.data-analyst-page .da-module-grid {
  gap: 20px;
}

.data-analyst-page .da-module-grid span {
  background: linear-gradient(135deg, var(--course-accent), var(--course-accent-2));
  color: #ffffff;
  width: 46px;
  height: 46px;
  font-size: 14px;
}

.data-analyst-page .da-faq-grid {
  grid-template-columns: 1fr;
}

.data-analyst-page .da-faq-grid article {
  min-height: 86px;
  padding: 28px 36px;
}

.data-analyst-page .da-faq-grid article h3 {
  position: relative;
  margin: 0;
  padding-right: 40px;
}

.data-analyst-page .da-faq-grid article h3::after {
  content: "?";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--course-accent-2);
  font-size: 32px;
  line-height: 1;
}

.data-analyst-page .da-faq-grid article p {
  margin-top: 18px;
}

.data-analyst-page .da-final-cta {
  text-align: left;
  padding: clamp(48px, 6vw, 90px);
}

.data-analyst-page .da-final-cta h2 {
  max-width: 980px;
  margin: 0 0 34px;
}

@keyframes courseFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes courseGlow {
  from { opacity: .55; transform: translate3d(0,0,0) scale(1); }
  to { opacity: 1; transform: translate3d(-16px,10px,0) scale(1.04); }
}

@keyframes courseGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 46px 46px, 46px 46px; }
}

@media (max-width: 1100px) {
  .data-analyst-page .da-hero-card ul,
  .data-analyst-page .da-highlight-grid,
  .data-analyst-page .da-stack,
  .data-analyst-page .da-project-grid,
  .data-analyst-page .da-module-grid,
  .data-analyst-page .da-roadmap,
  .data-analyst-page .da-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .data-analyst-page .da-hero,
  .data-analyst-page .da-section,
  .data-analyst-page .da-final-cta {
    width: min(100% - 24px, 1280px);
    padding: 28px 20px;
  }
  .data-analyst-page .da-hero h1,
  .data-analyst-page .da-section-head h2,
  .data-analyst-page .da-final-cta h2 {
    font-size: 38px;
  }
  .data-analyst-page .da-hero-card ul,
  .data-analyst-page .da-highlight-grid,
  .data-analyst-page .da-stack,
  .data-analyst-page .da-project-grid,
  .data-analyst-page .da-module-grid,
  .data-analyst-page .da-roadmap,
  .data-analyst-page .da-two-col {
    grid-template-columns: 1fr;
  }
  .data-analyst-page .da-btn,
  .data-analyst-page .da-btn:visited {
    width: 100%;
    min-width: 0;
  }
}

/* Compact course typography - match education home scale */
.data-analyst-page .da-hero {
  min-height: auto;
  padding-top: clamp(36px, 4vw, 58px);
  padding-bottom: clamp(36px, 4vw, 58px);
}

.data-analyst-page .da-kicker,
.data-analyst-page .da-section-head p,
.data-analyst-page .da-hero-card span,
.data-analyst-page .da-final-cta p {
  padding: 8px 16px;
  font-size: clamp(10px, .76vw, 13px);
  letter-spacing: .16em;
}

.data-analyst-page .da-hero h1 {
  max-width: 860px;
  font-size: clamp(28px, 3.05vw, 48px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.data-analyst-page .da-hero > div > p:not(.da-kicker) {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(15px, 1.12vw, 19px);
  line-height: 1.52;
  font-weight: 540;
}

.data-analyst-page .da-actions {
  margin-top: 28px;
}

.data-analyst-page .da-btn,
.data-analyst-page .da-btn:visited {
  min-height: 48px;
  min-width: 150px;
  padding: 0 24px;
  font-size: clamp(14px, .95vw, 17px);
  font-weight: 760;
}

.data-analyst-page .da-btn-secondary {
  min-width: 210px;
}

.data-analyst-page .da-hero-card {
  margin-top: 28px;
  padding: 22px;
  border-radius: 18px;
}

.data-analyst-page .da-hero-card h2 {
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 700;
}

.data-analyst-page .da-hero-card li,
.data-analyst-page .da-highlight-grid span,
.data-analyst-page .da-stack span,
.data-analyst-page .da-project-grid span {
  min-height: 76px;
  border-radius: 14px;
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 620;
}

.data-analyst-page .da-hero-card b {
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 720;
}

.data-analyst-page .da-hero-card small {
  font-size: 12px;
}

.data-analyst-page .da-section {
  padding: clamp(30px, 3.7vw, 54px);
}

.data-analyst-page .da-section-head {
  margin-bottom: 26px;
}

.data-analyst-page .da-section-head h2,
.data-analyst-page .da-final-cta h2 {
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1.14;
  font-weight: 720;
  letter-spacing: 0;
}

.data-analyst-page .da-two-col,
.data-analyst-page .da-roadmap,
.data-analyst-page .da-faq-grid {
  gap: 18px;
}

.data-analyst-page .da-two-col article,
.data-analyst-page .da-roadmap article,
.data-analyst-page .da-faq-grid article,
.data-analyst-page .da-module-grid article {
  border-radius: 18px;
}

.data-analyst-page .da-two-col h3,
.data-analyst-page .da-roadmap h3,
.data-analyst-page .da-faq-grid h3,
.data-analyst-page .da-module-grid h3 {
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 720;
}

.data-analyst-page .da-two-col p,
.data-analyst-page .da-roadmap p,
.data-analyst-page .da-faq-grid p,
.data-analyst-page .da-module-grid p,
.data-analyst-page .da-two-col ul {
  font-size: clamp(13px, .92vw, 16px);
  line-height: 1.55;
  font-weight: 500;
}

.data-analyst-page .da-roadmap article b,
.data-analyst-page .da-module-grid b {
  font-size: 12px;
}

.data-analyst-page .da-module-grid span {
  width: 34px;
  height: 34px;
  font-size: 11px;
}

.data-analyst-page .da-faq-grid article {
  min-height: 68px;
  padding: 20px 26px;
}

/* Extra compact course typography requested */
.data-analyst-page .da-hero {
  width: min(100% - 64px, 1280px);
  padding: clamp(28px, 3.2vw, 44px) clamp(28px, 4vw, 54px);
}

.data-analyst-page .da-kicker,
.data-analyst-page .da-section-head p,
.data-analyst-page .da-hero-card span,
.data-analyst-page .da-final-cta p {
  padding: 7px 14px;
  font-size: clamp(9px, .62vw, 11px);
  letter-spacing: .16em;
}

.data-analyst-page .da-hero h1 {
  max-width: 760px;
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.12;
  font-weight: 700;
}

.data-analyst-page .da-hero > div > p:not(.da-kicker) {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(13px, .88vw, 15px);
  line-height: 1.5;
  font-weight: 500;
}

.data-analyst-page .da-actions {
  margin-top: 22px;
  gap: 12px;
}

.data-analyst-page .da-btn,
.data-analyst-page .da-btn:visited {
  min-height: 38px;
  min-width: 124px;
  padding: 0 18px;
  font-size: clamp(12px, .78vw, 14px);
  font-weight: 700;
}

.data-analyst-page .da-btn-secondary {
  min-width: 176px;
}

.data-analyst-page .da-hero-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
}

.data-analyst-page .da-hero-card h2 {
  font-size: clamp(17px, 1.35vw, 23px);
  font-weight: 650;
}

.data-analyst-page .da-hero-card ul,
.data-analyst-page .da-highlight-grid,
.data-analyst-page .da-stack,
.data-analyst-page .da-project-grid {
  gap: 12px;
}

.data-analyst-page .da-hero-card li,
.data-analyst-page .da-highlight-grid span,
.data-analyst-page .da-stack span,
.data-analyst-page .da-project-grid span {
  min-height: 58px;
  border-radius: 10px;
  font-size: clamp(10px, .68vw, 12px);
  font-weight: 560;
}

.data-analyst-page .da-hero-card b {
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 650;
}

.data-analyst-page .da-hero-card small {
  font-size: 10px;
}

.data-analyst-page .da-section {
  padding: clamp(24px, 3vw, 42px);
}

.data-analyst-page .da-section-head h2,
.data-analyst-page .da-final-cta h2 {
  font-size: clamp(20px, 1.75vw, 30px);
  line-height: 1.18;
  font-weight: 660;
}

.data-analyst-page .da-two-col h3,
.data-analyst-page .da-roadmap h3,
.data-analyst-page .da-faq-grid h3,
.data-analyst-page .da-module-grid h3 {
  font-size: clamp(14px, .92vw, 17px);
  font-weight: 650;
}

.data-analyst-page .da-two-col p,
.data-analyst-page .da-roadmap p,
.data-analyst-page .da-faq-grid p,
.data-analyst-page .da-module-grid p,
.data-analyst-page .da-two-col ul {
  font-size: clamp(11px, .78vw, 14px);
  line-height: 1.5;
  font-weight: 450;
}

.data-analyst-page .da-roadmap article b,
.data-analyst-page .da-module-grid b {
  font-size: 10px;
}

/* Ultra compact course typography */
.data-analyst-page .da-hero h1 {
  max-width: 660px;
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.16;
  font-weight: 650;
}

.data-analyst-page .da-hero > div > p:not(.da-kicker) {
  max-width: 680px;
  font-size: clamp(11px, .72vw, 13px);
  line-height: 1.48;
}

.data-analyst-page .da-kicker,
.data-analyst-page .da-section-head p,
.data-analyst-page .da-hero-card span,
.data-analyst-page .da-final-cta p {
  padding: 6px 12px;
  font-size: clamp(8px, .52vw, 10px);
}

.data-analyst-page .da-btn,
.data-analyst-page .da-btn:visited {
  min-height: 32px;
  min-width: 110px;
  padding: 0 15px;
  font-size: clamp(11px, .64vw, 12px);
}

.data-analyst-page .da-btn-secondary {
  min-width: 150px;
}

.data-analyst-page .da-hero-card h2 {
  font-size: clamp(15px, 1.05vw, 19px);
}

.data-analyst-page .da-hero-card li,
.data-analyst-page .da-highlight-grid span,
.data-analyst-page .da-stack span,
.data-analyst-page .da-project-grid span {
  min-height: 48px;
  font-size: clamp(9px, .58vw, 11px);
}

.data-analyst-page .da-hero-card b {
  font-size: clamp(11px, .7vw, 13px);
}

.data-analyst-page .da-hero-card small {
  font-size: 9px;
}

.data-analyst-page .da-section-head h2,
.data-analyst-page .da-final-cta h2 {
  font-size: clamp(18px, 1.38vw, 24px);
}

.data-analyst-page .da-two-col h3,
.data-analyst-page .da-roadmap h3,
.data-analyst-page .da-faq-grid h3,
.data-analyst-page .da-module-grid h3 {
  font-size: clamp(12px, .78vw, 15px);
}

.data-analyst-page .da-two-col p,
.data-analyst-page .da-roadmap p,
.data-analyst-page .da-faq-grid p,
.data-analyst-page .da-module-grid p,
.data-analyst-page .da-two-col ul {
  font-size: clamp(10px, .64vw, 12px);
}

/* Extra small course page typography */
.data-analyst-page .da-hero h1 {
  max-width: 600px;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.14;
  font-weight: 620;
}

.data-analyst-page .da-hero > div > p:not(.da-kicker) {
  max-width: 640px;
  font-size: clamp(10px, .58vw, 12px);
  line-height: 1.42;
  font-weight: 500;
}

.data-analyst-page .da-kicker,
.data-analyst-page .da-section-head p,
.data-analyst-page .da-hero-card span,
.data-analyst-page .da-final-cta p {
  padding: 5px 11px;
  font-size: clamp(7px, .45vw, 9px);
  letter-spacing: .14em;
}

.data-analyst-page .da-btn,
.data-analyst-page .da-btn:visited {
  min-height: 30px;
  min-width: 100px;
  padding: 0 13px;
  font-size: clamp(10px, .55vw, 11px);
  font-weight: 600;
}

.data-analyst-page .da-btn-secondary {
  min-width: 138px;
}

.data-analyst-page .da-hero-card h2 {
  font-size: clamp(14px, .9vw, 17px);
  font-weight: 620;
}

.data-analyst-page .da-hero-card li,
.data-analyst-page .da-highlight-grid span,
.data-analyst-page .da-stack span,
.data-analyst-page .da-project-grid span {
  min-height: 42px;
  font-size: clamp(8px, .5vw, 10px);
}

.data-analyst-page .da-hero-card b {
  font-size: clamp(10px, .58vw, 12px);
  font-weight: 620;
}

.data-analyst-page .da-hero-card small {
  font-size: 8px;
}

.data-analyst-page .da-section-head h2,
.data-analyst-page .da-final-cta h2 {
  font-size: clamp(16px, 1.08vw, 21px);
  font-weight: 620;
}

.data-analyst-page .da-two-col h3,
.data-analyst-page .da-roadmap h3,
.data-analyst-page .da-faq-grid h3,
.data-analyst-page .da-module-grid h3 {
  font-size: clamp(11px, .64vw, 13px);
  font-weight: 620;
}

.data-analyst-page .da-two-col p,
.data-analyst-page .da-roadmap p,
.data-analyst-page .da-faq-grid p,
.data-analyst-page .da-module-grid p,
.data-analyst-page .da-two-col ul {
  font-size: clamp(9px, .54vw, 11px);
  line-height: 1.42;
  font-weight: 500;
}

/* Balanced readable course typography */
.data-analyst-page .da-hero h1 {
  max-width: 720px;
  font-size: clamp(26px, 2.25vw, 42px);
  line-height: 1.1;
  font-weight: 700;
}

.data-analyst-page .da-hero > div > p:not(.da-kicker) {
  max-width: 820px;
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1.5;
  font-weight: 500;
}

.data-analyst-page .da-kicker,
.data-analyst-page .da-section-head p,
.data-analyst-page .da-hero-card span,
.data-analyst-page .da-final-cta p {
  padding: 7px 16px;
  font-size: clamp(10px, .68vw, 13px);
  letter-spacing: .16em;
}

.data-analyst-page .da-btn,
.data-analyst-page .da-btn:visited {
  min-height: 42px;
  min-width: 140px;
  padding: 0 22px;
  font-size: clamp(14px, .9vw, 17px);
  font-weight: 700;
}

.data-analyst-page .da-btn-secondary {
  min-width: 210px;
}

.data-analyst-page .da-hero-card h2 {
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 700;
}

.data-analyst-page .da-hero-card li,
.data-analyst-page .da-highlight-grid span,
.data-analyst-page .da-stack span,
.data-analyst-page .da-project-grid span {
  min-height: 62px;
  font-size: clamp(12px, .8vw, 15px);
}

.data-analyst-page .da-hero-card b {
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 700;
}

.data-analyst-page .da-hero-card small {
  font-size: 12px;
}

.data-analyst-page .da-section-head h2,
.data-analyst-page .da-final-cta h2 {
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 700;
}

.data-analyst-page .da-two-col h3,
.data-analyst-page .da-roadmap h3,
.data-analyst-page .da-faq-grid h3,
.data-analyst-page .da-module-grid h3 {
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 700;
}

.data-analyst-page .da-two-col p,
.data-analyst-page .da-roadmap p,
.data-analyst-page .da-faq-grid p,
.data-analyst-page .da-module-grid p,
.data-analyst-page .da-two-col ul {
  font-size: clamp(13px, .85vw, 16px);
  line-height: 1.55;
  font-weight: 500;
}

/* Keep course hero titles on one readable line */
.data-analyst-page .da-hero h1 {
  max-width: none;
  width: min(100%, 1120px);
  white-space: nowrap;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.08;
}

.data-analyst-page .da-hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, .85fr);
}

@media (max-width: 980px) {
  .data-analyst-page .da-hero h1 {
    white-space: normal;
  }

  .data-analyst-page .da-hero {
    grid-template-columns: 1fr;
  }
}

/* Place curriculum summary neatly below the hero intro */
.data-analyst-page .da-hero {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 42px;
}

.data-analyst-page .da-hero > div:first-child {
  max-width: 1120px;
}

.data-analyst-page .da-hero-card {
  width: 100%;
  max-width: none;
  padding: 28px 32px;
}

.data-analyst-page .da-hero-card ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 16px;
}

.data-analyst-page .da-hero-card li {
  min-height: 92px;
  padding: 16px 14px;
  text-align: center;
}

.data-analyst-page .da-hero-card b {
  display: block;
}

.data-analyst-page .da-hero-card small {
  display: block;
  margin-top: 6px;
}

@media (max-width: 1180px) {
  .data-analyst-page .da-hero-card ul {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 640px) {
  .data-analyst-page .da-hero-card {
    padding: 22px;
  }

  .data-analyst-page .da-hero-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Course navbar aligned with TECHNEXT Education home */
.data-analyst-page .site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  min-height: 82px;
  padding: 0 clamp(18px, 2vw, 34px) 0 clamp(34px, 4vw, 74px);
  background: rgba(255,255,255,.98) !important;
  border-bottom: 1px solid #e5e9f2 !important;
  box-shadow: 0 8px 26px rgba(15, 23, 42, .07) !important;
  backdrop-filter: blur(14px);
}

.data-analyst-page .brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.data-analyst-page .brand-image {
  width: clamp(230px, 17vw, 320px) !important;
  height: auto;
  max-height: 72px !important;
  object-fit: contain;
  filter: none !important;
}

.data-analyst-page .menu-toggle {
  display: none;
}

.data-analyst-page .primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 1.8vw, 32px);
  min-width: 0;
}

.data-analyst-page .primary-nav > a,
.data-analyst-page .primary-nav > a:visited,
.data-analyst-page .nav-group > button {
  color: #07142d !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.data-analyst-page .primary-nav .nav-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff8a18 0%, #ff4e22 100%);
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(255, 111, 35, .18);
}

@media (max-width: 980px) {
  .data-analyst-page .site-header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px 20px;
  }

  .data-analyst-page .primary-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Fixed education-style top strip for course pages */
.data-analyst-page .edu-alert-bar {
  position: sticky;
  top: 0;
  z-index: 140;
  background: #04132f;
  color: #ffffff;
}

.data-analyst-page .edu-alert-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 34px;
  width: min(100% - 84px, 1800px);
  margin: 0 auto;
  font-size: 13px;
  font-weight: 700;
}

.data-analyst-page .edu-alert-inner b {
  color: #ff9b32;
}

.data-analyst-page .edu-alert-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.data-analyst-page .edu-alert-actions a,
.data-analyst-page .edu-alert-actions a:visited {
  color: #ffffff;
  text-decoration: none;
}

.data-analyst-page .site-header {
  top: 34px;
}

@media (max-width: 760px) {
  .data-analyst-page .edu-alert-inner {
    width: calc(100% - 28px);
    gap: 10px;
    font-size: 11px;
    flex-wrap: wrap;
    padding: 6px 0;
  }

  .data-analyst-page .site-header {
    top: 46px;
  }
}

/* Hard fixed course top navigation */
body.data-analyst-page {
  padding-top: 116px !important;
}

.data-analyst-page .edu-alert-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000;
}

.data-analyst-page .site-header {
  position: fixed !important;
  top: 34px !important;
  left: 0;
  right: 0;
  z-index: 999;
}

.data-analyst-page .da-page {
  padding-top: 0;
}

@media (max-width: 760px) {
  body.data-analyst-page {
    padding-top: 138px !important;
  }

  .data-analyst-page .site-header {
    top: 46px !important;
  }
}

/* Hard fixed education home top navigation */
body.education-pro-body {
  padding-top: 116px !important;
}

.education-pro-body .edu-alert-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000;
}

.education-pro-body .edu-header {
  position: fixed !important;
  top: 34px !important;
  left: 0;
  right: 0;
  z-index: 999;
}

.education-pro-body .education-pro-page {
  padding-top: 0;
}

@media (max-width: 760px) {
  body.education-pro-body {
    padding-top: 138px !important;
  }

  .education-pro-body .edu-header {
    top: 46px !important;
  }
}

/* Final lock for Technext Education home header */
html:has(body.education-pro-body) {
  scroll-padding-top: 116px;
}

body.education-pro-body {
  padding-top: 116px !important;
}

body.education-pro-body > .edu-alert-bar {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  height: 34px;
  z-index: 5000 !important;
  transform: translateZ(0);
}

body.education-pro-body > .edu-header {
  position: fixed !important;
  inset: 34px 0 auto 0 !important;
  min-height: 82px;
  height: 82px;
  z-index: 4999 !important;
  transform: translateZ(0);
}

body.education-pro-body > .education-pro-page {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  html:has(body.education-pro-body) {
    scroll-padding-top: 138px;
  }

  body.education-pro-body {
    padding-top: 138px !important;
  }

  body.education-pro-body > .edu-alert-bar {
    min-height: 46px;
    height: auto;
  }

  body.education-pro-body > .edu-header {
    inset: 46px 0 auto 0 !important;
    height: auto;
  }
}

/* Final typography polish: keep existing sizes, soften heavy text and improve spacing */
body,
button,
input,
textarea,
select {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  word-spacing: .035em;
}

h1,
h2,
h3,
h4,
.edu-hero-copy h1,
.edu-section-title,
.da-hero h1,
.da-section-head h2,
.da-final-cta h2 {
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

h5,
h6,
p,
li,
span,
a,
small,
b,
strong,
.edu-nav a,
.primary-nav > a,
.edu-alert-inner,
.da-hero-card b,
.da-hero-card small,
.da-module-grid b,
.da-roadmap article b,
.da-two-col p,
.da-roadmap p,
.da-faq-grid p,
.da-module-grid p {
  letter-spacing: 0 !important;
}

b,
strong,
.edu-nav a,
.primary-nav > a,
.edu-apply,
.nav-contact-link,
.da-btn,
.edu-alert-inner,
.edu-program-card h3,
.da-hero-card b,
.da-two-col h3,
.da-roadmap h3,
.da-faq-grid h3,
.da-module-grid h3 {
  font-weight: 600 !important;
}

p,
li,
small,
.edu-program-card p,
.da-two-col p,
.da-roadmap p,
.da-faq-grid p,
.da-module-grid p,
.da-hero > div > p:not(.da-kicker) {
  font-weight: 400 !important;
  line-height: 1.58;
}

.edu-alert-inner,
.edu-nav,
.primary-nav,
.da-actions,
.edu-header-actions {
  word-spacing: .02em;
}

.edu-kicker,
.edu-hero-brandline,
.da-kicker,
.da-section-head p,
.da-hero-card span,
.da-final-cta p {
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  word-spacing: .08em;
}

/* Final phone and tablet alignment pass */
@media (max-width: 1024px) {
  body.education-pro-body,
  body.data-analyst-page {
    overflow-x: hidden;
  }

  .education-pro-body .edu-header,
  .data-analyst-page .site-header {
    grid-template-columns: 1fr !important;
    justify-items: center;
    gap: 10px;
    padding-left: 18px !important;
    padding-right: 18px !important;
    height: auto !important;
    min-height: 94px;
  }

  .education-pro-body .edu-brand,
  .data-analyst-page .brand {
    justify-self: center;
  }

  .education-pro-body .edu-nav,
  .data-analyst-page .primary-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    overflow: visible;
  }

  .education-pro-body .edu-header-actions,
  .data-analyst-page .primary-nav .nav-contact-link {
    justify-self: center;
  }

  .edu-hero,
  .edu-metrics,
  .edu-program-grid,
  .edu-feature-bands,
  .edu-tools,
  .da-hero,
  .da-two-col,
  .da-roadmap,
  .da-faq-grid,
  .da-module-grid {
    grid-template-columns: 1fr !important;
  }

  .edu-program-card,
  .da-section,
  .da-hero-card,
  .da-final-cta {
    width: 100%;
  }
}

@media (max-width: 760px) {
  body.education-pro-body,
  body.data-analyst-page {
    padding-top: 156px !important;
  }

  body.education-pro-body > .edu-alert-bar,
  .data-analyst-page .edu-alert-bar {
    min-height: 44px;
  }

  body.education-pro-body > .edu-header,
  .data-analyst-page .site-header {
    top: 44px !important;
    inset: 44px 0 auto 0 !important;
  }

  .edu-alert-inner,
  .data-analyst-page .edu-alert-inner {
    width: calc(100% - 24px) !important;
    justify-content: center;
    text-align: center;
    gap: 8px 12px;
  }

  .edu-alert-actions {
    width: 100%;
    justify-content: center;
    margin-left: 0 !important;
  }

  .edu-brand img,
  .data-analyst-page .brand-image {
    width: min(76vw, 250px) !important;
    max-height: 58px !important;
  }

  .edu-nav a,
  .primary-nav > a {
    white-space: normal;
    text-align: center;
  }

  .edu-apply,
  .nav-contact-link {
    min-height: 36px !important;
    padding: 0 16px !important;
  }

  .da-hero-card ul {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }
}

@media (max-width: 440px) {
  body.education-pro-body,
  body.data-analyst-page {
    padding-top: 184px !important;
  }

  .edu-nav,
  .primary-nav {
    gap: 8px 12px !important;
  }

  .da-actions,
  .edu-header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Final responsive alignment lock for all devices */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

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

img,
video,
svg,
canvas {
  max-width: 100%;
}

.education-pro-body .edu-alert-inner,
.education-pro-body .edu-header,
.education-pro-body .edu-hero,
.education-pro-body .edu-metrics,
.education-pro-body .edu-programs,
.education-pro-body .edu-feature-bands,
.education-pro-body .edu-tools,
.education-pro-body .edu-counselling,
.data-analyst-page .site-header,
.data-analyst-page .da-hero,
.data-analyst-page .da-section,
.data-analyst-page .da-final-cta {
  max-width: 100%;
}

.education-pro-body .education-pro-page,
.data-analyst-page .da-page {
  width: 100%;
  overflow-x: hidden !important;
}

.education-pro-body .edu-hero,
.education-pro-body .edu-metrics,
.education-pro-body .edu-programs,
.education-pro-body .edu-feature-bands,
.education-pro-body .edu-tools,
.education-pro-body .edu-counselling,
.data-analyst-page .da-hero,
.data-analyst-page .da-section,
.data-analyst-page .da-final-cta {
  width: min(100% - 32px, 1760px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.education-pro-body .edu-header,
.data-analyst-page .site-header {
  width: 100% !important;
  max-width: 100% !important;
}

.education-pro-body .edu-nav,
.data-analyst-page .primary-nav,
.education-pro-body .edu-header-actions,
.data-analyst-page .da-actions {
  min-width: 0;
}

.education-pro-body .edu-program-grid,
.education-pro-body .edu-feature-bands,
.education-pro-body .edu-tools-row,
.data-analyst-page .da-hero-card ul,
.data-analyst-page .da-two-col,
.data-analyst-page .da-roadmap,
.data-analyst-page .da-faq-grid,
.data-analyst-page .da-module-grid,
.data-analyst-page .da-highlight-grid,
.data-analyst-page .da-stack,
.data-analyst-page .da-project-grid {
  min-width: 0;
}

.education-pro-body .edu-program-card,
.education-pro-body .edu-feature-bands > *,
.education-pro-body .edu-tools-row > *,
.data-analyst-page .da-hero-card,
.data-analyst-page .da-hero-card li,
.data-analyst-page .da-two-col > *,
.data-analyst-page .da-roadmap > *,
.data-analyst-page .da-faq-grid > *,
.data-analyst-page .da-module-grid > *,
.data-analyst-page .da-highlight-grid > *,
.data-analyst-page .da-stack > *,
.data-analyst-page .da-project-grid > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1320px) {
  .education-pro-body .edu-header,
  .data-analyst-page .site-header {
    grid-template-columns: auto 1fr auto !important;
    gap: 18px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .education-pro-body .edu-brand img,
  .data-analyst-page .brand-image {
    width: min(260px, 24vw) !important;
  }

  .education-pro-body .edu-nav,
  .data-analyst-page .primary-nav {
    justify-content: flex-end !important;
    gap: 18px !important;
  }

  .education-pro-body .edu-program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1024px) {
  body.education-pro-body,
  body.data-analyst-page {
    padding-top: 166px !important;
  }

  body.education-pro-body > .edu-header,
  .data-analyst-page .site-header {
    inset: 34px 0 auto 0 !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: center !important;
    height: auto !important;
    min-height: 132px !important;
    padding: 12px 18px !important;
  }

  .education-pro-body .edu-brand,
  .data-analyst-page .brand {
    justify-self: center !important;
  }

  .education-pro-body .edu-brand img,
  .data-analyst-page .brand-image {
    width: min(280px, 58vw) !important;
    max-height: 62px !important;
  }

  .education-pro-body .edu-nav,
  .data-analyst-page .primary-nav {
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px 18px !important;
    overflow: visible !important;
    text-align: center;
  }

  .education-pro-body .edu-header-actions,
  .data-analyst-page .primary-nav .nav-contact-link {
    justify-self: center !important;
  }

  .education-pro-body .edu-hero,
  .education-pro-body .edu-program-grid,
  .education-pro-body .edu-feature-bands,
  .data-analyst-page .da-hero,
  .data-analyst-page .da-two-col,
  .data-analyst-page .da-roadmap,
  .data-analyst-page .da-faq-grid,
  .data-analyst-page .da-module-grid {
    grid-template-columns: 1fr !important;
  }

  .data-analyst-page .da-hero h1 {
    white-space: normal !important;
  }
}

@media (max-width: 760px) {
  body.education-pro-body,
  body.data-analyst-page {
    padding-top: 196px !important;
  }

  body.education-pro-body > .edu-alert-bar,
  .data-analyst-page .edu-alert-bar {
    min-height: 48px !important;
    height: auto !important;
  }

  body.education-pro-body > .edu-header,
  .data-analyst-page .site-header {
    inset: 48px 0 auto 0 !important;
    min-height: 148px !important;
  }

  .education-pro-body .edu-alert-inner,
  .data-analyst-page .edu-alert-inner {
    width: calc(100% - 20px) !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 6px 10px !important;
  }

  .education-pro-body .edu-alert-actions,
  .data-analyst-page .edu-alert-actions {
    width: 100% !important;
    margin-left: 0 !important;
    justify-content: center !important;
  }

  .education-pro-body .edu-hero,
  .education-pro-body .edu-metrics,
  .education-pro-body .edu-programs,
  .education-pro-body .edu-feature-bands,
  .education-pro-body .edu-tools,
  .education-pro-body .edu-counselling,
  .data-analyst-page .da-hero,
  .data-analyst-page .da-section,
  .data-analyst-page .da-final-cta {
    width: min(100% - 24px, 1760px) !important;
  }

  .data-analyst-page .da-hero-card ul,
  .data-analyst-page .da-highlight-grid,
  .data-analyst-page .da-stack,
  .data-analyst-page .da-project-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  body.education-pro-body,
  body.data-analyst-page {
    padding-top: 220px !important;
  }

  body.education-pro-body > .edu-header,
  .data-analyst-page .site-header {
    min-height: 168px !important;
  }

  .education-pro-body .edu-nav,
  .data-analyst-page .primary-nav {
    gap: 8px 12px !important;
  }

  .data-analyst-page .da-hero-card ul,
  .data-analyst-page .da-highlight-grid,
  .data-analyst-page .da-stack,
  .data-analyst-page .da-project-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final fix: main website mobile menu must never overflow or cut left content */
@media (max-width: 1024px) {
  body:not(.education-pro-body):not(.data-analyst-page) {
    overflow-x: hidden !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 16px !important;
    overflow: visible !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .brand {
    min-width: 0 !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .brand-image {
    width: min(62vw, 330px) !important;
    max-height: 64px !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: 0 !important;
    white-space: nowrap;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .primary-nav {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: 92px !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100svh - 108px) !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 14px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .22) !important;
    z-index: 3000 !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .primary-nav.open {
    display: flex !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .primary-nav > a,
  body:not(.education-pro-body):not(.data-analyst-page) .nav-group > button,
  body:not(.education-pro-body):not(.data-analyst-page) .primary-nav .nav-cta {
    width: 100% !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 12px 14px !important;
    margin: 0 !important;
    text-align: left !important;
    white-space: normal !important;
    border-radius: 6px !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .nav-group {
    position: static !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .mega,
  body:not(.education-pro-body):not(.data-analyst-page) .mega.wide {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    margin: 0 0 8px 0 !important;
    padding: 8px !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow: hidden !important;
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #f8fafc !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .nav-group.open .mega {
    display: grid !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .mega a,
  body:not(.education-pro-body):not(.data-analyst-page) .mega .nav-option-disabled {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    padding: 10px 12px !important;
    margin: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-align: left !important;
  }
}

@media (max-width: 520px) {
  body:not(.education-pro-body):not(.data-analyst-page) .site-header {
    min-height: 72px !important;
    padding: 8px 12px !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .brand-image {
    width: min(58vw, 250px) !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .menu-toggle {
    padding: 9px 12px !important;
    font-weight: 700 !important;
  }

  body:not(.education-pro-body):not(.data-analyst-page) .primary-nav {
    left: 10px !important;
    right: 10px !important;
    top: 82px !important;
    max-height: calc(100svh - 96px) !important;
  }
}


/* Legal and compliance footer navigation */
.legal-footer-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}
.legal-footer-links a {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}
.legal-footer-links a:hover,
.legal-footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .legal-footer-links {
    justify-content: flex-start;
    gap: 10px 16px;
  }
}

/* Mobile card-stack support: clip horizontal overflow without creating a
   vertical scroll container that would disable position: sticky. */
@media (max-width: 620px) {
  html,
  body,
  body:not(.education-pro-body):not(.data-analyst-page) {
    overflow-x: clip !important;
  }
}

/* Remove the education announcement strip requested in the screenshot. */
body.education-pro-body > .edu-alert-bar,
body.data-analyst-page > .edu-alert-bar {
  display: none !important;
}

html:has(body.education-pro-body),
html:has(body.data-analyst-page) {
  scroll-padding-top: 82px !important;
}

body.education-pro-body,
body.data-analyst-page {
  padding-top: 82px !important;
}

body.education-pro-body > .edu-header,
body.data-analyst-page > .site-header {
  inset: 0 0 auto 0 !important;
  top: 0 !important;
}

@media (max-width: 760px) {
  html:has(body.education-pro-body),
  html:has(body.data-analyst-page) {
    scroll-padding-top: 92px !important;
  }

  body.education-pro-body,
  body.data-analyst-page {
    padding-top: 92px !important;
  }

  body.education-pro-body > .edu-header,
  body.data-analyst-page > .site-header {
    inset: 0 0 auto 0 !important;
    top: 0 !important;
  }
}

/* Slightly reduce the education hero headline after the copy update. */
body.education-pro-body .edu-hero h1 {
  font-size: clamp(28px, 2.35vw, 40px) !important;
  line-height: 1.08 !important;
}

body.education-pro-body .edu-hero {
  width: 100vw !important;
  min-height: calc(100svh - 82px) !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

body.education-pro-body .edu-hero-bg {
  width: 100vw !important;
  max-width: none !important;
}

@media (max-width: 760px) {
  body.education-pro-body .edu-hero h1 {
    font-size: clamp(30px, 10vw, 44px) !important;
  }

  body.education-pro-body .edu-hero {
    min-height: calc(100svh - 92px) !important;
  }
}

/* Career paths block added between education hero and programs. */
.edu-career-paths {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 68%, #eef3ff 100%);
  padding: clamp(44px, 5vw, 76px) clamp(18px, 4vw, 72px);
  color: #06122d;
}

.edu-career-head {
  max-width: 680px;
  margin: 0 auto clamp(24px, 3vw, 34px);
  text-align: center;
}

.edu-career-head span {
  display: block;
  color: #1f57d6;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.edu-career-head h2 {
  margin: 4px 0 8px;
  color: #07142f;
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.08;
}

.edu-career-head p {
  margin: 0 auto;
  max-width: 560px;
  color: #4c5870;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
}

.edu-career-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.edu-career-grid article {
  min-height: 226px;
  padding: 24px 18px 20px;
  border: 1px solid #e5e9f3;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .07);
  text-align: center;
}

.edu-career-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .16);
}

.edu-career-icon.is-analytics { background: linear-gradient(135deg, #7c3aed, #4f46e5); }
.edu-career-icon.is-ai { background: linear-gradient(135deg, #38bdf8, #2563eb); }
.edu-career-icon.is-marketing { background: linear-gradient(135deg, #86efac, #16a34a); }
.edu-career-icon.is-code { background: linear-gradient(135deg, #fb923c, #f97316); }
.edu-career-icon.is-security { background: linear-gradient(135deg, #f87171, #ef4444); }
.edu-career-icon.is-design { background: linear-gradient(135deg, #2dd4bf, #0f9f9a); }
.edu-career-icon.is-finance { background: linear-gradient(135deg, #facc15, #eab308); }
.edu-career-icon.is-cloud { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

.edu-career-grid h3 {
  margin: 0 0 10px;
  color: #07142f;
  font-size: 17px;
  line-height: 1.2;
}

.edu-career-grid p {
  min-height: 58px;
  margin: 0 0 14px;
  color: #4c5870;
  font-size: 13px;
  line-height: 1.45;
}

.edu-career-grid a,
.edu-career-grid a:visited {
  color: #0b57d0;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.edu-career-grid a::after {
  content: " +";
}

.edu-career-journey {
  max-width: 1120px;
  margin: clamp(34px, 4vw, 54px) auto 0;
}

.edu-career-head.is-compact {
  margin-bottom: 18px;
}

.edu-career-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.edu-career-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9db2df 12%, #9db2df 88%, transparent);
}

.edu-career-steps div {
  position: relative;
  padding: 0 12px;
  text-align: center;
}

.edu-career-steps b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #2563eb;
  color: #1d4ed8;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, .14);
}

.edu-career-steps div:nth-child(2) b { border-color: #0ea5e9; color: #0284c7; }
.edu-career-steps div:nth-child(3) b { border-color: #22c55e; color: #16a34a; }
.edu-career-steps div:nth-child(4) b { border-color: #f97316; color: #ea580c; }

.edu-career-steps strong {
  display: block;
  color: #07142f;
  font-size: 14px;
  line-height: 1.2;
}

.edu-career-steps p {
  max-width: 190px;
  margin: 5px auto 0;
  color: #5f6b7a;
  font-size: 12px;
  line-height: 1.4;
}

.edu-career-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: clamp(26px, 3vw, 42px) auto 0;
  padding: 22px 26px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 42%, rgba(37, 99, 235, .42), transparent 30%),
    linear-gradient(135deg, #06122d, #071b42 58%, #04132f);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(2, 6, 23, .18);
}

.edu-career-cta span {
  display: grid;
  place-items: center;
  float: left;
  width: 52px;
  height: 52px;
  margin-right: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #f97316);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.edu-career-cta h3 {
  margin: 0 0 4px;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.15;
}

.edu-career-cta p {
  margin: 0;
  color: #d9e4ff;
  font-size: 13px;
  line-height: 1.45;
}

.edu-career-cta nav {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.edu-career-cta a,
.edu-career-cta a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.edu-career-cta a:first-child {
  background: #ff6f23;
}

.edu-career-cta a:last-child {
  border: 1px solid rgba(255, 255, 255, .35);
}

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

@media (max-width: 760px) {
  .edu-career-paths {
    padding: 36px 16px 46px;
  }

  .edu-career-grid,
  .edu-career-steps {
    grid-template-columns: 1fr;
  }

  .edu-career-grid article {
    min-height: auto;
  }

  .edu-career-grid p {
    min-height: 0;
  }

  .edu-career-steps::before {
    display: none;
  }

  .edu-career-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .edu-career-cta nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .edu-career-cta a {
    flex: 1 1 150px;
  }
}

/* Reference-match career paths section */
body.education-pro-body .edu-career-paths {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 17%, rgba(124, 58, 237, .12) 0 60px, transparent 61px),
    radial-gradient(circle at 89% 18%, rgba(249, 115, 22, .14) 0 34px, transparent 35px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 66%, #f7f8ff 100%);
  padding: clamp(54px, 5vw, 78px) clamp(24px, 2.6vw, 38px) clamp(58px, 5vw, 82px);
}

body.education-pro-body .edu-career-paths::before,
body.education-pro-body .edu-career-paths::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 92px;
  opacity: .48;
  background-image: radial-gradient(circle, currentColor 2.2px, transparent 2.4px);
  background-size: 20px 20px;
  pointer-events: none;
}

body.education-pro-body .edu-career-paths::before {
  top: 42px;
  left: 36px;
  color: #8b5cf6;
}

body.education-pro-body .edu-career-paths::after {
  top: 70px;
  right: 62px;
  color: #fb923c;
}

body.education-pro-body .edu-career-head {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: clamp(34px, 3.5vw, 48px);
}

body.education-pro-body .edu-career-head span {
  color: #4f27db;
  font-size: clamp(12px, .9vw, 15px);
  font-weight: 800 !important;
  letter-spacing: .22em !important;
}

body.education-pro-body .edu-career-head h2 {
  margin: 10px 0 16px;
  color: #07112f;
  font-size: clamp(18px, 1.9vw, 29px);
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  line-height: 1.02;
}

body.education-pro-body .edu-career-head h2 em {
  color: #5b2be9;
  font-style: normal;
}

body.education-pro-body .edu-career-head h2 strong {
  color: #ff6f23;
  font-weight: 650 !important;
}

body.education-pro-body .edu-career-head p {
  max-width: 720px;
  color: #3d4562;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.65;
}

body.education-pro-body .edu-career-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.25vw, 20px);
  max-width: none;
  width: 100%;
}

body.education-pro-body .edu-career-grid article {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(20px, 1.5vw, 26px) clamp(16px, 1.25vw, 22px) 22px;
  border: 1px solid #dde3ee;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 38px rgba(15, 23, 42, .12);
}

body.education-pro-body .edu-career-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  border-radius: 18px;
}

body.education-pro-body .edu-career-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.education-pro-body .edu-career-icon.is-data-science { background: linear-gradient(135deg, #8b5cf6, #4c1d95); }
body.education-pro-body .edu-career-icon.is-data-analytics { background: linear-gradient(135deg, #60a5fa, #1d4ed8); }
body.education-pro-body .edu-career-icon.is-business-analytics { background: linear-gradient(135deg, #60d87d, #16a34a); }
body.education-pro-body .edu-career-icon.is-mis { background: linear-gradient(135deg, #fbbf24, #f97316); }
body.education-pro-body .edu-career-icon.is-digital-marketing { background: linear-gradient(135deg, #fb7185, #e11d48); }

body.education-pro-body .edu-career-grid h3 {
  margin-bottom: 12px;
  color: #07112f;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 800 !important;
}

body.education-pro-body .edu-career-grid p {
  min-height: 64px;
  margin-bottom: 16px;
  color: #202841;
  font-size: clamp(12px, .82vw, 14px);
  line-height: 1.7;
}

body.education-pro-body .edu-career-grid ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0 0 16px;
  border-bottom: 1px solid #dfe5ef;
  color: #172033;
  list-style: none;
  text-align: left;
}

body.education-pro-body .edu-career-grid li {
  position: relative;
  min-height: 18px;
  padding-left: 26px;
  font-size: clamp(11px, .72vw, 13px);
  line-height: 1.35;
}

body.education-pro-body .edu-career-grid li::before {
  content: "\2022";
  position: absolute;
  top: -.08em;
  left: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

body.education-pro-body .edu-career-grid a,
body.education-pro-body .edu-career-grid a:visited {
  margin-top: 0;
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 800 !important;
}

body.education-pro-body .edu-career-grid a::after {
  content: " ->";
  font-size: 1.2em;
}

body.education-pro-body .edu-career-grid .is-data-science,
body.education-pro-body .edu-career-grid .is-data-science a { color: #5b21d9; }
body.education-pro-body .edu-career-grid .is-data-analytics,
body.education-pro-body .edu-career-grid .is-data-analytics a { color: #0b63e5; }
body.education-pro-body .edu-career-grid .is-business-analytics,
body.education-pro-body .edu-career-grid .is-business-analytics a { color: #16a34a; }
body.education-pro-body .edu-career-grid .is-mis,
body.education-pro-body .edu-career-grid .is-mis a { color: #f97316; }
body.education-pro-body .edu-career-grid .is-digital-marketing,
body.education-pro-body .edu-career-grid .is-digital-marketing a { color: #e11d48; }

body.education-pro-body .edu-career-journey {
  max-width: none;
  margin-top: clamp(32px, 3vw, 44px);
  padding: clamp(24px, 2.4vw, 34px) clamp(18px, 2.4vw, 34px) clamp(26px, 2.8vw, 38px);
  border-radius: 18px;
  background: linear-gradient(135deg, #f1f2ff, #ffffff 46%, #f3f5ff);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, .8);
}

body.education-pro-body .edu-career-head.is-compact {
  margin-bottom: 24px;
}

body.education-pro-body .edu-career-head.is-compact h2 {
  font-size: clamp(24px, 2.2vw, 34px);
}

body.education-pro-body .edu-career-steps {
  gap: 0;
}

body.education-pro-body .edu-career-steps::before {
  top: 31px;
  left: 18%;
  right: 18%;
  height: 0;
  border-top: 2px dashed #7c3aed;
  background: none;
}

body.education-pro-body .edu-career-steps b {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border: 0;
  color: #ffffff;
  font-size: 15px;
  background: linear-gradient(135deg, #8b5cf6, #4c1d95);
}

body.education-pro-body .edu-career-steps div:nth-child(2) b { background: linear-gradient(135deg, #60a5fa, #1d4ed8); color: #ffffff; }
body.education-pro-body .edu-career-steps div:nth-child(3) b { background: linear-gradient(135deg, #60d87d, #16a34a); color: #ffffff; }
body.education-pro-body .edu-career-steps div:nth-child(4) b { background: linear-gradient(135deg, #f97316, #ea580c); color: #ffffff; }

body.education-pro-body .edu-career-steps strong {
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 800 !important;
}

body.education-pro-body .edu-career-steps p {
  max-width: 190px;
  color: #24304b;
  font-size: clamp(10px, .68vw, 12px);
  line-height: 1.5;
}

body.education-pro-body .edu-career-cta {
  position: relative;
  max-width: none;
  min-height: 150px;
  margin-top: clamp(26px, 3vw, 38px);
  padding: clamp(20px, 2vw, 28px) clamp(22px, 2.4vw, 34px) 54px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 50%, rgba(124, 58, 237, .55), transparent 32%),
    linear-gradient(135deg, #06122d, #071b42 50%, #020617);
}

body.education-pro-body .edu-career-cta > div {
  max-width: 620px;
}

body.education-pro-body .edu-career-cta span {
  width: 82px;
  height: 82px;
  margin-right: 22px;
  background: radial-gradient(circle at 50% 35%, #312e81, #0b1b4d);
}

body.education-pro-body .edu-career-cta span svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.education-pro-body .edu-career-cta h3 {
  font-size: clamp(17px, 1.25vw, 22px);
}

body.education-pro-body .edu-career-cta p {
  max-width: 500px;
  font-size: clamp(11px, .78vw, 13px);
}

body.education-pro-body .edu-career-cta nav {
  gap: 18px;
}

body.education-pro-body .edu-career-cta a,
body.education-pro-body .edu-career-cta a:visited {
  min-height: 42px;
  padding: 0 clamp(14px, 1.2vw, 20px);
  border-radius: 8px;
  font-size: clamp(11px, .76vw, 13px);
}

body.education-pro-body .edu-career-cta-points {
  position: absolute;
  right: clamp(28px, 3vw, 42px);
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
}

body.education-pro-body .edu-career-cta-points b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: clamp(10px, .72vw, 12px);
  font-weight: 700 !important;
}

body.education-pro-body .edu-career-cta-points b + b {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .38);
}

body.education-pro-body .edu-career-cta-points b::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #5b21d9);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

@media (max-width: 1180px) {
  body.education-pro-body .edu-career-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.education-pro-body .edu-career-grid article {
    min-height: auto;
  }

  body.education-pro-body .edu-career-grid p {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body.education-pro-body .edu-career-paths {
    padding: 38px 14px 48px;
  }

  body.education-pro-body .edu-career-paths::before,
  body.education-pro-body .edu-career-paths::after {
    display: none;
  }

  body.education-pro-body .edu-career-head h2 {
    font-size: clamp(17px, 5.1vw, 23px);
  }

  body.education-pro-body .edu-career-head p {
    font-size: 14px;
  }

  body.education-pro-body .edu-career-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.education-pro-body .edu-career-grid article {
    padding: 24px 20px;
  }

  body.education-pro-body .edu-career-journey {
    padding: 24px 16px;
    border-radius: 14px;
  }

  body.education-pro-body .edu-career-steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.education-pro-body .edu-career-steps::before {
    display: none;
  }

  body.education-pro-body .edu-career-cta {
    min-height: 0;
    padding: 22px 18px;
  }

  body.education-pro-body .edu-career-cta span {
    float: none;
    width: 62px;
    height: 62px;
    margin: 0 0 14px;
  }

  body.education-pro-body .edu-career-cta span svg {
    width: 38px;
    height: 38px;
  }

  body.education-pro-body .edu-career-cta nav {
    width: 100%;
  }

  body.education-pro-body .edu-career-cta-points {
    position: static;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
  }

  body.education-pro-body .edu-career-cta-points b + b {
    padding-left: 0;
    border-left: 0;
  }
}

/* Keep the education hero video truly fullscreen, overriding later page-width locks. */
body.education-pro-body .education-pro-page > .edu-hero {
  width: 100vw !important;
  max-width: none !important;
  min-height: calc(100svh - 82px) !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

body.education-pro-body .education-pro-page > .edu-hero .edu-hero-bg {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}

@media (max-width: 760px) {
  body.education-pro-body .education-pro-page > .edu-hero {
    min-height: calc(100svh - 92px) !important;
  }
}

body.education-pro-body .education-pro-page > .edu-hero::after {
  background:
    linear-gradient(90deg, rgba(2, 12, 31, .98) 0%, rgba(3, 15, 41, .82) 31%, rgba(4, 16, 44, .08) 58%, rgba(3, 14, 35, .14) 100%),
    linear-gradient(180deg, rgba(4, 13, 33, .04), rgba(4, 13, 33, .10)) !important;
}

/* Phone-only education home layout polish. Desktop/laptop styles stay untouched. */
@media (max-width: 760px) {
  body.education-pro-body {
    overflow-x: hidden;
  }

  body.education-pro-body .education-pro-page > .edu-hero {
    min-height: auto !important;
    padding: 108px 14px 22px !important;
    align-content: start;
    gap: 0;
  }

  body.education-pro-body .edu-hero-bg {
    object-position: 72% center !important;
  }

  body.education-pro-body .edu-hero::after {
    background:
      linear-gradient(90deg, rgba(2, 12, 31, .98) 0%, rgba(3, 15, 41, .9) 58%, rgba(3, 14, 35, .5) 100%),
      linear-gradient(180deg, rgba(4, 13, 33, .25), rgba(4, 13, 33, .3)) !important;
  }

  body.education-pro-body .edu-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  body.education-pro-body .edu-hero-brandline {
    font-size: clamp(16px, 4.7vw, 20px) !important;
    line-height: 1.1;
    letter-spacing: 1.7px;
    white-space: normal;
  }

  body.education-pro-body .edu-kicker {
    width: fit-content;
    max-width: 100%;
    margin-top: 22px;
    padding: 9px 12px;
    font-size: 11px !important;
    line-height: 1.2;
    letter-spacing: .35px;
    white-space: normal;
  }

  body.education-pro-body .edu-hero h1 {
    max-width: 100%;
    margin: 16px 0 10px;
    font-size: clamp(27px, 8.1vw, 33px) !important;
    line-height: 1.08 !important;
    letter-spacing: .3px;
    overflow-wrap: anywhere;
    text-shadow: none !important;
  }

  body.education-pro-body .edu-hero-copy p {
    max-width: 100%;
    font-size: 14px !important;
    line-height: 1.42;
    margin-bottom: 16px;
    text-shadow: none !important;
  }

  body.education-pro-body .edu-proof-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px 10px;
    margin: 0 0 16px;
  }

  body.education-pro-body .edu-proof-row span {
    min-width: 0;
    align-items: flex-start;
    gap: 7px;
    font-size: 12px !important;
    line-height: 1.15;
  }

  body.education-pro-body .edu-proof-row span::before {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    font-size: 11px;
  }

  body.education-pro-body .edu-hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 360px);
    margin-top: 22px;
  }

  body.education-pro-body .edu-btn,
  body.education-pro-body .edu-btn:visited {
    width: 100%;
    min-height: 36px;
    padding: 8px 9px;
    justify-content: center;
    text-align: center;
    font-size: 11px !important;
    line-height: 1.2;
    white-space: nowrap;
  }

  body.education-pro-body .edu-section,
  body.education-pro-body .edu-career-paths,
  body.education-pro-body .edu-programs,
  body.education-pro-body .edu-placements,
  body.education-pro-body .edu-why {
    overflow-x: hidden;
  }

  body.education-pro-body .edu-section-head h2,
  body.education-pro-body .edu-career-head h2,
  body.education-pro-body .edu-program-head h2,
  body.education-pro-body .edu-placement-head h2 {
    font-size: clamp(24px, 7vw, 31px) !important;
    line-height: 1.14;
  }

  body.education-pro-body .edu-section-head p,
  body.education-pro-body .edu-career-head p,
  body.education-pro-body .edu-program-head p,
  body.education-pro-body .edu-placement-head p {
    font-size: 14.5px !important;
    line-height: 1.55;
  }

  body.education-pro-body .edu-career-grid article,
  body.education-pro-body .edu-program-grid article,
  body.education-pro-body .edu-project-card,
  body.education-pro-body .edu-journey-grid article {
    padding: 20px 16px !important;
  }
}

/* Technext Education preloader shown while the hero video starts. */
.edu-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 111, 35, .16), transparent 24%),
    linear-gradient(135deg, #06122d, #071b42 58%, #020617);
  color: #ffffff;
  transition: opacity .45s ease, visibility .45s ease;
}

.edu-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.edu-preloader p {
  position: relative;
  margin: 0;
  color: #ff8d24;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 800;
  letter-spacing: .1em !important;
}

.edu-preloader p span {
  color: #ffffff;
}

.edu-preloader p::after {
  content: "";
  display: block;
  width: 180px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 99px;
  background:
    linear-gradient(90deg, #ffffff, #ff8d24, #ffffff) 0 0 / 80px 100% no-repeat,
    rgba(255, 255, 255, .18);
  animation: eduPreloaderPulse 1.1s ease-in-out infinite;
}

/* Main home preloader. */
.home-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #101828;
  transition: opacity .7s ease, visibility .7s ease;
}

.home-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-preloader,
.edu-preloader {
  animation: technextPreloaderFallback .55s ease 3.2s forwards;
}

.home-preloader.is-hidden,
.edu-preloader.is-hidden {
  animation: none;
}

.home-preloader-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  animation: homeLoaderRise .65s ease both;
}

.home-preloader-logo {
  width: min(280px, 72vw);
  height: auto;
  display: block;
}

.home-preloader-bar {
  width: 170px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: #e6eaf0;
}

.home-preloader-bar span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #21c6f3, #4f27db, #ff6f23);
  animation: homeLoaderBar 1.05s ease-in-out infinite;
}

@keyframes eduPreloaderPulse {
  0% {
    background-position: -80px 0, 0 0;
  }
  100% {
    background-position: 180px 0, 0 0;
  }
}

@keyframes technextPreloaderFallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes homeLoaderRise {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes homeLoaderBar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(260%);
  }
}

/* Data Science Career Path page */
.ds-path-page {
  padding-top: 82px;
  background: #ffffff;
  color: #06122d;
}

.ds-path-page .site-header {
  position: fixed;
  top: 0;
}

.ds-path-wrap {
  width: min(100% - 44px, 1760px);
  margin: 0 auto;
  padding: 22px 0 34px;
}

.ds-step {
  position: relative;
  margin-left: 74px;
}

.ds-step::before {
  content: attr(data-step);
  position: absolute;
  left: -55px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b21d9, #270094);
  color: #ffffff;
  font-weight: 800;
}

.ds-step::after {
  content: "";
  position: absolute;
  left: -36px;
  top: 46px;
  bottom: -22px;
  border-left: 1px dashed rgba(91, 33, 217, .35);
}

.ds-apply::after {
  display: none;
}

.ds-path-hero {
  display: grid;
  grid-template-columns: minmax(360px, 580px) 1fr;
  gap: 34px;
  align-items: center;
  min-height: 330px;
}

.ds-copy span,
.ds-market h2,
.ds-course h2,
.ds-projects h2,
.ds-outcomes h2 {
  color: #3c12c9;
  font-weight: 800;
}

.ds-copy h1 {
  margin: 8px 0 6px;
  color: #07112f;
  font-size: clamp(46px, 5.4vw, 84px);
  line-height: .96;
}

.ds-copy h2 {
  margin: 0 0 8px;
  color: #4f27db;
  font-size: clamp(20px, 1.6vw, 30px);
}

.ds-copy p {
  max-width: 500px;
  margin: 0 0 16px;
  color: #172033;
  line-height: 1.48;
}

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

.ds-actions a,
.ds-apply > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 6px;
  background: #4f27db;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.ds-actions a:last-child {
  background: #ffffff;
  color: #4f27db;
  border: 1px solid #7c3aed;
}

.ds-hero-visual {
  min-height: 300px;
  display: grid;
  place-items: center;
}

.ds-hero-visual img {
  width: min(760px, 100%);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(61, 18, 201, .22));
}

.ds-market,
.ds-future,
.ds-course,
.ds-projects,
.ds-outcomes {
  margin-top: 14px;
  padding: 18px 22px;
  border: 1px solid #dfe4ef;
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .05);
}

.ds-market {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
}

.ds-market h2,
.ds-course h2,
.ds-projects h2,
.ds-outcomes h2 {
  margin: 0;
  font-size: clamp(20px, 1.5vw, 28px);
}

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

.ds-fact-grid article,
.ds-course-meta span,
.ds-course-flow article,
.ds-tools,
.ds-project-grid article,
.ds-outcome-flow article,
.ds-career-support {
  border: 1px solid #e1e6f0;
  border-radius: 8px;
  background: #ffffff;
}

.ds-fact-grid article {
  min-height: 116px;
  padding: 16px 18px;
}

.ds-fact-grid b {
  color: #4f27db;
  font-size: 24px;
  margin-right: 6px;
}

.ds-fact-grid strong {
  color: #07112f;
}

.ds-fact-grid p,
.ds-future p,
.ds-course-flow p,
.ds-project-grid p,
.ds-outcome-flow p,
.ds-apply p {
  margin: 6px 0 0;
  color: #26324a;
  font-size: 13px;
  line-height: 1.45;
}

.ds-fact-grid small {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #efedff;
  color: #4f27db;
  font-size: 11px;
}

.ds-future {
  display: grid;
  grid-template-columns: 210px repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 50%, rgba(255, 111, 35, .16), transparent 20%),
    #ffffff;
}

.ds-year span,
.ds-apply span {
  color: #3c12c9;
  font-weight: 800;
}

.ds-year b {
  display: block;
  color: #6d28d9;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
}

.ds-future article b {
  color: #07112f;
  font-size: 17px;
}

.ds-course {
  display: grid;
  grid-template-columns: 190px 1fr 320px;
  gap: 16px;
  align-items: stretch;
}

.ds-course-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ds-course-meta span {
  display: grid;
  place-items: center;
  min-height: 92px;
  text-align: center;
  font-size: 13px;
}

.ds-course-meta b {
  display: block;
  color: #07112f;
  font-size: 18px;
}

.ds-course-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.ds-course-flow article {
  padding: 12px 10px;
  text-align: center;
}

.ds-course-flow span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #6d28d9;
  color: #ffffff;
  font-weight: 800;
}

.ds-course-flow b,
.ds-project-grid b,
.ds-outcome-flow b {
  color: #07112f;
  font-size: 13px;
}

.ds-tools {
  padding: 14px;
}

.ds-tools h3 {
  margin: 0 0 12px;
  color: #07112f;
  font-size: 15px;
}

.ds-tools span {
  display: inline-flex;
  margin: 4px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1f5ff;
  color: #172033;
  font-size: 12px;
  font-weight: 700;
}

.ds-projects {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
}

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

.ds-project-grid article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 10px;
  align-items: center;
}

.ds-project-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.ds-outcomes {
  display: grid;
  grid-template-columns: 180px 1fr 430px;
  gap: 16px;
  align-items: center;
}

.ds-outcome-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ds-outcome-flow article {
  padding: 14px;
}

.ds-career-support {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ds-career-support span {
  padding: 16px 10px;
  text-align: center;
  color: #172033;
  font-size: 12px;
  font-weight: 700;
}

.ds-career-support span + span {
  border-left: 1px dashed #cbd5e1;
}

.ds-apply {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 340px);
  gap: 28px;
  align-items: center;
  margin-top: 14px;
  padding: 28px 32px;
  border-radius: 10px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 50%, rgba(255,255,255,.26), transparent 24%),
    linear-gradient(105deg, #4f27db, #8b0d82 48%, #ff6f23);
}

.ds-apply span,
.ds-apply h2,
.ds-apply p {
  color: #ffffff;
}

.ds-apply h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 2.4vw, 42px);
}

.ds-apply > a {
  min-height: 64px;
  background: #ffffff;
  color: #07112f;
  font-size: 24px;
}

@media (max-width: 1180px) {
  .ds-path-hero,
  .ds-market,
  .ds-future,
  .ds-course,
  .ds-projects,
  .ds-outcomes,
  .ds-apply {
    grid-template-columns: 1fr;
  }

  .ds-fact-grid,
  .ds-project-grid,
  .ds-outcome-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ds-course-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ds-path-page {
    padding-top: 92px;
  }

  .ds-path-wrap {
    width: min(100% - 24px, 1760px);
  }

  .ds-step {
    margin-left: 0;
  }

  .ds-step::before,
  .ds-step::after {
    display: none;
  }

  .ds-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .ds-fact-grid,
  .ds-course-meta,
  .ds-course-flow,
  .ds-project-grid,
  .ds-outcome-flow,
  .ds-career-support {
    grid-template-columns: 1fr;
  }

  .ds-project-grid article {
    grid-template-columns: 1fr;
  }

  .ds-career-support span + span {
    border-left: 0;
    border-top: 1px dashed #cbd5e1;
  }
}

/* Exact poster-style Data Science Career Path page */
body.ds-path-page {
  padding-top: 82px;
  background: #ffffff;
  color: #061039;
  font-family: Inter, Arial, sans-serif;
}

body.ds-path-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  width: 100%;
  max-width: 100%;
}

.ds-poster {
  width: min(100% - 42px, 1760px);
  margin: 0 auto;
  padding: 18px 0 28px;
}

.ds-row {
  position: relative;
  margin-left: 78px;
}

.ds-num::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  left: -58px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5a22db, #270094);
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
}

.ds-num::after {
  content: "";
  position: absolute;
  left: -38px;
  top: 60px;
  bottom: -18px;
  border-left: 1px dashed rgba(91, 33, 217, .38);
}

.ds-apply-row::after {
  display: none;
}

.ds-hero-row {
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: center;
  min-height: 350px;
  border-bottom: 1px solid #dde3ef;
}

.ds-hero-copy {
  padding: 34px 0 24px;
}

.ds-eyebrow {
  margin: 0 0 10px;
  color: #3f16c9;
  font-size: 26px;
  font-weight: 800;
}

.ds-hero-copy h1 {
  margin: 0;
  color: #071039;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(56px, 5vw, 86px);
  font-weight: 800;
  line-height: .93;
}

.ds-hero-copy h2 {
  margin: 12px 0 6px;
  color: #4b19d1;
  font-size: 27px;
  font-weight: 800;
}

.ds-intro {
  width: 470px;
  margin: 0;
  color: #111a3b;
  font-size: 16px;
  line-height: 1.42;
}

.ds-buttons {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.ds-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid #5a22db;
  color: #4b19d1;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ds-buttons a:first-child {
  color: #ffffff;
  background: #4b19d1;
}

.ds-hero-img {
  width: 100%;
  max-height: 346px;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 22px 36px rgba(47, 24, 130, .14));
}

.ds-hero-monitor {
  position: relative;
  width: min(100%, 780px);
  justify-self: end;
  padding: 13px 13px 20px;
  border: 1px solid rgba(85, 102, 139, .34);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04)),
    linear-gradient(135deg, #111a36, #050b1f 58%, #101a3c);
  box-shadow:
    0 26px 55px rgba(15, 23, 42, .20),
    0 0 0 1px rgba(255,255,255,.34) inset,
    0 0 42px rgba(91, 33, 217, .14);
}

.ds-hero-monitor::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  height: 22px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  pointer-events: none;
}

.ds-hero-monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 190px;
  height: 16px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #111a36, #050b1f);
  box-shadow: 0 16px 24px rgba(15, 23, 42, .18);
  transform: translateX(-50%);
}

video.ds-hero-img {
  display: block;
  height: 318px;
  max-height: none;
  border: 1px solid rgba(148, 163, 184, .42);
  border-radius: 10px;
  background: #020617;
  object-fit: cover;
  object-position: center;
  filter: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset;
}

.ds-market-row,
.ds-future-row,
.ds-course-row,
.ds-project-row,
.ds-outcome-row {
  margin-top: 14px;
}

.ds-market-row {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}

.ds-market-row > h2,
.ds-course-row > h2,
.ds-project-row > h2,
.ds-outcome-row > h2 {
  margin: 16px 0 0;
  color: #3811b6;
  font-size: 24px;
  font-weight: 800;
}

.ds-market-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 136px;
  padding: 16px;
  border: 1px solid #dfe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 9px 28px rgba(15, 23, 42, .045);
}

.ds-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #eee7ff;
  color: #6727dd;
  font-size: 42px;
  font-weight: 800;
}

.ds-icon.blue {
  background: #dbe8ff;
  color: #1359d8;
}

.ds-icon.orange {
  background: #ffe0cc;
  color: #f26322;
}

.ds-market-card h3 {
  margin: 0 0 5px;
  color: #071039;
  font-size: 18px;
}

.ds-market-card h3 b {
  font-size: 27px;
}

.ds-market-card p,
.ds-future-row p,
.ds-flow p,
.ds-project-row p,
.ds-outcome-row p,
.ds-apply-row p {
  margin: 0;
  color: #17203f;
  font-size: 12px;
  line-height: 1.42;
}

.ds-market-card small {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 3px;
  background: #efedff;
  color: #3811b6;
  font-size: 11px;
}

.ds-future-row {
  display: grid;
  grid-template-columns: 250px repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 148px;
  padding: 16px 24px;
  border: 1px solid #c7b8ff;
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 56%, rgba(255, 111, 35, .20), transparent 16%),
    radial-gradient(circle at 100% 50%, rgba(91, 33, 217, .12), transparent 25%),
    #ffffff;
}

.ds-2030 h2 {
  margin: 0 0 5px;
  color: #071039;
  font-size: 22px;
}

.ds-2030 b {
  display: block;
  color: #6b27e8;
  font-size: 50px;
  line-height: .95;
}

.ds-future-row article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
}

.ds-future-row article span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid #7c3aed;
  border-radius: 50%;
  color: #5a22db;
  font-size: 31px;
}

.ds-future-row h3 {
  margin: 0 0 7px;
  color: #071039;
  font-size: 17px;
}

.ds-course-row {
  display: grid;
  grid-template-columns: 150px 115px 140px 1fr 300px;
  gap: 10px;
  align-items: stretch;
}

.ds-mini-card,
.ds-flow,
.ds-tools-box,
.ds-project-row article,
.ds-outcome-row article,
.ds-support {
  border: 1px solid #dfe4ef;
  border-radius: 8px;
  background: #ffffff;
}

.ds-mini-card {
  display: grid;
  place-items: center;
  padding: 10px;
  text-align: center;
}

.ds-mini-card b {
  color: #1359d8;
  font-size: 28px;
}

.ds-mini-card span {
  color: #071039;
  font-size: 13px;
  font-weight: 700;
}

.ds-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 10px 12px;
}

.ds-flow article {
  position: relative;
  text-align: center;
}

.ds-flow article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 21px;
  right: -8px;
  color: #6b27e8;
}

.ds-flow span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 4px;
  border-radius: 50%;
  background: #6b27e8;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.ds-flow b {
  display: block;
  color: #071039;
  font-size: 12px;
}

.ds-tools-box {
  padding: 12px;
}

.ds-tools-box h3 {
  margin: 0 0 10px;
  color: #071039;
  font-size: 13px;
}

.ds-tools-box div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px;
}

.ds-tools-box span {
  font-size: 12px;
  font-weight: 700;
}

.ds-project-row {
  display: grid;
  grid-template-columns: 120px repeat(4, 1fr);
  gap: 10px;
}

.ds-project-row article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding: 9px;
  align-items: center;
}

.ds-project-row img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 5px;
}

.ds-project-row h3 {
  margin: 0 0 6px;
  color: #071039;
  font-size: 13px;
}

.ds-outcome-row {
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr) 420px;
  gap: 10px;
}

.ds-outcome-row article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
}

.ds-outcome-row article b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: #6b27e8;
}

.ds-outcome-row article:nth-of-type(2) b { background: #1359d8; }
.ds-outcome-row article:nth-of-type(3) b { background: #f59e0b; }
.ds-outcome-row article:nth-of-type(4) b { background: #ff6f23; }

.ds-outcome-row h3 {
  margin: 0 0 4px;
  color: #071039;
  font-size: 13px;
}

.ds-support {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.ds-support span {
  padding: 14px 7px;
  text-align: center;
  color: #071039;
  font-size: 12px;
  font-weight: 700;
}

.ds-support span + span {
  border-left: 1px dashed #cbd5e1;
}

.ds-apply-row {
  display: grid;
  grid-template-columns: 160px 1fr 360px;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  padding: 22px 30px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255,255,255,.28), transparent 9%),
    radial-gradient(circle at 91% 50%, rgba(255,255,255,.18), transparent 20%),
    linear-gradient(105deg, #4b19d1, #8b0d82 45%, #ff6f23);
  color: #fff;
}

.ds-apply-row > span {
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.ds-apply-row h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
}

.ds-apply-row p {
  color: #fff;
}

.ds-apply-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 66px;
  border-radius: 7px;
  background: #fff;
  color: #071039;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1280px) {
  .ds-hero-row,
  .ds-market-row,
  .ds-future-row,
  .ds-course-row,
  .ds-project-row,
  .ds-outcome-row,
  .ds-apply-row {
    grid-template-columns: 1fr;
  }

  .ds-flow,
  .ds-tools-box div,
  .ds-support {
    grid-template-columns: repeat(3, 1fr);
  }

  .ds-project-row article {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 760px) {
  body.ds-path-page {
    padding-top: 92px;
  }

  .ds-poster {
    width: min(100% - 24px, 1760px);
  }

  .ds-row {
    margin-left: 0;
  }

  .ds-num::before,
  .ds-num::after {
    display: none;
  }

  .ds-hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .ds-intro {
    width: auto;
  }

  .ds-hero-monitor {
    width: 100%;
    padding: 9px 9px 15px;
    border-radius: 14px;
  }

  video.ds-hero-img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .ds-buttons,
  .ds-apply-row {
    grid-template-columns: 1fr;
  }

  .ds-buttons a {
    width: 100%;
  }

  .ds-flow,
  .ds-tools-box div,
  .ds-project-row article,
  .ds-support {
    grid-template-columns: 1fr;
  }

  .ds-flow article:not(:last-child)::after {
    display: none;
  }

  .ds-support span + span {
    border-left: 0;
    border-top: 1px dashed #cbd5e1;
  }
}

/* Data Science page typography polish */
.ds-path-page .ds-poster {
  color: #071039;
  font-weight: 400;
}

.ds-path-page .ds-intro,
.ds-path-page .ds-flow b,
.ds-path-page .ds-project-row h3,
.ds-path-page .ds-outcome-row h3,
.ds-path-page .ds-tools-box span,
.ds-path-page .ds-support span,
.ds-path-page .ds-market-card p,
.ds-path-page .ds-future-row p,
.ds-path-page .ds-flow p,
.ds-path-page .ds-project-row p,
.ds-path-page .ds-outcome-row p,
.ds-path-page .ds-apply-row p,
.ds-path-page .ds-2030 p {
  font-size: 105%;
}

.ds-path-page .ds-eyebrow {
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 700;
  letter-spacing: 0;
}

.ds-path-page .ds-hero-copy h1 {
  font-size: clamp(28px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: none !important;
  filter: none !important;
}

.ds-path-page .ds-hero-copy h1,
.ds-path-page .ds-hero-copy h2,
.ds-path-page .ds-eyebrow,
.ds-path-page .ds-market-row > h2,
.ds-path-page .ds-course-row > h2,
.ds-path-page .ds-project-row > h2,
.ds-path-page .ds-outcome-row > h2,
.ds-path-page h3 {
  text-shadow: none !important;
}

.ds-path-page .ds-hero-copy h2 {
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 600;
}

.ds-path-page .ds-intro {
  max-width: 455px;
  font-size: 15px;
  line-height: 1.5;
}

.ds-path-page .ds-market-row > h2,
.ds-path-page .ds-course-row > h2,
.ds-path-page .ds-project-row > h2,
.ds-path-page .ds-outcome-row > h2,
.ds-path-page .ds-2030 h2 {
  font-size: clamp(18px, 1.4vw, 21px);
  font-weight: 700;
  line-height: 1.18;
}

.ds-path-page .ds-market-card h3,
.ds-path-page .ds-future-row h3,
.ds-path-page .ds-project-row h3,
.ds-path-page .ds-outcome-row h3,
.ds-path-page .ds-tools-box h3 {
  font-weight: 650;
  line-height: 1.22;
}

.ds-path-page .ds-market-card h3 {
  font-size: 15px;
}

.ds-path-page .ds-market-card h3 b {
  font-size: 20px;
  font-weight: 650;
}

.ds-path-page .ds-future-row h3 {
  font-size: 16px;
}

.ds-path-page .ds-2030 b {
  font-size: clamp(36px, 3vw, 44px);
  font-weight: 700;
}

.ds-path-page .ds-flow b,
.ds-path-page .ds-mini-card span,
.ds-path-page .ds-tools-box span,
.ds-path-page .ds-support span {
  font-weight: 600;
}

.ds-path-page .ds-mini-card b {
  font-size: 24px;
  font-weight: 700;
}

.ds-path-page .ds-project-row h3,
.ds-path-page .ds-outcome-row h3 {
  font-size: 12.5px;
}

.ds-path-page .ds-market-card p,
.ds-path-page .ds-future-row p,
.ds-path-page .ds-flow p,
.ds-path-page .ds-project-row p,
.ds-path-page .ds-outcome-row p,
.ds-path-page .ds-apply-row p {
  font-size: 11.5px;
  line-height: 1.45;
}

.ds-path-page .ds-apply-row > span {
  font-size: 18px;
  font-weight: 700;
}

.ds-path-page .ds-apply-row h2 {
  font-size: clamp(28px, 2.5vw, 34px);
  font-weight: 700;
}

.ds-path-page .ds-apply-row a {
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .ds-path-page .ds-hero-copy h1 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .ds-path-page .ds-hero-copy h2 {
    font-size: 19px;
  }

  .ds-path-page .ds-intro {
    font-size: 14px;
  }

  .ds-path-page .ds-apply-row h2 {
    font-size: 25px;
  }
}

/* Future Prediction icon and typography arrangement */
.ds-path-page .ds-future-row {
  grid-template-columns: 245px repeat(3, 1fr);
  gap: 18px;
  padding: 16px 26px;
}

.ds-path-page .ds-2030 h2 {
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 650;
}

.ds-path-page .ds-2030 b {
  font-size: 42px;
  font-weight: 650;
  letter-spacing: 0;
}

.ds-path-page .ds-2030 p {
  max-width: 130px;
  font-size: 11px;
  line-height: 1.3;
}

.ds-path-page .ds-future-row article {
  grid-template-columns: 76px 1fr;
  gap: 14px;
  min-width: 0;
}

.ds-path-page .ds-future-row article span {
  width: 62px;
  height: 62px;
  background: linear-gradient(180deg, #ffffff, #f6f3ff);
  box-shadow: 0 10px 22px rgba(91, 33, 217, .08);
  font-size: 0;
}

.ds-path-page .ds-future-row article span svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ds-path-page .ds-future-row h3 {
  margin-bottom: 5px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.22;
}

.ds-path-page .ds-future-row p {
  max-width: 310px;
  font-size: 10.8px;
  line-height: 1.42;
}

@media (max-width: 760px) {
  .ds-path-page .ds-future-row {
    padding: 15px;
  }

  .ds-path-page .ds-future-row article {
    grid-template-columns: 58px 1fr;
  }

  .ds-path-page .ds-future-row article span {
    width: 52px;
    height: 52px;
  }

  .ds-path-page .ds-future-row article span svg {
    width: 29px;
    height: 29px;
  }
}

/* Course Details icon and typography arrangement */
.ds-path-page .ds-course-row {
  grid-template-columns: 145px 110px 130px 1fr 270px;
  gap: 10px;
  align-items: stretch;
}

.ds-path-page .ds-mini-card {
  min-height: 78px;
  padding: 10px 8px;
}

.ds-path-page .ds-mini-card b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 5px;
  color: #1359d8;
  font-size: 0;
}

.ds-path-page .ds-mini-card b svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ds-path-page .ds-mini-card b svg {
  stroke-width: 3.6;
}

.ds-path-page .ds-mini-card span {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
}

.ds-path-page .ds-flow {
  padding: 8px 10px 9px;
}

.ds-path-page .ds-flow article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
}

.ds-path-page .ds-flow article:not(:last-child)::after {
  top: 21px;
  right: -10px;
  font-size: 14px;
}

.ds-path-page .ds-flow span {
  width: 24px;
  height: 24px;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
}

.ds-path-page .ds-flow i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  font-style: normal;
}

.ds-path-page .ds-flow i img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.ds-path-page .ds-flow i.ds-duo-logo {
  grid-template-columns: repeat(2, 20px);
  gap: 2px;
  width: 43px;
}

.ds-path-page .ds-flow i.ds-duo-logo img {
  width: 20px;
  height: 20px;
}

.ds-path-page .ds-flow b {
  margin-bottom: 2px;
  font-size: 10.8px;
  font-weight: 600;
  line-height: 1.15;
}

.ds-path-page .ds-flow p {
  max-width: 76px;
  font-size: 9px;
  line-height: 1.2;
}

.ds-path-page .ds-tools-box {
  padding: 10px;
}

.ds-path-page .ds-tools-box h3 {
  margin-bottom: 8px;
  font-size: 11.5px;
  font-weight: 600;
}

.ds-path-page .ds-tools-box span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 10.5px;
  font-weight: 600;
}

.ds-path-page .ds-tools-box span img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

@media (max-width: 1280px) {
  .ds-path-page .ds-course-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ds-path-page .ds-flow article {
    padding: 8px 0;
  }

  .ds-path-page .ds-flow p {
    max-width: 180px;
  }
}

/* Projects image and typography arrangement */
.ds-path-page .ds-project-row {
  grid-template-columns: 120px repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.ds-path-page .ds-project-row article {
  grid-template-columns: 180px 1fr;
  gap: 10px;
  padding: 8px;
  min-height: 92px;
  overflow: hidden;
}

.ds-path-page .ds-project-row img {
  height: 78px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

.ds-path-page .ds-project-row h3 {
  margin-bottom: 4px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
}

.ds-path-page .ds-project-row p {
  max-width: 138px;
  font-size: 10px;
  line-height: 1.35;
}

@media (max-width: 1440px) {
  .ds-path-page .ds-project-row article {
    grid-template-columns: 155px 1fr;
  }
}

@media (max-width: 1280px) {
  .ds-path-page .ds-project-row {
    grid-template-columns: 1fr;
  }

  .ds-path-page .ds-project-row article {
    grid-template-columns: 220px 1fr;
  }

  .ds-path-page .ds-project-row img {
    height: 96px;
  }
}

@media (max-width: 760px) {
  .ds-path-page .ds-project-row article {
    grid-template-columns: 1fr;
  }

  .ds-path-page .ds-project-row img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .ds-path-page .ds-project-row p {
    max-width: none;
  }
}

/* Career Outcomes image and typography arrangement */
.ds-path-page .ds-outcome-row {
  grid-template-columns: 170px repeat(4, minmax(0, 1fr)) 390px;
  gap: 10px;
  align-items: stretch;
}

.ds-path-page .ds-outcome-row article {
  grid-template-columns: 44px 1fr;
  gap: 9px;
  min-height: 58px;
  padding: 8px 10px;
}

.ds-path-page .ds-outcome-row article b {
  width: 36px;
  height: 36px;
  overflow: hidden;
  background: transparent !important;
}

.ds-path-page .ds-outcome-row article b img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ds-path-page .ds-outcome-row h3 {
  margin-bottom: 2px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.15;
}

.ds-path-page .ds-outcome-row p {
  font-size: 9.5px;
  line-height: 1.25;
}

.ds-path-page .ds-support {
  grid-template-columns: repeat(4, 1fr);
  min-height: 58px;
}

.ds-path-page .ds-support span {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 3px;
  min-width: 0;
  padding: 7px 5px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.15;
}

.ds-path-page .ds-support span img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

@media (max-width: 1280px) {
  .ds-path-page .ds-outcome-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ds-path-page .ds-outcome-row article {
    grid-template-columns: 40px 1fr;
  }
}

/* Apply Now banner matched to reference */
.ds-path-page .ds-apply-row {
  position: relative;
  grid-template-columns: 70px minmax(0, 1fr) 260px;
  gap: 22px;
  min-height: 108px;
  margin-top: 14px;
  padding: 16px 44px 16px 28px;
  overflow: hidden;
  border-radius: 9px;
  background-color: #5b21d9;
  background-image:
    radial-gradient(circle at 18% 52%, rgba(255, 255, 255, .22), transparent 6%),
    linear-gradient(100deg, #4b19d1 0%, #5b21d9 22%, #a10f7d 52%, #ff5a18 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.ds-path-page .ds-apply-row::before {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 570px;
  height: 105px;
  opacity: .55;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .84) 1.05px, transparent 1.55px) 0 0 / 11px 9px;
  clip-path: polygon(0 56%, 14% 30%, 28% 22%, 42% 34%, 56% 54%, 70% 58%, 84% 43%, 100% 26%, 100% 100%, 0 100%);
  pointer-events: none;
}

.ds-path-page .ds-apply-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.ds-path-page .ds-apply-rocket {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(255, 255, 255, .32);
}

.ds-path-page .ds-apply-rocket img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.ds-path-page .ds-apply-row div,
.ds-path-page .ds-apply-row a {
  position: relative;
  z-index: 1;
}

.ds-path-page .ds-apply-row h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
}

.ds-path-page .ds-apply-row p {
  color: rgba(255, 255, 255, .92);
  font-size: 10.5px;
  line-height: 1.35;
}

.ds-path-page .ds-apply-row a {
  min-height: 58px;
  border-radius: 8px;
  background: #ffffff;
  color: #071039;
  font-size: 22px;
  font-weight: 650;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
}

@media (max-width: 1280px) {
  .ds-path-page .ds-apply-row {
    grid-template-columns: 58px 1fr 220px;
  }
}

@media (max-width: 760px) {
  .ds-path-page .ds-apply-row {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px;
  }

  .ds-path-page .ds-apply-row a {
    width: 100%;
  }
}

/* Market Facts icon and text arrangement */
.ds-path-page .ds-market-card {
  grid-template-columns: 78px 1fr;
  gap: 14px;
  min-height: 118px;
  padding: 14px 16px;
}

.ds-path-page .ds-icon {
  width: 62px;
  height: 62px;
  font-size: 0;
}

.ds-path-page .ds-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ds-path-page .ds-market-card h3 {
  margin-bottom: 4px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0;
}

.ds-path-page .ds-market-card h3 b {
  margin-right: 4px;
  font-size: 19px;
  font-weight: 650;
}

.ds-path-page .ds-market-card p {
  max-width: 360px;
  font-size: 11px;
  line-height: 1.4;
}

.ds-path-page .ds-market-card small {
  margin-top: 7px;
  padding: 3px 7px;
  font-size: 10px;
}

@media (max-width: 760px) {
  .ds-path-page .ds-market-card {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .ds-path-page .ds-icon {
    width: 52px;
    height: 52px;
  }

  .ds-path-page .ds-icon svg {
    width: 30px;
    height: 30px;
  }
}

/* Data Science page text scale matched with main homepage readability */
.ds-path-page .ds-intro {
  font-size: 16px !important;
  line-height: 1.58;
}

.ds-path-page .ds-market-card h3,
.ds-path-page .ds-future-row h3 {
  font-size: 15.5px !important;
  font-weight: 600;
  line-height: 1.25;
}

.ds-path-page .ds-market-card h3 b {
  font-size: 20px !important;
}

.ds-path-page .ds-market-card p,
.ds-path-page .ds-future-row p,
.ds-path-page .ds-2030 p {
  font-size: 25.35px !important;
  line-height: 1.45;
}

.ds-path-page .ds-flow b,
.ds-path-page .ds-project-row h3,
.ds-path-page .ds-outcome-row h3 {
  font-size: 40px !important;
  font-weight: 600;
  line-height: 1.22;
}

.ds-path-page .ds-flow p,
.ds-path-page .ds-project-row p,
.ds-path-page .ds-outcome-row p {
  font-size: 12.5px !important;
  line-height: 1.36;
}

.ds-path-page .ds-tools-box h3 {
  font-size: 13px !important;
}

.ds-path-page .ds-tools-box span,
.ds-path-page .ds-support span,
.ds-path-page .ds-mini-card span {
  font-size: 12.5px !important;
  font-weight: 600;
  line-height: 1.25;
}

.ds-path-page .ds-apply-row p {
  font-size: 13px !important;
  line-height: 1.45;
}

.ds-path-page .ds-icon {
  width: 68px !important;
  height: 68px !important;
}

.ds-path-page .ds-icon svg {
  width: 40px !important;
  height: 40px !important;
}

.ds-path-page .ds-future-row article span {
  width: 68px !important;
  height: 68px !important;
}

.ds-path-page .ds-future-row article span svg {
  width: 38px !important;
  height: 38px !important;
}

.ds-path-page .ds-mini-card b {
  width: 40px !important;
  height: 40px !important;
}

.ds-path-page .ds-flow i {
  width: 38px !important;
  height: 38px !important;
}

.ds-path-page .ds-flow i img {
  width: 36px !important;
  height: 36px !important;
}

.ds-path-page .ds-flow i.ds-duo-logo {
  grid-template-columns: repeat(2, 24px);
  width: 50px !important;
}

.ds-path-page .ds-flow i.ds-duo-logo img {
  width: 24px !important;
  height: 24px !important;
}

.ds-path-page .ds-tools-box span img {
  width: 26px !important;
  height: 26px !important;
}

.ds-path-page .ds-outcome-row article b {
  width: 42px !important;
  height: 42px !important;
}

.ds-path-page .ds-support span img {
  width: 31px !important;
  height: 31px !important;
}

/* Put Course Details tools below part 4 in one line */
.ds-path-page .ds-course-row {
  grid-template-columns: 145px 110px 130px minmax(0, 1fr) !important;
}

.ds-path-page .ds-tools-box {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 10px 16px !important;
}

.ds-path-page .ds-tools-box h3 {
  margin: 0 !important;
  white-space: nowrap;
}

.ds-path-page .ds-tools-box div {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ds-path-page .ds-tools-box span {
  white-space: nowrap;
}

/* Add balanced spacing between each numbered part */
.ds-path-page .ds-market-row,
.ds-path-page .ds-future-row,
.ds-path-page .ds-course-row,
.ds-path-page .ds-project-row,
.ds-path-page .ds-outcome-row,
.ds-path-page .ds-apply-row {
  margin-top: 22px !important;
}

.ds-path-page .ds-num::after {
  bottom: -26px;
}

@media (max-width: 1280px) {
  .ds-path-page .ds-course-row {
    grid-template-columns: 1fr !important;
  }

  .ds-path-page .ds-tools-box {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .ds-path-page .ds-tools-box {
    grid-template-columns: 1fr;
  }

  .ds-path-page .ds-tools-box div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Phone alignment fixes */
@media (max-width: 760px) {
  .ds-path-page .ds-market-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .ds-path-page .ds-market-card {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  .ds-path-page .ds-market-card h3 {
    margin-bottom: 6px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 650 !important;
  }

  .ds-path-page .ds-market-card h3 b {
    font-size: 22px !important;
  }

  .ds-path-page .ds-market-card p {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .ds-path-page .ds-market-card small {
    font-size: 10px !important;
  }

  .ds-path-page .ds-market-card .ds-icon {
    width: 52px !important;
    height: 52px !important;
  }

  .ds-path-page .ds-market-card .ds-icon svg {
    width: 30px !important;
    height: 30px !important;
  }

  .ds-path-page .ds-future-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 18px !important;
    overflow: hidden;
  }

  .ds-path-page .ds-2030 {
    width: 100%;
  }

  .ds-path-page .ds-2030 h2 {
    font-size: 20px !important;
    line-height: 1.15 !important;
    margin-bottom: 6px !important;
  }

  .ds-path-page .ds-2030 b {
    font-size: 48px !important;
    line-height: 1 !important;
  }

  .ds-path-page .ds-2030 p {
    font-size: 15px !important;
    line-height: 1.35 !important;
    max-width: none !important;
  }

  .ds-path-page .ds-future-row article {
    display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: start !important;
    width: 100%;
    min-width: 0;
  }

  .ds-path-page .ds-future-row article span {
    width: 48px !important;
    height: 48px !important;
  }

  .ds-path-page .ds-future-row article span svg {
    width: 28px !important;
    height: 28px !important;
  }

  .ds-path-page .ds-future-row article div,
  .ds-path-page .ds-future-row h3,
  .ds-path-page .ds-future-row p {
    min-width: 0;
    max-width: none !important;
    overflow-wrap: anywhere;
  }

  .ds-path-page .ds-future-row h3 {
    margin: 0 0 5px !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
    font-weight: 650 !important;
  }

  .ds-path-page .ds-future-row p {
    font-size: 13px !important;
    line-height: 1.42 !important;
  }
}

/* Restore Data Science desktop/laptop layout; keep phone fixes mobile-only */
@media (min-width: 761px) {
  .ds-path-page .ds-hero-row {
    grid-template-columns: 560px 1fr !important;
    min-height: 350px !important;
  }

  .ds-path-page .ds-eyebrow {
    font-size: 26px !important;
    font-weight: 800 !important;
  }

  .ds-path-page .ds-hero-copy h1 {
    font-size: clamp(56px, 5vw, 86px) !important;
    font-weight: 800 !important;
    line-height: .93 !important;
  }

  .ds-path-page .ds-hero-copy h2 {
    font-size: 27px !important;
    font-weight: 800 !important;
  }

  .ds-path-page .ds-intro {
    width: 470px !important;
    max-width: 470px !important;
    font-size: 16px !important;
    line-height: 1.42 !important;
  }

  .ds-path-page .ds-market-row {
    grid-template-columns: 180px repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .ds-path-page .ds-market-card {
    grid-template-columns: 92px 1fr !important;
    min-height: 136px !important;
    padding: 16px !important;
  }

  .ds-path-page .ds-market-card h3,
  .ds-path-page .ds-future-row h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
  }

  .ds-path-page .ds-market-card h3 b {
    font-size: 27px !important;
  }

  .ds-path-page .ds-market-card p,
  .ds-path-page .ds-future-row p,
  .ds-path-page .ds-2030 p {
    font-size: 12px !important;
    line-height: 1.42 !important;
  }

  .ds-path-page .ds-icon {
    width: 74px !important;
    height: 74px !important;
  }

  .ds-path-page .ds-icon svg {
    width: 42px !important;
    height: 42px !important;
  }

  .ds-path-page .ds-future-row {
    grid-template-columns: 250px repeat(3, 1fr) !important;
    gap: 16px !important;
    min-height: 148px !important;
    padding: 16px 24px !important;
  }

  .ds-path-page .ds-future-row article {
    grid-template-columns: 78px 1fr !important;
    gap: 14px !important;
  }

  .ds-path-page .ds-future-row article span {
    width: 66px !important;
    height: 66px !important;
  }

  .ds-path-page .ds-future-row article span svg {
    width: 31px !important;
    height: 31px !important;
  }

  .ds-path-page .ds-course-row {
    grid-template-columns: 150px 115px 140px 1fr 300px !important;
    gap: 10px !important;
  }

  .ds-path-page .ds-tools-box {
    grid-column: auto !important;
    display: block !important;
    min-height: auto !important;
    padding: 12px !important;
  }

  .ds-path-page .ds-tools-box h3 {
    margin: 0 0 10px !important;
    font-size: 13px !important;
    white-space: normal !important;
  }

  .ds-path-page .ds-tools-box div {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    justify-content: stretch !important;
    gap: 10px 8px !important;
  }

  .ds-path-page .ds-tools-box span,
  .ds-path-page .ds-support span,
  .ds-path-page .ds-mini-card span {
    font-size: 12px !important;
    font-weight: 700 !important;
  }

  .ds-path-page .ds-flow b,
  .ds-path-page .ds-project-row h3,
  .ds-path-page .ds-outcome-row h3 {
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
  }

  .ds-path-page .ds-flow p,
  .ds-path-page .ds-project-row p,
  .ds-path-page .ds-outcome-row p {
    font-size: 12px !important;
    line-height: 1.42 !important;
  }

  .ds-path-page .ds-project-row {
    grid-template-columns: 120px repeat(4, 1fr) !important;
    gap: 10px !important;
  }

  .ds-path-page .ds-project-row article {
    grid-template-columns: 180px 1fr !important;
    gap: 12px !important;
    padding: 9px !important;
  }

  .ds-path-page .ds-outcome-row {
    grid-template-columns: 180px repeat(4, 1fr) 420px !important;
    gap: 10px !important;
  }

  .ds-path-page .ds-apply-row {
    grid-template-columns: 160px 1fr 360px !important;
    gap: 22px !important;
    padding: 22px 30px !important;
  }

  .ds-path-page .ds-apply-row p {
    font-size: 12px !important;
    line-height: 1.42 !important;
  }
}

/* Data Analyst evidence-led career report */
body.da-report-page {
  padding-top: 82px;
  background: #05070d;
  color: #f8fafc;
  font-family: Inter, Arial, sans-serif;
}

body.da-report-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  width: 100%;
  max-width: 100%;
}

.da-report {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 28px 0 48px;
}

.da-hero,
.da-section,
.da-cta {
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 85% 5%, rgba(91, 33, 217, .18), transparent 26%),
    linear-gradient(180deg, rgba(15, 23, 42, .88), rgba(2, 6, 23, .92));
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
}

.da-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: end;
  padding: 34px;
}

.da-kicker,
.da-section-head span,
.da-cta span {
  color: #a78bfa;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.da-hero h1 {
  max-width: 820px;
  margin: 12px 0 14px;
  color: #ffffff;
  font-size: clamp(36px, 4.1vw, 62px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.da-hero p,
.da-section-head p,
.da-note,
.da-cta p {
  margin: 0;
  color: #dbe4f0;
  font-size: 16px;
  line-height: 1.65;
}

.da-hero aside {
  padding: 20px;
  border: 1px solid rgba(167, 139, 250, .32);
  border-radius: 10px;
  background: rgba(15, 23, 42, .72);
}

.da-hero aside b,
.da-hero aside strong,
.da-hero aside span {
  display: block;
}

.da-hero aside b {
  color: #c4b5fd;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.da-hero aside strong {
  margin: 8px 0;
  color: #ffffff;
  font-size: 25px;
}

.da-hero aside span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}

.da-section {
  margin-top: 24px;
  padding: 28px;
}

.da-section-head {
  margin-bottom: 20px;
}

.da-section-head h2 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: 0;
}

.da-table-card {
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 8px;
  background: rgba(2, 6, 23, .55);
}

.da-table-card table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
}

.da-table-card th,
.da-table-card td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, .13);
  color: #f8fafc;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.55;
}

.da-table-card th {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}

.da-table-card tr:last-child td {
  border-bottom: 0;
}

.da-table-card td:nth-child(2) {
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}

.da-report a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.da-report a::after {
  content: " ↗";
  font-size: .9em;
}

.da-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid #7c3aed;
  border-radius: 0 8px 8px 0;
  background: rgba(124, 58, 237, .12);
}

.da-city-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}

.da-bars {
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 8px;
  background: rgba(2, 6, 23, .55);
}

.da-bars h3,
.da-skill-map h3,
.da-growth-grid h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 650;
}

.da-bars div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 58px;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.da-bars b,
.da-bars em {
  color: #f8fafc;
  font-size: 13px;
  font-style: normal;
}

.da-bars span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6d28d9, #38bdf8);
  width: var(--w);
  min-width: 6px;
}

.da-skill-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 22px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(2, 6, 23, .55);
}

.da-skill-map h3 {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, .13);
}

.da-skill-map div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, .1);
}

.da-skill-map div:nth-child(odd) {
  border-right: 1px solid rgba(148, 163, 184, .1);
}

.da-skill-map span,
.da-skill-map b,
.da-chip-grid span,
.da-ai-list span,
.da-growth-grid li,
.da-growth-grid p {
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.5;
}

.da-skill-map b {
  color: #c4b5fd;
  white-space: nowrap;
}

.da-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.da-chip-grid span,
.da-ai-list span {
  padding: 11px 14px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 999px;
  background: rgba(15, 23, 42, .72);
}

.da-growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.da-growth-grid ol {
  margin: 0;
  padding: 18px 18px 18px 42px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 8px;
  background: rgba(2, 6, 23, .55);
}

.da-growth-grid li + li {
  margin-top: 9px;
}

.da-growth-grid > div {
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 8px;
  background: rgba(2, 6, 23, .55);
}

.da-growth-grid a {
  display: inline-block;
  margin: 10px 16px 0 0;
}

.da-ai-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.da-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 94% 42%, rgba(255, 111, 35, .25), transparent 24%),
    linear-gradient(105deg, #35108e, #111827 54%, #ff6f23);
}

.da-cta h2 {
  margin: 8px 0;
  color: #ffffff;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.1;
}

.da-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  border-radius: 8px;
  background: #ffffff;
  color: #071039;
  text-decoration: none;
}

.da-cta a::after {
  content: "";
}

@media (max-width: 900px) {
  body.da-report-page {
    padding-top: 92px;
  }

  .da-report {
    width: min(100% - 24px, 1180px);
    padding-top: 18px;
  }

  .da-hero,
  .da-city-layout,
  .da-growth-grid,
  .da-ai-list,
  .da-cta {
    grid-template-columns: 1fr;
  }

  .da-hero,
  .da-section,
  .da-cta {
    padding: 20px;
  }

  .da-hero h1 {
    font-size: 34px;
  }

  .da-skill-map {
    grid-template-columns: 1fr;
  }

  .da-skill-map div:nth-child(odd) {
    border-right: 0;
  }
}

/* Data Analyst final arrangement: animated background and calmer typography */
body.da-report-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(37, 99, 235, .28), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255, 111, 35, .18), transparent 24%),
    radial-gradient(circle at 48% 86%, rgba(124, 58, 237, .22), transparent 30%),
    #060b16 !important;
}

body.da-report-page::before,
body.da-report-page::after {
  content: "";
  position: fixed;
  inset: -22%;
  z-index: -2;
  pointer-events: none;
}

body.da-report-page::before {
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(56, 189, 248, .10) 28%, transparent 42% 100%),
    linear-gradient(245deg, transparent 0 36%, rgba(255, 111, 35, .09) 47%, transparent 62% 100%);
  animation: daAuroraMove 14s ease-in-out infinite alternate;
}

body.da-report-page::after {
  z-index: -1;
  opacity: .34;
  background-image:
    linear-gradient(rgba(148, 163, 184, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .10) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0, transparent 68%);
  animation: daGridDrift 18s linear infinite;
}

@keyframes daAuroraMove {
  0% { transform: translate3d(-3%, -2%, 0) rotate(0deg) scale(1); }
  100% { transform: translate3d(4%, 3%, 0) rotate(4deg) scale(1.06); }
}

@keyframes daGridDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 54px 54px, 54px 54px; }
}

.da-report-page .da-report {
  width: min(100% - 44px, 1240px);
  padding-top: 34px;
}

.da-report-page .da-hero,
.da-report-page .da-section,
.da-report-page .da-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, .20);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .76), rgba(2, 6, 23, .84)) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
}

.da-report-page .da-hero::before,
.da-report-page .da-section::before,
.da-report-page .da-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 90% 0%, rgba(59, 130, 246, .16), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(255, 111, 35, .10), transparent 30%);
}

.da-report-page .da-hero > *,
.da-report-page .da-section > *,
.da-report-page .da-cta > * {
  position: relative;
  z-index: 1;
}

.da-report-page .da-hero {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
}

.da-report-page .da-kicker,
.da-report-page .da-cta span {
  display: inline-flex;
  width: max-content;
  padding: 8px 14px;
  border: 1px solid rgba(167, 139, 250, .30);
  border-radius: 999px;
  color: #c4b5fd;
  background: rgba(124, 58, 237, .14);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.da-report-page .da-section-head span {
  display: none !important;
}

.da-report-page .da-hero h1 {
  max-width: 880px;
  margin: 16px 0 16px;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(35px, 4vw, 56px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
}

.da-report-page .da-section-head h2,
.da-report-page .da-cta h2 {
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.da-report-page .da-hero p,
.da-report-page .da-section-head p,
.da-report-page .da-note,
.da-report-page .da-cta p {
  max-width: 880px;
  color: #d7e2f2;
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 400;
}

.da-report-page .da-section {
  margin-top: 26px;
  padding: clamp(24px, 3vw, 36px);
}

.da-report-page .da-section-head {
  max-width: 940px;
  margin-bottom: 22px;
}

.da-report-page .da-table-card,
.da-report-page .da-bars,
.da-report-page .da-skill-map,
.da-report-page .da-growth-grid ol,
.da-report-page .da-growth-grid > div {
  border-color: rgba(203, 213, 225, .16);
  background: rgba(2, 6, 23, .42);
  backdrop-filter: blur(8px);
}

.da-report-page .da-table-card th,
.da-report-page .da-table-card td {
  font-size: 14.5px;
}

.da-report-page .da-table-card th {
  color: #cbd5e1;
  font-weight: 700;
}

.da-report-page .da-table-card td:nth-child(2) {
  color: #93c5fd;
}

.da-report-page .da-report a {
  color: #fde68a;
  text-decoration-thickness: 1px;
}

.da-report-page .da-bars span {
  background: linear-gradient(90deg, #ff6f23, #8b5cf6, #38bdf8);
  box-shadow: 0 0 16px rgba(56, 189, 248, .20);
}

.da-report-page .da-chip-grid span,
.da-report-page .da-ai-list span {
  border-radius: 10px;
  border-color: rgba(203, 213, 225, .16);
  background: rgba(15, 23, 42, .58);
}

.da-report-page .da-cta {
  background:
    radial-gradient(circle at 90% 35%, rgba(255, 111, 35, .24), transparent 30%),
    linear-gradient(110deg, rgba(53, 16, 142, .88), rgba(15, 23, 42, .84) 52%, rgba(255, 111, 35, .78)) !important;
}

@media (max-width: 900px) {
  .da-report-page .da-report {
    width: min(100% - 24px, 1240px);
  }

  .da-report-page .da-hero {
    grid-template-columns: 1fr;
  }

  .da-report-page .da-hero h1 {
    font-size: 32px;
  }
}

/* Data Analyst light full-width layout fix */
body.da-report-page {
  background:
    radial-gradient(circle at 8% 8%, rgba(91, 33, 217, .10), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(255, 111, 35, .10), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 48%, #ffffff 100%) !important;
  color: #071039 !important;
}

body.da-report-page::before,
body.da-report-page::after {
  opacity: .35;
}

body.da-report-page::before {
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(37, 99, 235, .10) 28%, transparent 42% 100%),
    linear-gradient(245deg, transparent 0 36%, rgba(255, 111, 35, .08) 47%, transparent 62% 100%) !important;
}

body.da-report-page::after {
  background-image:
    linear-gradient(rgba(37, 99, 235, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .07) 1px, transparent 1px) !important;
  mask-image: radial-gradient(circle at 50% 10%, #000 0, transparent 72%);
}

.da-report-page .da-report {
  width: 100% !important;
  max-width: none !important;
  padding: 28px 20px 48px !important;
}

.da-report-page .da-hero,
.da-report-page .da-section,
.da-report-page .da-cta {
  width: 100% !important;
  max-width: none !important;
  border-color: rgba(30, 64, 175, .14) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 251, 255, .96)) !important;
  color: #071039 !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255, 255, 255, .8) !important;
}

.da-report-page .da-hero {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px) !important;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: auto;
  padding: clamp(28px, 4vw, 52px) !important;
}

.da-report-page .da-hero h1 {
  max-width: 900px !important;
  color: #071039 !important;
  font-size: clamp(34px, 3.35vw, 56px) !important;
  line-height: 1.08 !important;
  white-space: normal !important;
  overflow-wrap: normal;
}

.da-report-page .da-hero p,
.da-report-page .da-section-head p,
.da-report-page .da-note,
.da-report-page .da-cta p,
.da-report-page .da-growth-grid p,
.da-report-page .da-growth-grid li,
.da-report-page .da-skill-map span,
.da-report-page .da-skill-map b,
.da-report-page .da-chip-grid span,
.da-report-page .da-ai-list span {
  color: #24324f !important;
}

.da-report-page .da-section-head h2,
.da-report-page .da-cta h2,
.da-report-page .da-bars h3,
.da-report-page .da-skill-map h3,
.da-report-page .da-growth-grid h3 {
  color: #071039 !important;
}

.da-report-page .da-hero aside,
.da-report-page .da-table-card,
.da-report-page .da-bars,
.da-report-page .da-skill-map,
.da-report-page .da-growth-grid ol,
.da-report-page .da-growth-grid > div {
  border-color: rgba(30, 64, 175, .14) !important;
  background: rgba(255, 255, 255, .76) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.da-report-page .da-hero aside strong,
.da-report-page .da-table-card th,
.da-report-page .da-table-card td {
  color: #071039 !important;
}

.da-report-page .da-hero aside span,
.da-report-page .da-table-card th {
  color: #475569 !important;
}

.da-report-page .da-table-card td:nth-child(2) {
  color: #1d4ed8 !important;
}

.da-report-page .da-report a {
  color: #4b19d1 !important;
}

.da-report-page .da-note {
  background: rgba(91, 33, 217, .08) !important;
}

.da-report-page .da-chip-grid span,
.da-report-page .da-ai-list span {
  background: rgba(255,255,255,.82) !important;
}

.da-report-page .da-cta {
  background:
    radial-gradient(circle at 92% 40%, rgba(255, 111, 35, .16), transparent 30%),
    linear-gradient(110deg, rgba(91, 33, 217, .10), rgba(255,255,255,.96) 52%, rgba(255, 111, 35, .12)) !important;
}

@media (max-width: 900px) {
  .da-report-page .da-report {
    padding: 18px 12px 36px !important;
  }

  .da-report-page .da-hero {
    grid-template-columns: 1fr !important;
  }

  .da-report-page .da-hero h1 {
    font-size: 32px !important;
  }
}

/* Data Analyst graph and animated background polish */
body.da-report-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(91, 33, 217, .16), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(56, 189, 248, .18), transparent 24%),
    radial-gradient(circle at 72% 84%, rgba(255, 111, 35, .13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 48%, #fff7f1 100%) !important;
}

body.da-report-page::before {
  opacity: .72;
  background:
    conic-gradient(from 140deg at 18% 22%, rgba(91, 33, 217, .16), transparent 22%, rgba(56, 189, 248, .12), transparent 58%, rgba(255, 111, 35, .11), transparent 78%),
    linear-gradient(110deg, transparent 0 22%, rgba(37, 99, 235, .08) 34%, transparent 46% 100%) !important;
  animation: daAuroraMove 12s ease-in-out infinite alternate !important;
}

body.da-report-page::after {
  opacity: .24;
  background-image:
    linear-gradient(rgba(37, 99, 235, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .10) 1px, transparent 1px),
    radial-gradient(circle, rgba(91, 33, 217, .18) 1px, transparent 1.6px) !important;
  background-size: 58px 58px, 58px 58px, 22px 22px !important;
  mask-image: radial-gradient(circle at 50% 35%, #000 0, transparent 76%);
}

.da-report-page .da-bars {
  padding: 24px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.94)) !important;
}

.da-report-page .da-bars h3 {
  margin-bottom: 24px;
}

.da-report-page .da-bars div {
  grid-template-columns: 136px minmax(160px, 1fr) 64px !important;
  gap: 16px !important;
  margin-top: 16px !important;
}

.da-report-page .da-bars b,
.da-report-page .da-bars em {
  color: #071039 !important;
  font-size: 14px !important;
  font-weight: 650;
}

.da-report-page .da-bars em {
  color: #1d4ed8 !important;
  text-align: right;
}

.da-report-page .da-bars span {
  position: relative;
  height: 16px !important;
  min-width: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6f23, #7c3aed 58%, #38bdf8) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .16) !important;
}

.da-report-page .da-bars span::before {
  content: "";
  position: absolute;
  inset: -10px 0;
  z-index: -1;
  border-bottom: 1px dashed rgba(15, 23, 42, .10);
}

.da-report-page .da-bars::after {
  content: "0        1K        2K        3K        4K        5K";
  display: block;
  margin: 18px 64px 0 152px;
  color: #64748b;
  font-size: 12px;
  letter-spacing: .08em;
  white-space: pre;
}

@media (max-width: 760px) {
  .da-report-page .da-bars div {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .da-report-page .da-bars em {
    text-align: left;
  }

  .da-report-page .da-bars::after {
    display: none;
  }
}

/* Data Analyst heading scale down */
.da-report-page .da-hero h1 {
  font-size: clamp(20px, 1.8vw, 28px) !important;
  font-weight: 500 !important;
  line-height: 1.16 !important;
}

.da-report-page .da-section-head h2,
.da-report-page .da-cta h2 {
  font-size: clamp(17px, 1.15vw, 22px) !important;
  font-weight: 500 !important;
  line-height: 1.22 !important;
}

.da-report-page .da-bars h3,
.da-report-page .da-skill-map h3,
.da-report-page .da-growth-grid h3 {
  font-size: 15px !important;
  font-weight: 500 !important;
}

.da-report-page .da-hero p,
.da-report-page .da-section-head p,
.da-report-page .da-note,
.da-report-page .da-cta p {
  font-size: 14.3px !important;
  line-height: 1.5 !important;
}

.da-report-page .da-hero aside span {
  font-size: 16.9px !important;
  line-height: 1.5 !important;
}

/* Data Analyst supporting copy in proper sentence case */
.da-report-page .da-hero p,
.da-report-page .da-section-head p,
.da-report-page .da-note,
.da-report-page .da-cta p,
.da-report-page .da-growth-grid p,
.da-report-page .da-growth-grid li {
  text-transform: none !important;
  letter-spacing: 0 !important;
  word-spacing: normal !important;
  font-weight: 400 !important;
}

/* Data Analyst labels as plain bold text */
.da-report-page .da-kicker,
.da-report-page .da-cta span {
  display: block !important;
  width: auto !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #35106f !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

/* Data Analyst page alignment with header logo */
.da-report-page .da-report {
  width: min(100%, 1660px) !important;
  margin-inline: auto !important;
  padding-inline: clamp(70px, 6.5vw, 124px) !important;
}

.da-report-page .da-hero,
.da-report-page .da-section,
.da-report-page .da-cta {
  border-radius: 16px !important;
}

/* Data Analyst hero video monitor */
.da-report-page .da-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px) !important;
}

.da-report-page .da-hero-monitor {
  position: relative;
  justify-self: end;
  width: min(100%, 540px);
  padding: 14px 14px 24px;
  border: 1px solid rgba(63, 16, 111, .32);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(235,241,255,.35)),
    linear-gradient(135deg, #101833, #05091b 62%, #1b1240);
  box-shadow:
    0 24px 52px rgba(15, 23, 42, .20),
    0 0 0 1px rgba(255,255,255,.42) inset;
}

.da-report-page .da-hero-monitor::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 22px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  pointer-events: none;
  z-index: 2;
}

.da-report-page .da-hero-monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 180px;
  height: 16px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #111a36, #050b1f);
  box-shadow: 0 16px 24px rgba(15, 23, 42, .18);
  transform: translateX(-50%);
}

.da-report-page .da-hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(148, 163, 184, .40);
  border-radius: 10px;
  background: #020617;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset;
}

@media (max-width: 900px) {
  .da-report-page .da-report {
    padding-inline: 16px !important;
  }

  .da-report-page .da-hero {
    grid-template-columns: 1fr !important;
  }

  .da-report-page .da-hero-monitor {
    justify-self: stretch;
    width: 100%;
    padding: 10px 10px 18px;
    border-radius: 14px;
  }

  .da-report-page .da-hero h1 {
    font-size: 24px !important;
  }
}

/* Data Analyst course page rebuilt from supplied reference screens */
body.da-course-page {
  margin: 0;
  padding-top: 74px;
  background:
    radial-gradient(circle at 0 12%, rgba(109, 40, 217, .10), transparent 28%),
    radial-gradient(circle at 96% 20%, rgba(59, 130, 246, .08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 42%, #ffffff 100%);
  color: #101942;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
}

.da-course-page * {
  box-sizing: border-box;
}

.da-course-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 950;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 74px;
  padding: 0 clamp(22px, 4.4vw, 62px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #edf0fb;
  box-shadow: 0 12px 30px rgba(70, 45, 147, .05);
  backdrop-filter: blur(12px);
}

.da-course-logo img {
  width: 132px;
  height: auto;
  display: block;
}

.da-course-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.da-course-header a {
  color: #16204a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.da-course-apply,
.da-hero-actions a:first-child,
.da-fit a,
.da-apply-card a:first-of-type {
  color: #ffffff !important;
  background: linear-gradient(90deg, #5420d8, #731ee7);
  box-shadow: 0 10px 22px rgba(84, 32, 216, .18);
}

.da-course-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  border-radius: 5px;
}

.da-course {
  width: min(100% - 56px, 1280px);
  margin: 0 auto;
  padding: 24px 0 46px;
}

.da-course-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  min-height: 430px;
  gap: 34px;
  padding: 36px 0 28px;
}

.da-breadcrumb {
  margin: 0 0 18px;
  color: #58628c;
  font-size: 11px;
}

.da-hero-copy h1 {
  max-width: 560px;
  margin: 0 0 14px;
  color: #101942;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.da-hero-copy p:not(.da-breadcrumb) {
  max-width: 470px;
  margin: 0;
  color: #344064;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}

.da-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.da-hero-actions a,
.da-fit a,
.da-apply-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d7d9f8;
  border-radius: 5px;
  color: #5420d8;
  background: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.da-hero-points,
.da-support-strip,
.da-need-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.da-hero-points span,
.da-support-strip span,
.da-need-strip span {
  color: #58628c;
  font-size: 11px;
  font-weight: 500;
}

.da-hero-points span::before,
.da-support-strip span::before,
.da-need-strip span::before,
.da-support-compare article:first-child p::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #7c3aed;
}

.da-hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 0 0 0 90px;
  background:
    radial-gradient(circle at 30% 28%, rgba(124, 58, 237, .08), transparent 34%),
    linear-gradient(135deg, #f8faff, #edf4ff);
  overflow: hidden;
}

.da-hero-media video {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) brightness(1.04);
}

.da-skill-card {
  position: absolute;
  left: 36px;
  top: 88px;
  display: grid;
  gap: 7px;
  width: 170px;
  padding: 16px;
  border: 1px solid #e4e7ff;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 46px rgba(76, 29, 149, .12);
}

.da-skill-card b,
.da-section-title h2,
.da-process h3,
.da-dayline h3,
.da-audience-grid h3,
.da-industry-card b,
.da-skill-tags b,
.da-skill-list h3,
.da-roadmap-grid h3,
.da-project-grid h3,
.da-support-compare h3,
.da-outcome-layout h3 {
  color: #101942;
  font-weight: 600;
}

.da-skill-card b {
  font-size: 12px;
}

.da-skill-card span {
  color: #1f7a43;
  font-size: 11px;
}

.da-skill-card span::before {
  content: "✓";
  margin-right: 6px;
}

.da-skill-card a,
.da-section-title a,
.da-skill-tags a,
.da-city-chart a {
  color: #5420d8;
  font-weight: 600;
  text-decoration: none;
}

.da-flow-tabs {
  position: sticky;
  top: 74px;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 0 0 34px;
  padding: 12px 14px;
  border: 1px solid #e3e7fb;
  border-radius: 9px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 28px rgba(65, 52, 130, .08);
  backdrop-filter: blur(12px);
}

.da-flow-tabs a {
  position: relative;
  padding: 10px 12px;
  color: #526085;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.da-flow-tabs a.is-active {
  color: #5420d8;
}

.da-flow-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -12px;
  height: 3px;
  border-radius: 999px;
  background: #6d28d9;
}

.da-panel {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid #e3e7fb;
  border-radius: 9px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 26px rgba(85, 72, 148, .04);
}

.da-section-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.da-section-title > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #6d28d9;
  background: #efe8ff;
  font-size: 12px;
  font-weight: 700;
}

.da-section-title h2 {
  margin: 0 0 6px;
  font-family: Poppins, Inter, Arial, sans-serif;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.16;
}

.da-section-title p {
  margin: 0 0 8px;
  color: #526085;
  font-size: 12px;
  line-height: 1.45;
}

.da-understand,
.da-day,
.da-career-map,
.da-eligible,
.da-skills,
.da-roadmap,
.da-projects,
.da-experience,
.da-outcomes {
  display: grid;
  gap: 22px;
}

.da-understand {
  grid-template-columns: 310px 1fr;
}

.da-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
}

.da-process article,
.da-audience-grid article,
.da-roadmap-grid article,
.da-project-grid article {
  padding: 18px;
  border: 1px solid #e8ebfb;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fafbff);
}

.da-process b {
  color: #526085;
  font-size: 11px;
}

.da-process h3,
.da-dayline h3,
.da-audience-grid h3,
.da-skill-list h3,
.da-roadmap-grid h3,
.da-project-grid h3,
.da-outcome-layout h3 {
  margin: 4px 0 8px;
  font-size: 14px;
  line-height: 1.2;
}

.da-process p,
.da-dayline p,
.da-audience-grid p,
.da-skill-list p,
.da-roadmap-grid p,
.da-project-grid p,
.da-project-grid span,
.da-outcome-layout p {
  margin: 0;
  color: #4b587b;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
}

.da-example-strip,
.da-need-strip,
.da-skill-tags,
.da-support-strip {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border-radius: 8px;
  background: #f5f1ff;
}

.da-example-strip {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1.2fr);
  gap: 16px;
}

.da-example-strip b,
.da-example-strip span {
  color: #344064;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
}

.da-dayline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.da-dayline article {
  position: relative;
  padding: 18px 14px;
  text-align: center;
}

.da-dayline article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 39px;
  right: -11px;
  width: 24px;
  height: 1px;
  background: #c7cdf6;
}

.da-dayline b {
  display: block;
  margin-bottom: 10px;
  color: #6d28d9;
  font-size: 11px;
}

.da-map {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.da-start,
.da-role-grid span {
  min-width: 210px;
  padding: 10px 14px;
  border: 1px solid #bfaeff;
  border-radius: 4px;
  color: #5420d8;
  background: #fbfaff;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}

.da-role-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 12px;
}

.da-muted-center {
  margin: 0;
  color: #617092;
  font-size: 11px;
  text-align: center;
}

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

.da-need-strip {
  align-items: center;
}

.da-need-strip b {
  margin-right: 12px;
  color: #5420d8;
  font-size: 12px;
  font-weight: 600;
}

.da-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
  align-items: stretch;
}

.da-fit {
  display: grid;
  gap: 12px;
  align-content: start;
}

.da-fit label {
  color: #4b587b;
  font-size: 12px;
  line-height: 1.4;
}

.da-fit input {
  margin-right: 8px;
  accent-color: #6d28d9;
}

.da-fit a {
  margin-top: 12px;
  width: 124px;
}

.da-demand {
  display: grid;
  gap: 16px;
}

.da-demand-layout {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 16px;
}

.da-city-chart,
.da-industry-card {
  padding: 16px;
  border: 1px solid #e6e9fb;
  border-radius: 8px;
  background: #ffffff;
}

.da-city-chart {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.da-city-chart > b {
  grid-column: 1 / -1;
  color: #5420d8;
  font-size: 12px;
  font-weight: 600;
}

.da-city-chart a {
  display: grid;
  grid-template-columns: 92px minmax(110px, 1fr) 54px 76px;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #344064;
  font-size: 12px;
  box-shadow: none;
}

.da-city-chart i {
  display: block;
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(111, 155, 136, .16);
  overflow: hidden;
}

.da-city-chart i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, #8fb8a5, #5d967c);
}

.da-city-chart em {
  justify-self: end;
  color: #6f9b88;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.da-city-chart strong {
  justify-self: end;
  grid-column: auto;
  padding: 6px 9px;
  border-radius: 999px;
  color: #5420d8;
  background: rgba(241, 236, 255, .9);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.da-city-chart a span {
  color: #182346;
  font-size: 13px;
  font-weight: 700;
}

.da-industry-card {
  display: grid;
  gap: 10px;
}

.da-industry-card span,
.da-skill-tags span {
  color: #4b587b;
  font-size: 11px;
}

.da-skill-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.da-skill-tags span {
  padding: 7px 10px;
  border-radius: 4px;
  color: #416bd8;
  background: #edf3ff;
  font-weight: 500;
}

.da-skills,
.da-roadmap,
.da-projects,
.da-experience,
.da-outcomes {
  grid-template-columns: 250px 1fr;
}

.da-skill-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}

.da-skill-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.da-skill-list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.da-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.da-roadmap-grid article {
  display: grid;
  gap: 7px;
  padding: 16px 14px;
}

.da-roadmap-grid b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #6d28d9;
  background: #ece5ff;
  font-size: 13px;
  font-weight: 700;
}

.da-roadmap-grid span {
  color: #4b587b;
  font-size: 10.5px;
  line-height: 1.35;
}

.da-project-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.da-project-grid article {
  padding: 12px;
}

.da-project-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.da-support-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.da-support-compare article {
  padding: 18px;
  border-radius: 8px;
}

.da-support-compare article:first-child {
  background: #f0fff7;
}

.da-support-compare article:last-child {
  background: #fff4f7;
}

.da-support-compare article:last-child p::before {
  content: "×";
  margin-right: 8px;
  color: #d94668;
}

.da-outcome-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 18px;
}

.da-outcome-layout article {
  padding: 20px;
  border: 1px solid #e8ebfb;
  border-radius: 8px;
  background: #ffffff;
}

.da-apply-card {
  background: linear-gradient(135deg, #f3ecff, #ffffff) !important;
}

.da-apply-card a {
  display: flex;
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 980px) {
  .da-course-header {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 68px;
    padding: 12px 18px;
  }

  .da-course-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
  }

  body.da-course-page {
    padding-top: 112px;
  }

  .da-course {
    width: min(100% - 24px, 1280px);
    padding-top: 14px;
  }

  .da-course-hero,
  .da-understand,
  .da-split,
  .da-skills,
  .da-roadmap,
  .da-projects,
  .da-experience,
  .da-outcomes,
  .da-demand-layout {
    grid-template-columns: 1fr;
  }

  .da-course-hero {
    gap: 18px;
    min-height: auto;
  }

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

  .da-hero-media {
    min-height: 250px;
    border-radius: 14px;
  }

  .da-hero-media video {
    height: 260px;
  }

  .da-skill-card {
    left: 14px;
    top: 14px;
    width: 150px;
    padding: 12px;
  }

  .da-flow-tabs {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .da-process,
  .da-dayline,
  .da-audience-grid,
  .da-role-grid,
  .da-roadmap-grid,
  .da-project-grid,
  .da-outcome-layout,
  .da-support-compare {
    grid-template-columns: 1fr;
  }

  .da-example-strip {
    grid-template-columns: 1fr;
  }
}

/* Final Data Science desktop course/tools and projects alignment */
@media (min-width: 761px) {
  .ds-path-page .ds-course-row {
    grid-template-columns: 145px 110px 130px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .ds-path-page .ds-tools-box {
    grid-column: 2 / -1 !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    min-height: 54px !important;
    padding: 10px 16px !important;
  }

  .ds-path-page .ds-tools-box h3 {
    margin: 0 !important;
    white-space: nowrap !important;
  }

  .ds-path-page .ds-tools-box div {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
  }

  .ds-path-page .ds-tools-box span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    white-space: nowrap !important;
  }

  .ds-path-page .ds-project-row {
    grid-template-columns: 120px repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: stretch !important;
  }

  .ds-path-page .ds-project-row article {
    grid-template-columns: 170px minmax(0, 1fr) !important;
    min-height: 100px !important;
    padding: 8px !important;
  }

  .ds-path-page .ds-project-row img {
    height: 84px !important;
  }

  .ds-path-page .ds-project-row p {
    max-width: none !important;
  }
}

/* Data Science heading size and weight polish */
.ds-path-page .ds-hero-copy h1 {
  font-size: clamp(26px, 2.4vw, 39px) !important;
  font-weight: 600 !important;
  line-height: 1.02 !important;
}

.ds-path-page .ds-hero-copy h2 {
  font-size: clamp(20px, 1.7vw, 26px) !important;
  font-weight: 600 !important;
}

.ds-path-page .ds-eyebrow,
.ds-path-page .ds-market-row > h2,
.ds-path-page .ds-course-row > h2,
.ds-path-page .ds-project-row > h2,
.ds-path-page .ds-outcome-row > h2,
.ds-path-page .ds-2030 h2 {
  font-size: clamp(18px, 1.35vw, 23px) !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
}

.ds-path-page .ds-market-card h3,
.ds-path-page .ds-future-row h3,
.ds-path-page .ds-flow b,
.ds-path-page .ds-project-row h3,
.ds-path-page .ds-outcome-row h3,
.ds-path-page .ds-tools-box h3 {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.ds-path-page .ds-market-card h3 b {
  font-size: 21px !important;
  font-weight: 600 !important;
}

/* Data Analyst first screen tuned to supplied reference image */
@media (min-width: 981px) {
  .da-course-page {
    padding-top: 68px;
    background:
      radial-gradient(circle at 12% 84px, rgba(109, 40, 217, .09), transparent 24%),
      radial-gradient(circle at 83% 140px, rgba(59, 130, 246, .09), transparent 26%),
      linear-gradient(180deg, #ffffff 0%, #fbfcff 36%, #ffffff 100%);
  }

  .da-course-header {
    height: 68px;
    padding: 0 clamp(38px, 5vw, 72px);
    gap: 34px;
    border-bottom-color: #eef1fb;
    box-shadow: none;
  }

  .da-course-logo img {
    width: 120px;
  }

  .da-course-header nav {
    gap: 30px;
  }

  .da-course-header a {
    font-size: 11px;
    font-weight: 500;
  }

  .da-course-apply {
    min-width: 86px;
    min-height: 34px;
    border-radius: 4px;
  }

  .da-course {
    width: min(100% - 72px, 1180px);
    padding: 18px 0 42px;
  }

  .da-course-hero {
    position: relative;
    grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr);
    min-height: 390px;
    gap: 28px;
    padding: 30px 0 14px;
    overflow: hidden;
  }

  .da-course-hero::before {
    content: "";
    position: absolute;
    left: -9%;
    bottom: -24%;
    width: 58%;
    height: 52%;
    border-radius: 0 100% 0 0;
    background: linear-gradient(45deg, rgba(109, 40, 217, .10), rgba(109, 40, 217, 0));
    pointer-events: none;
  }

  .da-hero-copy {
    position: relative;
    z-index: 2;
  }

  .da-breadcrumb {
    margin-bottom: 16px;
    font-size: 10px;
    color: #69739a;
  }

  .da-hero-copy h1 {
    max-width: 500px;
    margin-bottom: 12px;
    font-size: clamp(32px, 3.35vw, 46px);
    font-weight: 600;
    line-height: 1.08;
  }

  .da-hero-copy p:not(.da-breadcrumb) {
    max-width: 410px;
    font-size: 12px;
    line-height: 1.45;
  }

  .da-hero-actions {
    gap: 14px;
    margin-top: 24px;
  }

  .da-hero-actions a {
    min-width: 118px;
    min-height: 38px;
    padding: 0 16px;
    font-size: 11px;
    border-radius: 4px;
  }

  .da-hero-points {
    gap: 18px;
    margin-top: 22px;
  }

  .da-hero-points span {
    font-size: 10px;
  }

  .da-hero-media {
    min-height: 330px;
    border-radius: 0;
    background: linear-gradient(135deg, #ffffff, #eef5ff);
  }

  .da-hero-media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 34%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .72) 44%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }

  .da-hero-media video {
    height: 330px;
    object-position: center;
    filter: saturate(.98) brightness(1.06);
  }

  .da-skill-card {
    z-index: 2;
    left: 36px;
    top: 72px;
    width: 158px;
    gap: 6px;
    padding: 14px 15px;
    border-radius: 7px;
    box-shadow: 0 18px 40px rgba(76, 29, 149, .12);
  }

  .da-skill-card b,
  .da-skill-card span,
  .da-skill-card a {
    font-size: 10px;
  }

  .da-flow-tabs {
    top: 68px;
    margin: 0 0 28px;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(70, 45, 147, .10);
  }

  .da-flow-tabs a {
    padding: 9px 10px;
    font-size: 10px;
    font-weight: 500;
  }

  .da-flow-tabs a.is-active::after {
    bottom: -10px;
  }

  .da-understand {
    grid-template-columns: 300px 1fr;
    gap: 24px;
    margin-top: 0;
    padding: 18px 8px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .da-understand .da-section-title {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
  }

  .da-understand .da-section-title > span {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .da-understand .da-section-title h2 {
    max-width: 260px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.18;
  }

  .da-understand .da-section-title p,
  .da-understand .da-section-title a {
    max-width: 250px;
    font-size: 11px;
    line-height: 1.45;
  }

  .da-process {
    gap: 50px;
  }

  .da-process article {
    position: relative;
    min-height: 154px;
    padding: 20px 18px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #fbfbff);
    box-shadow: 0 10px 26px rgba(76, 29, 149, .04);
  }

  .da-process article:not(:last-child)::after {
    content: "->";
    position: absolute;
    top: 50%;
    right: -33px;
    color: #8d94ad;
    font-size: 20px;
    font-weight: 400;
    transform: translateY(-50%);
  }

  .da-process b {
    color: #5420d8;
    font-size: 10px;
  }

  .da-process h3 {
    font-size: 12px;
    font-weight: 600;
  }

  .da-process p {
    font-size: 10px;
    line-height: 1.45;
  }

  .da-example-strip {
    margin-top: 0;
    grid-template-columns: 1.05fr repeat(4, 1fr);
    gap: 18px;
    padding: 14px 18px;
    background: linear-gradient(90deg, #f6f1ff, #fbf9ff);
  }

  .da-example-strip b,
  .da-example-strip span {
    font-size: 10px;
    font-weight: 500;
  }
}

/* Restore Data Analyst navbar to the previous approved version */
@media (min-width: 981px) {
  .da-course-page {
    padding-top: 74px;
  }

  .da-course-header {
    height: 74px;
    padding: 0 clamp(22px, 4.4vw, 62px);
    gap: 28px;
    border-bottom-color: #edf0fb;
    box-shadow: 0 12px 30px rgba(70, 45, 147, .05);
  }

  .da-course-logo img {
    width: 132px;
  }

  .da-course-header nav {
    gap: clamp(18px, 2.2vw, 34px);
  }

  .da-course-header a {
    font-size: 12px;
    font-weight: 500;
  }

  .da-course-apply {
    min-width: 92px;
    min-height: 38px;
    border-radius: 5px;
  }

  .da-flow-tabs {
    top: 74px;
  }
}

/* Data Analyst hero heading: smaller and no shadow */
@media (min-width: 981px) {
  .da-hero-copy h1 {
    max-width: 430px !important;
    font-size: clamp(20px, 2vw, 28px) !important;
    font-weight: 500 !important;
    line-height: 1.18 !important;
    text-shadow: none !important;
    filter: none !important;
  }
}

/* FINAL Data Analyst alignment lock - keep these rules at the end */
@media (min-width: 981px) {
  .da-course-page .da-understand,
  .da-course-page .da-day,
  .da-course-page .da-career-map {
    width: min(100% - 96px, 1480px) !important;
    max-width: 1480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .da-course-page .da-understand {
    display: grid !important;
    grid-template-columns: 360px minmax(0, 1fr) !important;
    gap: clamp(48px, 6vw, 110px) !important;
    align-items: center !important;
  }

  .da-course-page .da-day {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .da-course-page .da-career-map {
    display: grid !important;
    grid-template-columns: 460px minmax(0, 1fr) !important;
    gap: clamp(36px, 5vw, 80px) !important;
    align-items: start !important;
  }

  .da-course-page .da-understand .da-section-title,
  .da-course-page .da-day .da-section-title,
  .da-course-page .da-career-map .da-section-title {
    justify-self: start !important;
    width: auto !important;
    max-width: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .da-course-page .da-day .da-section-title h2,
  .da-course-page .da-career-map .da-section-title h2 {
    max-width: none !important;
    white-space: nowrap !important;
  }

  .da-course-page .da-dayline {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: clamp(34px, 5vw, 76px) !important;
  }

  .da-course-page .da-map {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
  }

  .da-course-page .da-branch-lines,
  .da-course-page .da-role-grid,
  .da-course-page .da-muted-center {
    width: min(100%, 860px) !important;
    max-width: 860px !important;
  }

  .da-course-page .da-muted-center {
    grid-column: 2 !important;
    justify-self: center !important;
    margin-top: 12px !important;
  }
}

/* Data Analyst final hierarchy: explicit reference-style branching */
@media (min-width: 981px) {
  .da-career-map {
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: clamp(36px, 5vw, 80px) !important;
    padding-top: 42px !important;
    padding-bottom: 38px !important;
  }

  .da-career-map .da-section-title h2 {
    max-width: 270px !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 1.12 !important;
  }

  .da-career-map .da-section-title p {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .da-map {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 940px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .da-start-label {
    margin: 0 0 7px !important;
    color: #8b5cf6 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
  }

  .da-start {
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;
    margin: 0 0 9px !important;
    padding: 9px 12px !important;
    border: 1px solid #bda8ff !important;
    border-radius: 4px !important;
    background: #ffffff !important;
    color: #5420d8 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .da-branch-lines {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    width: min(100%, 860px) !important;
    height: 46px !important;
    margin: 18px auto 0 !important;
    border-top: 1px dashed #aeb8cf !important;
    pointer-events: none !important;
  }

  .da-branch-lines::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: -46px !important;
    width: 1px !important;
    height: 46px !important;
    background-image: linear-gradient(to bottom, #aeb8cf 55%, transparent 0) !important;
    background-size: 1px 7px !important;
    transform: translateX(-50%) !important;
  }

  .da-branch-lines i {
    position: relative !important;
    display: block !important;
  }

  .da-branch-lines i::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    width: 1px !important;
    height: 32px !important;
    background-image: linear-gradient(to bottom, #aeb8cf 55%, transparent 0) !important;
    background-size: 1px 7px !important;
    transform: translateX(-50%) !important;
  }

  .da-role-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 20px !important;
    width: min(100%, 860px) !important;
    max-width: 860px !important;
    margin: -5px auto 0 !important;
    padding: 0 !important;
  }

  .da-role-grid::before,
  .da-role-grid::after,
  .da-role-grid span::before {
    display: none !important;
    content: none !important;
  }

  .da-role-grid span {
    width: 100% !important;
    min-width: 0 !important;
    padding: 9px 10px !important;
    border: 1px solid #b9d1ff !important;
    border-radius: 4px !important;
    background: #f8fbff !important;
    color: #2f6fed !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .da-muted-center {
    grid-column: 2 !important;
    width: min(100%, 860px) !important;
    margin: 12px auto 0 !important;
    color: #69738e !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    text-align: center !important;
    opacity: 1 !important;
  }
}

/* Data Analyst process section equal page alignment */
@media (min-width: 981px) {
  .da-understand {
    width: min(100% - 96px, 1480px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    grid-template-columns: 360px minmax(0, 1fr) !important;
    gap: clamp(48px, 6vw, 110px) !important;
  }

  .da-understand .da-section-title h2 {
    max-width: 360px !important;
  }

  .da-understand .da-section-title p {
    max-width: 360px !important;
  }

  .da-process {
    grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
    gap: clamp(62px, 5vw, 100px) !important;
  }

  .da-process article {
    width: 100% !important;
    max-width: 300px !important;
    justify-self: center !important;
  }

  .da-example-strip {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    grid-column: 1 / -1 !important;
  }
}

/* Data Analyst career section aligned with day section heading */
@media (min-width: 981px) {
  .da-day,
  .da-career-map {
    width: 100% !important;
    padding-left: clamp(78px, 7.8vw, 145px) !important;
    padding-right: clamp(78px, 7.8vw, 145px) !important;
  }

  .da-career-map {
    grid-template-columns: 460px minmax(0, 1fr) !important;
  }

  .da-career-map .da-section-title {
    justify-self: start !important;
    width: 460px !important;
    max-width: 460px !important;
  }

  .da-career-map .da-section-title h2 {
    max-width: none !important;
    white-space: nowrap !important;
  }
}

/* Data Analyst final section left-edge alignment */
@media (min-width: 981px) {
  .da-understand,
  .da-day,
  .da-career-map {
    width: min(100% - 96px, 1480px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .da-day .da-section-title,
  .da-career-map .da-section-title {
    justify-self: start !important;
    margin-left: 0 !important;
  }

  .da-day {
    grid-template-columns: 1fr !important;
  }

  .da-career-map {
    grid-template-columns: 460px minmax(0, 1fr) !important;
  }
}

/* Data Analyst career heading single line */
@media (min-width: 981px) {
  .da-career-map {
    grid-template-columns: 460px minmax(0, 1fr) !important;
  }

  .da-career-map .da-section-title h2 {
    max-width: none !important;
    white-space: nowrap !important;
  }
}

/* Data Analyst process section matched to supplied reference */
@media (min-width: 981px) {
  .da-understand {
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: clamp(34px, 5vw, 76px) !important;
    padding-top: 24px !important;
  }

  .da-understand .da-section-title {
    grid-template-columns: 34px minmax(0, 1fr) !important;
  }

  .da-understand .da-section-title h2 {
    max-width: 250px !important;
    margin-bottom: 8px !important;
    color: #101942 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.12 !important;
  }

  .da-understand .da-section-title p {
    max-width: 245px !important;
    color: #59617f !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  .da-understand .da-section-title a {
    display: inline-flex !important;
    margin-top: 8px !important;
    color: #5b21d6 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
  }

  .da-process {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
    align-items: stretch !important;
    gap: clamp(48px, 5vw, 82px) !important;
  }

  .da-process article {
    min-height: 198px !important;
    padding: 20px 18px 18px !important;
    border: 1px solid #ecebfb !important;
    border-radius: 7px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%) !important;
    box-shadow: 0 10px 28px rgba(88, 67, 148, .05) !important;
    text-align: center !important;
  }

  .da-process article:not(:last-child)::after {
    content: "→" !important;
    right: calc(clamp(48px, 5vw, 82px) / -2 - 7px) !important;
    color: #8a91a8 !important;
    font-size: 24px !important;
    font-weight: 400 !important;
  }

  .da-process b {
    display: block !important;
    margin-bottom: 4px !important;
    color: #101942 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
  }

  .da-process h3 {
    margin: 0 0 12px !important;
    color: #17204d !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
  }

  .da-process img {
    display: block !important;
    width: 58px !important;
    height: 58px !important;
    margin: 0 auto 14px !important;
  }

  .da-process p {
    max-width: 140px !important;
    margin: 0 auto !important;
    color: #68708d !important;
    font-size: 10px !important;
    line-height: 1.35 !important;
  }
}

/* Data Analyst: remove section numbers and align content with logo */
@media (min-width: 981px) {
  .da-section-title {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }

  .da-section-title > span {
    display: none !important;
  }

  .da-understand {
    grid-template-columns: 340px minmax(0, 1fr) !important;
    padding-left: clamp(22px, 4.4vw, 62px) !important;
    padding-right: clamp(22px, 4.4vw, 62px) !important;
  }

  .da-understand .da-section-title {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .da-understand .da-section-title h2 {
    max-width: 330px !important;
  }

  .da-understand .da-section-title p {
    max-width: 320px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .da-understand .da-section-title a,
  .da-process p,
  .da-example-strip b,
  .da-example-strip span {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .da-process p {
    max-width: 175px !important;
  }
}

/* Data Analyst full-page spacing and readable typography cleanup */
@media (min-width: 981px) {
  .da-course-page {
    background:
      radial-gradient(circle at 0 10%, rgba(109, 40, 217, .07), transparent 24%),
      radial-gradient(circle at 100% 12%, rgba(47, 125, 246, .06), transparent 24%),
      linear-gradient(180deg, #ffffff 0%, #fbfcff 100%) !important;
  }

  .da-flow-tabs {
    width: 100% !important;
    margin: 0 0 30px !important;
    padding: 14px clamp(22px, 4.4vw, 62px) !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 12px 26px rgba(71, 52, 130, .06) !important;
  }

  .da-flow-tabs a {
    color: #17204d !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
  }

  .da-flow-tabs a.is-active {
    color: #5420d8 !important;
  }

  .da-flow-tabs a.is-active::after {
    left: 22px !important;
    right: 22px !important;
    bottom: -14px !important;
  }

  .da-panel,
  .da-understand,
  .da-day,
  .da-career-map,
  .da-eligible,
  .da-split,
  .da-skills,
  .da-roadmap,
  .da-projects,
  .da-experience,
  .da-outcomes {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .da-day,
  .da-career-map,
  .da-eligible,
  .da-split,
  .da-skills,
  .da-roadmap,
  .da-projects,
  .da-experience,
  .da-outcomes {
    padding-left: clamp(22px, 4.4vw, 62px) !important;
    padding-right: clamp(22px, 4.4vw, 62px) !important;
    background: rgba(255, 255, 255, .9) !important;
    box-shadow: none !important;
  }

  .da-section-title h2,
  .da-understand .da-section-title h2 {
    color: #101942 !important;
    font-size: clamp(23px, 1.8vw, 30px) !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
  }

  .da-section-title p,
  .da-understand .da-section-title p,
  .da-support-compare p,
  .da-fit p,
  .da-outcome-layout p {
    color: #344064 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
  }

  .da-process b,
  .da-process h3,
  .da-dayline h3,
  .da-audience-grid h3,
  .da-role-grid b,
  .da-industry-card b,
  .da-skill-tags b,
  .da-skill-list h3,
  .da-roadmap-grid h3,
  .da-project-grid h3,
  .da-support-compare h3,
  .da-outcome-layout h3 {
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
  }

  .da-process p,
  .da-dayline p,
  .da-audience-grid p,
  .da-role-grid span,
  .da-skill-list p,
  .da-roadmap-grid p,
  .da-roadmap-grid span,
  .da-project-grid p,
  .da-project-grid span,
  .da-example-strip b,
  .da-example-strip span,
  .da-need-strip span,
  .da-support-strip span {
    color: #4b587b !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
  }

  .da-dayline b,
  .da-roadmap-grid b {
    font-size: 14px !important;
    font-weight: 500 !important;
  }
}

/* Data Analyst: keep hero background, make all lower sections clear */
@media (min-width: 981px) {
  .da-course-page {
    background: #ffffff !important;
  }

  .da-course-hero {
    background:
      linear-gradient(115deg, rgba(109, 40, 217, .08) 0%, rgba(109, 40, 217, 0) 34%),
      linear-gradient(90deg, #ffffff 0%, #ffffff 44%, #f6faff 100%) !important;
  }

  .da-flow-tabs {
    background: #ffffff !important;
  }

  .da-understand,
  .da-day,
  .da-career-map,
  .da-eligible,
  .da-split,
  .da-skills,
  .da-roadmap,
  .da-projects,
  .da-experience,
  .da-outcomes {
    background: #ffffff !important;
  }

  .da-panel {
    background: #ffffff !important;
  }
}

/* Data Analyst: remove side box lines from sections */
@media (min-width: 981px) {
  .da-panel,
  .da-understand,
  .da-day,
  .da-career-map,
  .da-eligible,
  .da-split,
  .da-skills,
  .da-roadmap,
  .da-projects,
  .da-experience,
  .da-outcomes {
    border-left: 0 !important;
    border-right: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

/* Data Analyst page 2 reference layout */
@media (min-width: 981px) {
  .da-day,
  .da-career-map {
    display: grid !important;
    grid-template-columns: 270px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: clamp(42px, 6vw, 92px) !important;
    padding-top: 42px !important;
    padding-bottom: 34px !important;
  }

  .da-day .da-section-title,
  .da-career-map .da-section-title {
    align-self: start !important;
  }

  .da-day .da-section-title h2,
  .da-career-map .da-section-title h2 {
    max-width: 250px !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 1.12 !important;
  }

  .da-day .da-section-title p,
  .da-career-map .da-section-title p {
    max-width: 230px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .da-dayline {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 32px !important;
    align-items: start !important;
  }

  .da-dayline article {
    position: relative !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
    text-align: center !important;
    background: transparent !important;
    border: 0 !important;
  }

  .da-dayline article:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    top: 51px !important;
    right: -28px !important;
    width: 42px !important;
    height: 10px !important;
    background:
      linear-gradient(#aeb5c9, #aeb5c9) left 50% / 32px 1px no-repeat,
      linear-gradient(45deg, transparent 45%, #aeb5c9 46% 54%, transparent 55%) right 50% / 9px 9px no-repeat !important;
    border: 0 !important;
  }

  .da-dayline b {
    order: 0 !important;
    margin: 0 0 2px !important;
    color: #6f7590 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
  }

  .da-dayline img {
    order: 1 !important;
    width: 58px !important;
    height: 58px !important;
    display: block !important;
  }

  .da-dayline h3 {
    order: 2 !important;
    margin: 0 !important;
    color: #5420d8 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
  }

  .da-dayline p {
    order: 3 !important;
    max-width: 145px !important;
    color: #58627f !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .da-map {
    display: grid !important;
    justify-items: center !important;
    gap: 10px !important;
    position: relative !important;
    padding-top: 0 !important;
  }

  .da-start-label {
    margin: 0 !important;
    color: #8b5cf6 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
  }

  .da-start {
    min-width: 250px !important;
    padding: 10px 16px !important;
    border: 1px solid #bfaeff !important;
    border-radius: 4px !important;
    color: #5420d8 !important;
    background: #fff !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-align: center !important;
  }

  .da-role-grid {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(120px, 1fr)) !important;
    gap: 18px !important;
    width: min(100%, 920px) !important;
    margin-top: 44px !important;
  }

  .da-role-grid::before {
    content: "" !important;
    position: absolute !important;
    left: 8% !important;
    right: 8% !important;
    top: -24px !important;
    height: 22px !important;
    border-top: 1px dashed #b6bdd2 !important;
    border-left: 1px dashed #b6bdd2 !important;
    border-right: 1px dashed #b6bdd2 !important;
    pointer-events: none !important;
  }

  .da-role-grid span {
    min-width: 0 !important;
    padding: 10px 12px !important;
    border: 1px solid #b9d1ff !important;
    border-radius: 4px !important;
    color: #2f6fed !important;
    background: #f8fbff !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .da-muted-center {
    grid-column: 2 !important;
    margin: -12px 0 0 !important;
    color: #7a829b !important;
    font-size: 12px !important;
    text-align: center !important;
  }
}

/* Data Analyst day timeline colorful icons and readable text */
@media (min-width: 981px) {
  .da-dayline img {
    width: 68px !important;
    height: 68px !important;
  }

  .da-dayline article:not(:last-child)::after {
    top: 56px !important;
    background:
      linear-gradient(#aeb5c9, #aeb5c9) left 50% / 34px 1px no-repeat,
      linear-gradient(45deg, transparent 45%, #aeb5c9 46% 54%, transparent 55%) right 50% / 10px 10px no-repeat !important;
  }

  .da-dayline b {
    font-size: 14px !important;
  }

  .da-dayline h3 {
    color: #5420d8 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
  }

  .da-dayline p {
    max-width: 170px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}

/* Data Analyst day section: heading above, content below */
@media (min-width: 981px) {
  .da-day {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding-top: 38px !important;
  }

  .da-day .da-section-title {
    max-width: 420px !important;
  }

  .da-day .da-section-title h2 {
    max-width: none !important;
    margin-bottom: 8px !important;
  }

  .da-day .da-section-title p {
    max-width: none !important;
  }

  .da-dayline {
    width: 100% !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: clamp(34px, 5vw, 76px) !important;
  }

  .da-dayline article:not(:last-child)::after {
    right: calc(clamp(34px, 5vw, 76px) / -2 - 9px) !important;
  }
}

/* Data Analyst career hierarchy connector fix */
@media (min-width: 981px) {
  .da-career-map {
    grid-template-columns: 330px minmax(0, 1fr) !important;
    gap: clamp(38px, 5vw, 84px) !important;
    padding-top: 48px !important;
    padding-bottom: 52px !important;
  }

  .da-career-map .da-section-title h2 {
    max-width: 310px !important;
    font-size: 28px !important;
    font-weight: 500 !important;
  }

  .da-career-map .da-section-title p {
    font-size: 16px !important;
    color: #273153 !important;
  }

  .da-map {
    width: 100% !important;
    max-width: 1040px !important;
    margin: 0 auto !important;
    padding-bottom: 28px !important;
  }

  .da-start-label {
    margin-bottom: 6px !important;
    color: #6d28d9 !important;
    font-size: 14px !important;
  }

  .da-start {
    min-width: 330px !important;
    max-width: 360px !important;
    padding: 12px 18px !important;
    font-size: 15px !important;
  }

  .da-role-grid {
    width: 100% !important;
    max-width: 1060px !important;
    margin-top: 58px !important;
    gap: 22px !important;
  }

  .da-role-grid::before {
    left: 9% !important;
    right: 9% !important;
    top: -34px !important;
    height: 32px !important;
    border-color: #9fb2d6 !important;
  }

  .da-role-grid span {
    padding: 13px 12px !important;
    border-color: #9fc2ff !important;
    background: #f9fcff !important;
    color: #004de6 !important;
    font-size: 15px !important;
  }

  .da-muted-center {
    grid-column: 2 !important;
    justify-self: center !important;
    width: min(100%, 940px) !important;
    margin: 18px auto 0 !important;
    color: #46527a !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    text-align: center !important;
    opacity: 1 !important;
  }
}

/* Data Analyst hierarchy exactly like supplied reference */
@media (min-width: 981px) {
  .da-career-map {
    grid-template-columns: 300px minmax(0, 1fr) !important;
    gap: clamp(34px, 5vw, 78px) !important;
  }

  .da-map {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 980px !important;
    margin: 0 auto !important;
  }

  .da-start-label {
    margin: 0 0 6px !important;
    color: #8b5cf6 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-align: center !important;
  }

  .da-start {
    width: 245px !important;
    min-width: 245px !important;
    max-width: 245px !important;
    margin: 0 auto 8px !important;
    padding: 9px 12px !important;
    border: 1px solid #bfaeff !important;
    border-radius: 4px !important;
    background: #fff !important;
    color: #5420d8 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .da-start:nth-of-type(3) {
    margin-bottom: 0 !important;
  }

  .da-role-grid {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(112px, 1fr)) !important;
    gap: 20px !important;
    width: min(100%, 900px) !important;
    margin-top: 48px !important;
    padding-top: 0 !important;
  }

  .da-role-grid::before {
    content: "" !important;
    position: absolute !important;
    left: 7.5% !important;
    right: 7.5% !important;
    top: -28px !important;
    height: 20px !important;
    border-top: 1px dashed #aab6cf !important;
    border-left: 1px dashed #aab6cf !important;
    border-right: 1px dashed #aab6cf !important;
    pointer-events: none !important;
  }

  .da-role-grid::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: -76px !important;
    width: 1px !important;
    height: 48px !important;
    background-image: linear-gradient(to bottom, #aab6cf 55%, transparent 0) !important;
    background-size: 1px 7px !important;
    transform: translateX(-50%) !important;
    pointer-events: none !important;
  }

  .da-role-grid span {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 9px 10px !important;
    border: 1px solid #b9d1ff !important;
    border-radius: 4px !important;
    background: #f8fbff !important;
    color: #2f6fed !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .da-role-grid span::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: -28px !important;
    width: 1px !important;
    height: 28px !important;
    background-image: linear-gradient(to bottom, #aab6cf 55%, transparent 0) !important;
    background-size: 1px 7px !important;
    transform: translateX(-50%) !important;
  }

  .da-muted-center {
    grid-column: 2 !important;
    width: min(100%, 900px) !important;
    margin: 8px auto 0 !important;
    color: #717b98 !important;
    font-size: 12px !important;
  }
}

/* Data Analyst process section background and larger text */
@media (min-width: 981px) {
  .da-understand {
    position: relative !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 44px clamp(54px, 7vw, 110px) 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
      radial-gradient(circle at 9% 18%, rgba(109, 40, 217, .08), transparent 24%),
      radial-gradient(circle at 91% 14%, rgba(47, 125, 246, .06), transparent 24%),
      linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%) !important;
    box-shadow: none !important;
  }

  .da-understand .da-section-title h2 {
    max-width: 300px !important;
    font-size: 25px !important;
    line-height: 1.14 !important;
  }

  .da-understand .da-section-title p {
    max-width: 295px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .da-understand .da-section-title a {
    font-size: 13px !important;
  }

  .da-process article {
    min-height: 226px !important;
    padding: 24px 22px 22px !important;
  }

  .da-process b {
    font-size: 15px !important;
  }

  .da-process h3 {
    font-size: 13px !important;
  }

  .da-process img {
    width: 68px !important;
    height: 68px !important;
  }

  .da-process p {
    max-width: 170px !important;
    font-size: 13px !important;
    line-height: 1.42 !important;
  }
}

/* Data Analyst first screen: full-width hero with larger readable text */
@media (min-width: 981px) {
  .da-course-page {
    background:
      radial-gradient(circle at 0 20%, rgba(109, 40, 217, .08), transparent 24%),
      radial-gradient(circle at 100% 24%, rgba(59, 130, 246, .08), transparent 24%),
      linear-gradient(180deg, #ffffff 0%, #fbfcff 38%, #ffffff 100%);
  }

  .da-course {
    width: 100% !important;
    max-width: none !important;
    padding: 0 0 46px !important;
  }

  .da-course-hero {
    width: 100% !important;
    min-height: calc(100svh - 154px) !important;
    grid-template-columns: minmax(470px, .92fr) minmax(560px, 1.08fr) !important;
    gap: clamp(28px, 4vw, 72px) !important;
    padding: clamp(42px, 5vw, 72px) clamp(54px, 7vw, 110px) 30px !important;
    background:
      linear-gradient(115deg, rgba(109, 40, 217, .08) 0%, rgba(109, 40, 217, 0) 34%),
      linear-gradient(90deg, #ffffff 0%, #ffffff 44%, #f6faff 100%) !important;
  }

  .da-hero-copy h1 {
    max-width: 600px !important;
    font-size: clamp(38px, 3.15vw, 52px) !important;
    font-weight: 500 !important;
    line-height: 1.14 !important;
    text-shadow: none !important;
    filter: none !important;
  }

  .da-breadcrumb {
    font-size: 13px !important;
  }

  .da-hero-copy p:not(.da-breadcrumb) {
    max-width: 560px !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
  }

  .da-hero-actions a {
    min-width: 150px !important;
    min-height: 48px !important;
    font-size: 15px !important;
  }

  .da-hero-points span {
    font-size: 14px !important;
  }

  .da-hero-media {
    min-height: 430px !important;
  }

  .da-hero-media video {
    height: 430px !important;
  }

  .da-skill-card {
    width: 210px !important;
    padding: 20px !important;
  }

  .da-skill-card b,
  .da-skill-card span,
  .da-skill-card a {
    font-size: 13px !important;
  }

  .da-flow-tabs {
    width: calc(100% - clamp(72px, 9vw, 160px)) !important;
    margin: 0 auto 34px !important;
  }

  .da-understand,
  .da-day,
  .da-career-map,
  .da-eligible,
  .da-split,
  .da-skills,
  .da-roadmap,
  .da-projects,
  .da-experience,
  .da-outcomes {
    width: calc(100% - clamp(72px, 9vw, 160px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Data Analyst hero video monitor frame */
@media (min-width: 981px) {
  .da-hero-media {
    place-items: center !important;
    min-height: 500px !important;
    padding: 32px 34px 88px !important;
    overflow: visible !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .da-hero-media::before {
    content: "";
    position: absolute;
    inset: 30px 30px 82px;
    z-index: 0;
    width: auto;
    border: 12px solid #11172c;
    border-bottom-width: 24px;
    border-radius: 18px;
    background: #11172c;
    box-shadow:
      0 28px 70px rgba(20, 31, 71, .22),
      0 0 0 1px rgba(255, 255, 255, .8) inset;
    pointer-events: none;
  }

  .da-hero-media::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 36%;
    height: 60px;
    border-radius: 10px 10px 26px 26px;
    background:
      linear-gradient(180deg, #27324f 0%, #12182c 52%, #080d1b 53%),
      linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    box-shadow: 0 18px 32px rgba(20, 31, 71, .22);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .da-hero-media video {
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: 386px !important;
    border: 12px solid #11172c;
    border-bottom-width: 24px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
  }
}

/* Data Analyst hero heading spacing and size fix */
@media (min-width: 981px) {
  .da-hero-copy h1 {
    max-width: 540px !important;
    font-size: clamp(27px, 2.2vw, 36px) !important;
    font-weight: 500 !important;
    line-height: 1.18 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    word-spacing: 0 !important;
    text-shadow: none !important;
    filter: none !important;
  }
}

/* EOF FINAL Data Analyst alignment lock */
@media (min-width: 981px) {
  .da-course-page .da-understand,
  .da-course-page .da-day,
  .da-course-page .da-career-map {
    width: min(100% - 96px, 1480px) !important;
    max-width: 1480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .da-course-page .da-understand {
    display: grid !important;
    grid-template-columns: 360px minmax(0, 1fr) !important;
    gap: clamp(48px, 6vw, 110px) !important;
    align-items: center !important;
  }

  .da-course-page .da-day {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .da-course-page .da-career-map {
    display: grid !important;
    grid-template-columns: 460px minmax(0, 1fr) !important;
    gap: clamp(36px, 5vw, 80px) !important;
    align-items: start !important;
  }

  .da-course-page .da-understand .da-section-title,
  .da-course-page .da-day .da-section-title,
  .da-course-page .da-career-map .da-section-title {
    justify-self: start !important;
    width: auto !important;
    max-width: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .da-course-page .da-day .da-section-title h2,
  .da-course-page .da-career-map .da-section-title h2 {
    max-width: none !important;
    white-space: nowrap !important;
  }

  .da-course-page .da-dayline {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: clamp(34px, 5vw, 76px) !important;
  }

  .da-course-page .da-map {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
  }

  .da-course-page .da-branch-lines,
  .da-course-page .da-role-grid,
  .da-course-page .da-muted-center {
    width: min(100%, 860px) !important;
    max-width: 860px !important;
  }

  .da-course-page .da-muted-center {
    grid-column: 2 !important;
    justify-self: center !important;
    margin-top: 12px !important;
  }
}

/* TRUE FINAL: align lower Data Analyst sections with hero left edge */
@media (min-width: 981px) {
  .da-course-page {
    --da-page-gutter: clamp(54px, 7vw, 132px);
  }

  .da-course-page .da-flow-tabs,
  .da-course-page .da-understand,
  .da-course-page .da-day,
  .da-course-page .da-career-map,
  .da-course-page .da-eligible,
  .da-course-page .da-split,
  .da-course-page .da-skills,
  .da-course-page .da-roadmap,
  .da-course-page .da-projects,
  .da-course-page .da-experience,
  .da-course-page .da-outcomes {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: var(--da-page-gutter) !important;
    padding-right: var(--da-page-gutter) !important;
  }

  .da-course-page .da-understand {
    grid-template-columns: 360px minmax(0, 1fr) !important;
    gap: clamp(48px, 6vw, 110px) !important;
  }

  .da-course-page .da-day {
    grid-template-columns: 1fr !important;
  }

  .da-course-page .da-career-map {
    grid-template-columns: 460px minmax(0, 1fr) !important;
  }

  .da-course-page .da-understand .da-section-title,
  .da-course-page .da-day .da-section-title,
  .da-course-page .da-career-map .da-section-title {
    margin-left: 0 !important;
    padding-left: 0 !important;
    justify-self: start !important;
  }

  .da-course-page .da-map {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
  }
}

/* TRUE FINAL: Data Analyst navbar matches Technext Education home navbar sizing */
@media (min-width: 981px) {
  body.da-course-page {
    padding-top: 82px !important;
  }

  body.da-course-page > .da-course-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    height: 82px !important;
    min-height: 82px !important;
    display: grid !important;
    grid-template-columns: 330px 1fr auto !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 0 28px !important;
    background: rgba(255, 255, 255, .96) !important;
    border-bottom: 1px solid #edf0fb !important;
    box-shadow: 0 12px 30px rgba(70, 45, 147, .05) !important;
    z-index: 4999 !important;
  }

  body.da-course-page .da-course-logo img {
    width: clamp(230px, 17vw, 320px) !important;
    max-width: 100% !important;
    height: auto !important;
  }

  body.da-course-page .da-course-header nav {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 22px !important;
    min-width: 0 !important;
  }

  body.da-course-page .da-course-header nav a {
    color: #07142d !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body.da-course-page .da-course-apply {
    min-height: 38px !important;
    min-width: 110px !important;
    padding: 0 18px !important;
    border-radius: 7px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
  }
}

/* TRUE FINAL: align Data Analyst header logo with hero text start */
@media (min-width: 981px) {
  body.da-course-page > .da-course-header {
    padding-left: var(--da-page-gutter, clamp(54px, 7vw, 132px)) !important;
    padding-right: var(--da-page-gutter, clamp(54px, 7vw, 132px)) !important;
  }
}

/* Data Analyst calm editorial theme: softer contrast, warmer surface, relaxed eyes */
body.da-course-page {
  --da-ink: #182346;
  --da-muted: #5f6f82;
  --da-paper: #fbfaf6;
  --da-paper-2: #f5f8f2;
  --da-sage: #6f9b88;
  --da-sage-soft: #eaf3ed;
  --da-lavender: #6a3be3;
  --da-lavender-soft: #f1ecff;
  --da-line: rgba(113, 132, 120, .18);
  background:
    radial-gradient(circle at 6% 20%, rgba(111, 155, 136, .13), transparent 26%),
    radial-gradient(circle at 96% 32%, rgba(106, 59, 227, .08), transparent 24%),
    linear-gradient(180deg, var(--da-paper) 0%, #f8faf5 46%, #fbfaf6 100%) !important;
  color: var(--da-ink) !important;
}

body.da-course-page > .da-course-header {
  background: rgba(251, 250, 246, .9) !important;
  border-bottom: 1px solid var(--da-line) !important;
  box-shadow: 0 16px 42px rgba(24, 35, 70, .045) !important;
}

body.da-course-page .da-course-header nav a,
body.da-course-page .da-course-header a {
  color: var(--da-ink) !important;
}

body.da-course-page .da-course-apply,
body.da-course-page .da-hero-actions a:first-child,
body.da-course-page .da-fit a,
body.da-course-page .da-apply-card a:first-of-type {
  background: linear-gradient(135deg, #6840dc, #5c2fd1) !important;
  box-shadow: 0 12px 26px rgba(106, 59, 227, .18) !important;
}

body.da-course-page .da-course-hero {
  background:
    radial-gradient(circle at 4% 76%, rgba(111, 155, 136, .14), transparent 28%),
    linear-gradient(90deg, rgba(251, 250, 246, .98) 0%, rgba(251, 250, 246, .94) 48%, rgba(240, 246, 239, .9) 100%) !important;
}

body.da-course-page .da-breadcrumb,
body.da-course-page .da-section-title > span,
body.da-course-page .da-flow-tabs a.is-active,
body.da-course-page .da-skill-card a,
body.da-course-page .da-section-title a,
body.da-course-page .da-skill-tags a,
body.da-course-page .da-city-chart a {
  color: var(--da-lavender) !important;
}

body.da-course-page .da-hero-copy h1,
body.da-course-page .da-section-title h2,
body.da-course-page .da-process h3,
body.da-course-page .da-dayline h3,
body.da-course-page .da-audience-grid h3,
body.da-course-page .da-industry-card b,
body.da-course-page .da-skill-tags b,
body.da-course-page .da-skill-list h3,
body.da-course-page .da-roadmap-grid h3,
body.da-course-page .da-project-grid h3,
body.da-course-page .da-support-compare h3,
body.da-course-page .da-outcome-layout h3,
body.da-course-page .da-role-detail-grid h3,
body.da-course-page .da-module-board b {
  color: var(--da-ink) !important;
}

body.da-course-page .da-hero-copy p:not(.da-breadcrumb),
body.da-course-page .da-section-title p,
body.da-course-page .da-process p,
body.da-course-page .da-dayline p,
body.da-course-page .da-audience-grid p,
body.da-course-page .da-skill-list p,
body.da-course-page .da-roadmap-grid p,
body.da-course-page .da-project-grid p,
body.da-course-page .da-project-grid span,
body.da-course-page .da-outcome-layout p,
body.da-course-page .da-role-detail-grid p,
body.da-course-page .da-module-board span,
body.da-course-page .da-muted-center,
body.da-course-page .da-fit label {
  color: var(--da-muted) !important;
}

body.da-course-page .da-hero-media {
  border: 1px solid rgba(113, 132, 120, .18) !important;
  border-radius: 10px !important;
  background: #edf4ec !important;
  box-shadow: 0 26px 70px rgba(42, 59, 80, .12) !important;
}

body.da-course-page .da-hero-media video {
  filter: brightness(.9) saturate(.78) contrast(.96) !important;
}

body.da-course-page .da-video-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
}

body.da-course-page .da-video-placeholder > div {
  width: min(72%, 380px);
  border: 1px dashed rgba(37, 99, 235, .26);
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  background: rgba(255, 255, 255, .62);
}

body.da-course-page .da-video-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  color: #4f2cff;
  background: rgba(104, 59, 229, .1);
  font-weight: 800;
  font-size: 13px;
}

body.da-course-page .da-video-placeholder h2 {
  margin: 18px 0 8px;
  font-family: Poppins, Inter, sans-serif;
  color: #102042;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}

body.da-course-page .da-video-placeholder p {
  margin: 0;
  color: #52627c;
  font-size: 16px;
  line-height: 1.55;
}

body.da-course-page .da-skill-card,
body.da-course-page .da-hero-stats div,
body.da-course-page .da-detail-strip article,
body.da-course-page .da-panel,
body.da-course-page .da-process article,
body.da-course-page .da-audience-grid article,
body.da-course-page .da-roadmap-grid article,
body.da-course-page .da-project-grid article,
body.da-course-page .da-city-chart,
body.da-course-page .da-industry-card,
body.da-course-page .da-outcome-layout article,
body.da-course-page .da-role-detail-grid article,
body.da-course-page .da-module-board article {
  border-color: var(--da-line) !important;
  background: rgba(255, 254, 250, .82) !important;
  box-shadow: 0 18px 48px rgba(24, 35, 70, .055) !important;
}

body.da-course-page .da-flow-tabs {
  border-color: var(--da-line) !important;
  background: rgba(255, 254, 250, .86) !important;
  box-shadow: 0 16px 38px rgba(24, 35, 70, .055) !important;
}

body.da-course-page .da-flow-tabs a {
  color: #526273 !important;
}

body.da-course-page .da-flow-tabs a.is-active::after,
body.da-course-page .da-hero-points span::before,
body.da-course-page .da-support-strip span::before,
body.da-course-page .da-need-strip span::before,
body.da-course-page .da-support-compare article:first-child p::before {
  background: var(--da-sage) !important;
}

body.da-course-page .da-section-title > span,
body.da-course-page .da-roadmap-grid b {
  background: var(--da-lavender-soft) !important;
}

body.da-course-page .da-hero-stats b,
body.da-course-page .da-need-strip b,
body.da-course-page .da-city-chart > b,
body.da-course-page .da-dayline b {
  color: var(--da-sage) !important;
}

body.da-course-page .da-example-strip,
body.da-course-page .da-need-strip,
body.da-course-page .da-skill-tags,
body.da-course-page .da-support-strip {
  background: rgba(234, 243, 237, .8) !important;
}

body.da-course-page .da-skill-tags span,
body.da-course-page .da-module-board span {
  color: #557a6a !important;
  background: rgba(234, 243, 237, .95) !important;
}

body.da-course-page .da-city-chart i {
  background: linear-gradient(90deg, #8fb8a5, #5d967c) !important;
}

body.da-course-page .da-role-detail-grid article::before,
body.da-course-page .da-module-board article::before {
  background: linear-gradient(180deg, var(--da-lavender), var(--da-sage)) !important;
}

body.da-course-page .da-support-compare article:first-child {
  background: rgba(239, 249, 242, .9) !important;
}

body.da-course-page .da-support-compare article:last-child {
  background: rgba(255, 248, 245, .9) !important;
}

body.da-course-page .da-apply-card {
  background: linear-gradient(135deg, rgba(241, 236, 255, .96), rgba(248, 253, 248, .96)) !important;
}

@media (min-width: 981px) {
  body.da-course-page .da-understand {
    background:
      radial-gradient(circle at 8% 24%, rgba(111, 155, 136, .12), transparent 24%),
      radial-gradient(circle at 92% 18%, rgba(106, 59, 227, .07), transparent 24%),
      linear-gradient(180deg, rgba(251, 250, 246, .98), rgba(246, 250, 242, .96)) !important;
  }

  body.da-course-page .da-day,
  body.da-course-page .da-career-map,
  body.da-course-page .da-eligible,
  body.da-course-page .da-split,
  body.da-course-page .da-skills,
  body.da-course-page .da-roadmap,
  body.da-course-page .da-projects,
  body.da-course-page .da-experience,
  body.da-course-page .da-outcomes,
  body.da-course-page .da-role-detail,
  body.da-course-page .da-course-modules {
    background: rgba(251, 250, 246, .96) !important;
  }
}

/* Data Analyst career path detail view polish */
.da-course-page .da-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 24px;
}

.da-course-page .da-hero-stats div {
  padding: 14px 16px;
  border: 1px solid #e3e8ff;
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 34px rgba(73, 47, 154, .07);
}

.da-course-page .da-hero-stats b {
  display: block;
  color: #5420d8;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  font-weight: 700;
}

.da-course-page .da-hero-stats span {
  display: block;
  margin-top: 6px;
  color: #445174;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.da-course-page .da-detail-strip,
.da-course-page .da-role-detail,
.da-course-page .da-course-modules {
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
}

.da-course-page .da-detail-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  padding: 0;
}

.da-course-page .da-detail-strip article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid #dfe6ff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 255, .96));
  box-shadow: 0 14px 34px rgba(60, 54, 125, .06);
}

.da-course-page .da-detail-strip span {
  display: block;
  margin-bottom: 8px;
  color: #6d28d9;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.da-course-page .da-detail-strip b {
  color: #17204d;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.da-course-page .da-role-detail,
.da-course-page .da-course-modules {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.da-course-page .da-role-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.da-course-page .da-role-detail-grid article,
.da-course-page .da-module-board article {
  position: relative;
  padding: 22px;
  border: 1px solid #e2e8ff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(67, 57, 142, .055);
}

.da-course-page .da-role-detail-grid article::before,
.da-course-page .da-module-board article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, #6d28d9, #2f6fed);
}

.da-course-page .da-role-detail-grid h3,
.da-course-page .da-module-board b {
  display: block;
  margin: 0 0 14px;
  color: #101942;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 650;
}

.da-course-page .da-role-detail-grid p {
  margin: 0;
  color: #4b587b;
  font-size: 13px;
  line-height: 1.48;
}

.da-course-page .da-role-detail-grid p + p {
  margin-top: 10px;
}

.da-course-page .da-role-detail-grid p::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #2f6fed;
  vertical-align: 2px;
}

.da-course-page .da-module-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.da-course-page .da-module-board article {
  display: grid;
  gap: 8px;
  min-height: 190px;
}

.da-course-page .da-module-board span {
  display: block;
  padding: 7px 9px;
  border-radius: 5px;
  color: #445174;
  background: #f3f6ff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

@media (min-width: 981px) {
  .da-course-page .da-detail-strip,
  .da-course-page .da-role-detail,
  .da-course-page .da-course-modules {
    width: 100% !important;
    max-width: none !important;
    padding-left: var(--da-page-gutter) !important;
    padding-right: var(--da-page-gutter) !important;
  }

  .da-course-page .da-role-detail,
  .da-course-page .da-course-modules {
    border-left: 0 !important;
    border-right: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .da-course-page .da-skill-card {
    left: 28px !important;
    top: auto !important;
    bottom: 26px !important;
  }
}

@media (max-width: 1180px) {
  .da-course-page .da-detail-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .da-course-page .da-role-detail,
  .da-course-page .da-course-modules {
    grid-template-columns: 1fr;
  }

  .da-course-page .da-role-detail-grid {
    grid-template-columns: 1fr;
  }

  .da-course-page .da-module-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .da-course-page .da-hero-stats,
  .da-course-page .da-detail-strip,
  .da-course-page .da-module-board {
    grid-template-columns: 1fr;
  }

  .da-course-page .da-skill-card {
    position: static;
    width: calc(100% - 24px);
    margin: 12px auto;
  }

  .da-course-page .da-role-detail,
  .da-course-page .da-course-modules {
    padding: 22px 18px;
  }

  .da-course-page .da-city-chart a {
    grid-template-columns: 1fr auto;
  }

  .da-course-page .da-city-chart strong {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* Final calm-theme lock: reduce glare across the Data Analyst page */
body.da-course-page {
  background:
    radial-gradient(circle at 5% 18%, rgba(111, 155, 136, .16), transparent 27%),
    radial-gradient(circle at 96% 34%, rgba(106, 59, 227, .08), transparent 25%),
    linear-gradient(180deg, #f6f4ed 0%, #eef5ec 46%, #f6f4ed 100%) !important;
}

body.da-course-page .da-course-hero {
  background:
    radial-gradient(circle at 3% 74%, rgba(111, 155, 136, .17), transparent 28%),
    linear-gradient(90deg, rgba(247, 245, 237, .98) 0%, rgba(247, 245, 237, .95) 48%, rgba(229, 239, 228, .94) 100%) !important;
}

body.da-course-page .da-hero-copy h1,
body.da-course-page .da-section-title h2 {
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

body.da-course-page .da-flow-tabs,
body.da-course-page .da-panel,
body.da-course-page .da-detail-strip article,
body.da-course-page .da-hero-stats div,
body.da-course-page .da-process article,
body.da-course-page .da-audience-grid article,
body.da-course-page .da-roadmap-grid article,
body.da-course-page .da-project-grid article,
body.da-course-page .da-city-chart,
body.da-course-page .da-industry-card,
body.da-course-page .da-outcome-layout article,
body.da-course-page .da-role-detail-grid article,
body.da-course-page .da-module-board article {
  background: rgba(253, 251, 244, .88) !important;
  border-color: rgba(92, 111, 101, .2) !important;
}

body.da-course-page .da-example-strip,
body.da-course-page .da-need-strip,
body.da-course-page .da-skill-tags,
body.da-course-page .da-support-strip {
  background: rgba(226, 239, 228, .82) !important;
}

@media (min-width: 981px) {
  body.da-course-page .da-day,
  body.da-course-page .da-career-map,
  body.da-course-page .da-eligible,
  body.da-course-page .da-split,
  body.da-course-page .da-skills,
  body.da-course-page .da-roadmap,
  body.da-course-page .da-projects,
  body.da-course-page .da-experience,
  body.da-course-page .da-outcomes,
  body.da-course-page .da-role-detail,
  body.da-course-page .da-course-modules {
    background: rgba(246, 244, 237, .95) !important;
  }
}

/* Phone-only repair: keep desktop unchanged */
@media (max-width: 760px) {
  body.da-course-page {
    padding-top: 176px !important;
    font-size: 13px !important;
  }

  body.da-course-page > .da-course-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    min-height: 164px !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    align-items: center !important;
  }

  body.da-course-page .da-course-logo img {
    width: 150px !important;
  }

  body.da-course-page .da-course-header nav {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
    scrollbar-width: none;
  }

  body.da-course-page .da-course-header nav::-webkit-scrollbar {
    display: none;
  }

  body.da-course-page .da-course-header nav a {
    flex: 0 0 auto !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  body.da-course-page .da-course-apply {
    width: 100% !important;
    min-height: 40px !important;
    margin: 0 !important;
  }

  body.da-course-page .da-course {
    width: 100% !important;
    padding: 0 0 30px !important;
  }

  body.da-course-page .da-course-hero {
    width: 100% !important;
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 24px 18px 28px !important;
  }

  body.da-course-page .da-hero-copy h1 {
    max-width: none !important;
    font-size: clamp(31px, 9vw, 40px) !important;
    line-height: 1.08 !important;
  }

  body.da-course-page .da-hero-copy p:not(.da-breadcrumb) {
    max-width: none !important;
    font-size: 15px !important;
  }

  body.da-course-page .da-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  body.da-course-page .da-hero-actions a {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
  }

  body.da-course-page .da-hero-points {
    gap: 9px 12px !important;
  }

  body.da-course-page .da-hero-points span {
    font-size: 12px !important;
  }

  body.da-course-page .da-hero-media {
    min-height: 0 !important;
    width: 100% !important;
    border-radius: 10px !important;
  }

  body.da-course-page .da-hero-media video {
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
  }

  body.da-course-page .da-panel,
  body.da-course-page .da-understand,
  body.da-course-page .da-day,
  body.da-course-page .da-role-detail,
  body.da-course-page .da-eligible,
  body.da-course-page .da-split,
  body.da-course-page .da-skills,
  body.da-course-page .da-roadmap,
  body.da-course-page .da-projects,
  body.da-course-page .da-experience,
  body.da-course-page .da-outcomes {
    width: calc(100% - 24px) !important;
    margin: 14px auto 0 !important;
    padding: 20px 16px !important;
    border-radius: 10px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.da-course-page .da-section-title {
    grid-template-columns: 32px 1fr !important;
    gap: 12px !important;
  }

  body.da-course-page .da-section-title > span {
    width: 30px !important;
    height: 30px !important;
    font-size: 11px !important;
  }

  body.da-course-page .da-section-title h2 {
    font-size: 27px !important;
    line-height: 1.12 !important;
  }

  body.da-course-page .da-section-title p {
    font-size: 14px !important;
  }

  body.da-course-page .da-process,
  body.da-course-page .da-audience-grid,
  body.da-course-page .da-skill-list,
  body.da-course-page .da-roadmap-grid,
  body.da-course-page .da-project-grid,
  body.da-course-page .da-support-compare,
  body.da-course-page .da-outcome-layout,
  body.da-course-page .da-role-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.da-course-page .da-process article,
  body.da-course-page .da-audience-grid article,
  body.da-course-page .da-roadmap-grid article,
  body.da-course-page .da-project-grid article,
  body.da-course-page .da-role-detail-grid article {
    min-height: 0 !important;
    padding: 16px !important;
  }

  body.da-course-page .da-process img {
    width: 54px !important;
    height: 54px !important;
  }

  body.da-course-page .da-process p {
    max-width: none !important;
  }

  body.da-course-page .da-dayline {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.da-course-page .da-dayline article {
    display: grid !important;
    grid-template-columns: 62px 1fr !important;
    gap: 4px 12px !important;
    align-items: center !important;
    justify-items: start !important;
    text-align: left !important;
    padding: 12px !important;
    border: 1px solid rgba(92, 111, 101, .2) !important;
    border-radius: 8px !important;
    background: rgba(253, 251, 244, .88) !important;
  }

  body.da-course-page .da-dayline article:not(:last-child)::after {
    content: "↓" !important;
    top: auto !important;
    right: auto !important;
    left: 30px !important;
    bottom: -20px !important;
    width: 24px !important;
    height: 24px !important;
    color: #6f9b88 !important;
    font-size: 22px !important;
    background: transparent !important;
  }

  body.da-course-page .da-dayline b {
    grid-column: 2 !important;
    margin: 0 !important;
    font-size: 12px !important;
  }

  body.da-course-page .da-dayline img {
    grid-row: 1 / span 3 !important;
    width: 48px !important;
    height: 48px !important;
  }

  body.da-course-page .da-dayline h3 {
    grid-column: 2 !important;
    margin: 0 !important;
    font-size: 15px !important;
  }

  body.da-course-page .da-dayline p {
    grid-column: 2 !important;
    max-width: none !important;
    font-size: 13px !important;
  }

  body.da-course-page .da-demand-layout,
  body.da-course-page .da-city-chart {
    grid-template-columns: 1fr !important;
  }

  body.da-course-page .da-skill-tags {
    align-items: flex-start !important;
  }
}

/* Phone-only final readability cleanup. Desktop/laptop remains untouched. */
@media (max-width: 760px) {
  body.da-course-page {
    background: linear-gradient(180deg, #f7f5ee 0%, #eef5ec 46%, #f7f5ee 100%) !important;
  }

  body.da-course-page .da-course-header,
  body.da-course-page .da-course-apply,
  body.da-course-page .da-hero-actions a,
  body.da-course-page .da-panel,
  body.da-course-page .da-hero-media,
  body.da-course-page .da-process article,
  body.da-course-page .da-dayline article,
  body.da-course-page .da-role-detail-grid article,
  body.da-course-page .da-audience-grid article,
  body.da-course-page .da-city-chart,
  body.da-course-page .da-city-chart a,
  body.da-course-page .da-industry-card,
  body.da-course-page .da-skill-list article,
  body.da-course-page .da-roadmap-grid article,
  body.da-course-page .da-project-grid article,
  body.da-course-page .da-support-compare article,
  body.da-course-page .da-outcome-layout article {
    box-shadow: none !important;
    filter: none !important;
  }

  body.da-course-page .da-course-hero {
    padding: 18px 14px 22px !important;
    gap: 16px !important;
    background: linear-gradient(180deg, #f7f5ee 0%, #edf5eb 100%) !important;
  }

  body.da-course-page .da-breadcrumb {
    margin-bottom: 10px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  body.da-course-page .da-hero-copy h1 {
    max-width: 340px !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: clamp(25px, 7.2vw, 31px) !important;
    line-height: 1.14 !important;
    font-weight: 750 !important;
    text-transform: none !important;
    text-shadow: none !important;
    filter: none !important;
  }

  body.da-course-page .da-hero-copy p:not(.da-breadcrumb) {
    max-width: 340px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  body.da-course-page .da-hero-actions {
    grid-template-columns: 1fr 1fr !important;
    margin-top: 16px !important;
  }

  body.da-course-page .da-hero-actions a {
    min-height: 40px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
  }

  body.da-course-page .da-hero-points {
    margin-top: 14px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  body.da-course-page .da-hero-points span {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  body.da-course-page .da-hero-media {
    border-radius: 8px !important;
  }

  body.da-course-page .da-panel,
  body.da-course-page .da-understand,
  body.da-course-page .da-day,
  body.da-course-page .da-role-detail,
  body.da-course-page .da-eligible,
  body.da-course-page .da-split,
  body.da-course-page .da-skills,
  body.da-course-page .da-roadmap,
  body.da-course-page .da-projects,
  body.da-course-page .da-experience,
  body.da-course-page .da-outcomes {
    width: calc(100% - 20px) !important;
    margin-top: 10px !important;
    padding: 16px 12px !important;
    gap: 14px !important;
  }

  body.da-course-page .da-section-title {
    grid-template-columns: 26px 1fr !important;
    gap: 9px !important;
  }

  body.da-course-page .da-section-title > span {
    width: 24px !important;
    height: 24px !important;
    font-size: 10px !important;
  }

  body.da-course-page .da-section-title h2 {
    font-family: Inter, Arial, sans-serif !important;
    font-size: 20px !important;
    line-height: 1.18 !important;
    font-weight: 750 !important;
  }

  body.da-course-page .da-section-title p,
  body.da-course-page .da-process p,
  body.da-course-page .da-dayline p,
  body.da-course-page .da-role-detail-grid p,
  body.da-course-page .da-audience-grid p,
  body.da-course-page .da-skill-list p,
  body.da-course-page .da-roadmap-grid p,
  body.da-course-page .da-project-grid p,
  body.da-course-page .da-outcome-layout p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body.da-course-page .da-process h3,
  body.da-course-page .da-dayline h3,
  body.da-course-page .da-role-detail-grid h3,
  body.da-course-page .da-audience-grid h3,
  body.da-course-page .da-skill-list h3,
  body.da-course-page .da-roadmap-grid h3,
  body.da-course-page .da-project-grid h3,
  body.da-course-page .da-support-compare h3,
  body.da-course-page .da-outcome-layout h3 {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  body.da-course-page .da-process article,
  body.da-course-page .da-dayline article,
  body.da-course-page .da-role-detail-grid article,
  body.da-course-page .da-audience-grid article,
  body.da-course-page .da-roadmap-grid article,
  body.da-course-page .da-project-grid article,
  body.da-course-page .da-outcome-layout article {
    padding: 12px !important;
    border-radius: 7px !important;
  }

  body.da-course-page .da-process img {
    width: 42px !important;
    height: 42px !important;
  }

  body.da-course-page .da-dayline article {
    grid-template-columns: 48px 1fr !important;
    padding: 10px !important;
  }

  body.da-course-page .da-dayline img {
    width: 38px !important;
    height: 38px !important;
  }

  body.da-course-page .da-dayline b {
    font-size: 11px !important;
  }

  body.da-course-page .da-city-chart a {
    min-height: 74px !important;
    padding: 12px !important;
  }

  body.da-course-page .da-city-chart a span {
    font-size: 13px !important;
  }

  body.da-course-page .da-city-chart em {
    font-size: 15px !important;
  }

  body.da-course-page .da-city-chart strong {
    padding: 6px 9px !important;
    font-size: 10px !important;
  }

  body.da-course-page .da-project-grid img {
    margin-bottom: 8px !important;
  }

  body.da-course-page .da-support-strip,
  body.da-course-page .da-need-strip,
  body.da-course-page .da-skill-tags {
    padding: 10px 12px !important;
    gap: 7px !important;
  }

  body.da-course-page .da-support-strip span,
  body.da-course-page .da-need-strip span,
  body.da-course-page .da-skill-tags span {
    font-size: 11px !important;
  }
}

/* Final city openings graph lock */
.da-course-page .da-city-chart {
  grid-template-columns: 1fr !important;
}

.da-course-page .da-city-chart a {
  grid-template-columns: 92px minmax(110px, 1fr) 54px 76px !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 8px 10px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.da-course-page .da-city-chart i {
  display: block !important;
  height: 12px !important;
  border-radius: 999px !important;
  background: rgba(111, 155, 136, .16) !important;
}

.da-course-page .da-city-chart strong {
  grid-column: auto !important;
  justify-self: end !important;
}

@media (max-width: 760px) {
  .da-course-page .da-city-chart a {
    grid-template-columns: 72px minmax(86px, 1fr) 42px !important;
    gap: 8px !important;
    min-height: 46px !important;
    padding: 7px 0 !important;
  }

  .da-course-page .da-city-chart strong {
    grid-column: 2 / -1 !important;
    justify-self: start !important;
    margin-top: -2px !important;
  }

  .da-course-page .da-city-chart i {
    height: 10px !important;
  }
}

/* Better city openings graph */
.da-course-page .da-city-chart {
  counter-reset: city-rank !important;
  gap: 10px !important;
}

.da-course-page .da-city-chart a {
  counter-increment: city-rank !important;
  grid-template-columns: 134px minmax(180px, 1fr) 72px 86px !important;
  gap: 16px !important;
  min-height: 54px !important;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  background: rgba(253, 251, 244, .72) !important;
  transition: background .2s ease, transform .2s ease !important;
}

.da-course-page .da-city-chart a:hover {
  background: rgba(234, 243, 237, .72) !important;
  transform: translateY(-1px) !important;
}

.da-course-page .da-city-chart a span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: #14213d !important;
  font-weight: 800 !important;
}

.da-course-page .da-city-chart a span::before {
  content: counter(city-rank);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #5d967c;
  background: #e5f0ea;
  font-size: 11px;
  font-weight: 800;
}

.da-course-page .da-city-chart i {
  height: 16px !important;
  width: 100% !important;
  border: 1px solid rgba(95, 130, 113, .18) !important;
  background: linear-gradient(180deg, #eef6f1, #dfece5) !important;
  box-shadow: inset 0 1px 2px rgba(20, 33, 61, .08) !important;
}

.da-course-page .da-city-chart i::after {
  background: linear-gradient(90deg, #9fc8b5 0%, #6f9b88 52%, #4f846d 100%) !important;
  box-shadow: 0 0 0 1px rgba(56, 106, 82, .08), 0 5px 12px rgba(79, 132, 109, .22) !important;
}

.da-course-page .da-city-chart em {
  justify-self: end !important;
  min-width: 66px !important;
  padding: 7px 9px !important;
  border-radius: 999px !important;
  color: #2f735c !important;
  background: #e9f4ee !important;
  font-size: 14px !important;
  text-align: center !important;
}

.da-course-page .da-city-chart strong {
  padding: 8px 11px !important;
  border: 1px solid rgba(106, 59, 227, .1) !important;
  background: #f0eaff !important;
}

@media (max-width: 760px) {
  .da-course-page .da-city-chart a {
    grid-template-columns: 1fr auto !important;
    gap: 8px 10px !important;
    min-height: 76px !important;
    padding: 11px 10px !important;
    border: 1px solid rgba(92, 111, 101, .14) !important;
  }

  .da-course-page .da-city-chart i {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    height: 12px !important;
  }

  .da-course-page .da-city-chart em {
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-width: 58px !important;
    padding: 6px 8px !important;
    font-size: 12px !important;
  }

  .da-course-page .da-city-chart strong {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    justify-self: start !important;
    margin-top: 0 !important;
    padding: 6px 9px !important;
  }
}

/* City graph: total bar length follows openings */
.da-course-page .da-city-chart i {
  justify-self: start !important;
  width: var(--w) !important;
  min-width: 42px !important;
  background: linear-gradient(90deg, #a8cfbd 0%, #6f9b88 58%, #4f846d 100%) !important;
  box-shadow: 0 0 0 1px rgba(56, 106, 82, .12), 0 5px 12px rgba(79, 132, 109, .18) !important;
}

.da-course-page .da-city-chart i::after {
  display: none !important;
}

@media (max-width: 760px) {
  .da-course-page .da-city-chart i {
    width: var(--w) !important;
    max-width: 100% !important;
  }
}

/* Phone-only: keep hero headline readable in two lines */
@media (max-width: 760px) {
  body.da-course-page .da-hero-copy h1 {
    max-width: 360px !important;
    width: 100% !important;
    font-size: clamp(24px, 6.8vw, 28px) !important;
    line-height: 1.14 !important;
    white-space: normal !important;
    overflow: visible !important;
  }
}

/* Career path family: align non-Data-Analyst career pages with the approved Data Analyst look */
body.data-analyst-page,
body.ds-path-page {
  background:
    radial-gradient(circle at 5% 18%, rgba(111, 155, 136, .16), transparent 27%),
    radial-gradient(circle at 96% 34%, rgba(106, 59, 227, .08), transparent 25%),
    linear-gradient(180deg, #f6f4ed 0%, #eef5ec 46%, #f6f4ed 100%) !important;
  color: #182346 !important;
}

body.data-analyst-page .site-header,
body.ds-path-page .site-header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 4999 !important;
  min-height: 82px !important;
  height: 82px !important;
  display: grid !important;
  grid-template-columns: 360px 1fr auto !important;
  align-items: center !important;
  gap: 18px !important;
  padding-left: var(--da-page-gutter, clamp(54px, 7vw, 132px)) !important;
  padding-right: var(--da-page-gutter, clamp(54px, 7vw, 132px)) !important;
  background: rgba(251, 250, 246, .92) !important;
  border-bottom: 1px solid rgba(113, 132, 120, .18) !important;
  box-shadow: 0 16px 42px rgba(24, 35, 70, .045) !important;
  backdrop-filter: blur(12px) !important;
}

body.data-analyst-page {
  padding-top: 82px !important;
}

body.data-analyst-page .brand,
body.ds-path-page .brand {
  justify-self: start !important;
  margin-left: -22px !important;
}

body.data-analyst-page .brand-image,
body.ds-path-page .brand-image {
  width: clamp(250px, 18vw, 338px) !important;
  height: auto !important;
  max-height: 76px !important;
  object-fit: contain !important;
  filter: contrast(1.12) saturate(1.16) drop-shadow(0 1px 0 rgba(255,255,255,.55)) !important;
}

body.data-analyst-page .primary-nav,
body.ds-path-page .primary-nav {
  justify-content: flex-end !important;
  gap: 22px !important;
}

body.data-analyst-page .primary-nav a,
body.ds-path-page .primary-nav a {
  color: #07142d !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

body.data-analyst-page .nav-contact-link,
body.ds-path-page .nav-contact-link {
  min-height: 38px !important;
  padding: 0 18px !important;
  border-radius: 7px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #6840dc, #5c2fd1) !important;
  box-shadow: 0 12px 26px rgba(106, 59, 227, .18) !important;
}

body.data-analyst-page .da-page,
body.ds-path-page .ds-poster {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 0 46px !important;
  overflow-x: hidden !important;
}

body.data-analyst-page .da-hero,
body.ds-path-page .ds-hero-row {
  width: 100% !important;
  min-height: calc(100svh - 82px) !important;
  display: grid !important;
  grid-template-columns: minmax(470px, .92fr) minmax(560px, 1.08fr) !important;
  align-items: center !important;
  gap: clamp(28px, 4vw, 72px) !important;
  margin: 0 !important;
  padding: clamp(42px, 5vw, 72px) var(--da-page-gutter, clamp(54px, 7vw, 132px)) 30px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 3% 74%, rgba(111, 155, 136, .17), transparent 28%),
    linear-gradient(90deg, rgba(247, 245, 237, .98) 0%, rgba(247, 245, 237, .95) 48%, rgba(229, 239, 228, .94) 100%) !important;
  box-shadow: none !important;
}

body.data-analyst-page .da-hero h1,
body.ds-path-page .ds-hero-copy h1 {
  max-width: 640px !important;
  margin: 0 0 14px !important;
  color: #182346 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(38px, 3.15vw, 52px) !important;
  font-weight: 600 !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

body.data-analyst-page .da-hero p,
body.ds-path-page .ds-intro,
body.ds-path-page .ds-hero-copy h2 {
  max-width: 560px !important;
  color: #5f6f82 !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

body.data-analyst-page .da-kicker,
body.ds-path-page .ds-eyebrow {
  margin: 0 0 18px !important;
  color: #6a3be3 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

body.data-analyst-page .da-actions,
body.ds-path-page .ds-buttons {
  display: flex !important;
  gap: 14px !important;
  margin-top: 24px !important;
}

body.data-analyst-page .da-btn,
body.ds-path-page .ds-buttons a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 150px !important;
  min-height: 48px !important;
  padding: 0 18px !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

body.data-analyst-page .da-btn-primary,
body.ds-path-page .ds-buttons a {
  color: #fff !important;
  background: linear-gradient(135deg, #6840dc, #5c2fd1) !important;
}

body.data-analyst-page .da-btn-secondary {
  color: #5420d8 !important;
  background: #fffefa !important;
  border: 1px solid rgba(106, 59, 227, .2) !important;
}

.career-video-space,
body.ds-path-page .ds-hero-monitor {
  position: relative !important;
  min-height: 430px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(113, 132, 120, .18) !important;
  border-radius: 10px !important;
  background:
    linear-gradient(135deg, rgba(234, 243, 237, .9), rgba(241, 236, 255, .42)),
    repeating-linear-gradient(135deg, rgba(24,35,70,.06) 0 1px, transparent 1px 18px) !important;
  box-shadow: 0 26px 70px rgba(42, 59, 80, .12) !important;
  overflow: hidden !important;
}

.career-video-space > div {
  max-width: 360px;
  padding: 28px;
  text-align: center;
}

.career-video-space span {
  color: #6f9b88;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.career-video-space h2 {
  margin: 10px 0;
  color: #182346;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.12;
}

.career-video-space p {
  margin: 0;
  color: #5f6f82;
  font-size: 15px;
  line-height: 1.5;
}

body.ds-path-page .ds-hero-monitor video {
  width: 100% !important;
  height: 430px !important;
  object-fit: cover !important;
  filter: brightness(.9) saturate(.78) contrast(.96) !important;
}

body.data-analyst-page .da-section,
body.data-analyst-page .da-final-cta,
body.ds-path-page .ds-row:not(.ds-hero-row) {
  width: calc(100% - (var(--da-page-gutter, clamp(54px, 7vw, 132px)) * 2)) !important;
  max-width: none !important;
  margin: 22px auto 0 !important;
  padding: 26px !important;
  border: 1px solid rgba(92, 111, 101, .2) !important;
  border-radius: 10px !important;
  background: rgba(253, 251, 244, .88) !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  body.data-analyst-page .site-header,
  body.ds-path-page .site-header {
    position: fixed !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    height: auto !important;
    min-height: 164px !important;
    padding: 12px 16px !important;
  }

  body.data-analyst-page,
  body.ds-path-page {
    padding-top: 176px !important;
  }

  body.data-analyst-page .brand,
  body.ds-path-page .brand {
    width: 100% !important;
    justify-content: center !important;
    margin-left: 0 !important;
  }

  body.data-analyst-page .brand-image,
  body.ds-path-page .brand-image {
    width: min(58vw, 226px) !important;
    max-height: 64px !important;
  }

  body.data-analyst-page .primary-nav,
  body.ds-path-page .primary-nav {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    overflow-x: auto !important;
  }

  body.data-analyst-page .da-hero,
  body.ds-path-page .ds-hero-row {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 18px 14px 22px !important;
    gap: 16px !important;
  }

  body.data-analyst-page .da-hero h1,
  body.ds-path-page .ds-hero-copy h1 {
    max-width: 360px !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: clamp(24px, 6.8vw, 28px) !important;
    line-height: 1.14 !important;
  }

  body.data-analyst-page .da-hero p,
  body.ds-path-page .ds-intro,
  body.ds-path-page .ds-hero-copy h2 {
    max-width: 360px !important;
    font-size: 14px !important;
  }

  .career-video-space,
  body.ds-path-page .ds-hero-monitor {
    min-height: 220px !important;
    width: 100% !important;
  }

  body.ds-path-page .ds-hero-monitor video {
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
  }

  body.data-analyst-page .da-section,
  body.data-analyst-page .da-final-cta,
  body.ds-path-page .ds-row:not(.ds-hero-row) {
    width: calc(100% - 20px) !important;
    margin-top: 10px !important;
    padding: 16px 12px !important;
  }
}

/* Education logo arrangement: apply main Education header logo sizing to career pages */
body.da-course-page .da-course-logo,
.ds-path-page .brand {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

body.da-course-page .da-course-logo img,
.ds-path-page .brand-image {
  width: clamp(230px, 17vw, 320px) !important;
  height: auto !important;
  max-height: 72px !important;
  object-fit: contain !important;
  display: block !important;
}

@media (min-width: 981px) {
  body.da-course-page > .da-course-header {
    grid-template-columns: 360px 1fr auto !important;
  }

  body.da-course-page .da-course-logo {
    justify-self: start !important;
    margin-left: -22px !important;
  }

  body.da-course-page .da-course-logo img {
    width: clamp(250px, 18vw, 338px) !important;
    max-height: 76px !important;
    filter: contrast(1.12) saturate(1.16) drop-shadow(0 1px 0 rgba(255,255,255,.55)) !important;
  }
}

@media (max-width: 760px) {
  body.da-course-page > .da-course-header,
  .ds-path-page .site-header {
    justify-items: center !important;
  }

  body.da-course-page .da-course-logo,
  .ds-path-page .brand {
    justify-self: center !important;
  }

  body.da-course-page .da-course-logo img,
  .ds-path-page .brand-image {
    width: min(58vw, 226px) !important;
    max-height: 64px !important;
  }
}

/* Match Education main page logo arrangement on phone */
@media (max-width: 760px) {
  body.da-course-page .da-course-logo img,
  .ds-path-page .brand-image {
    width: min(58vw, 226px) !important;
    height: auto !important;
    max-height: 64px !important;
    object-fit: contain !important;
  }

  .ds-path-page .brand {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Final fix: clear arrows between Data Analyst day timeline steps */
@media (min-width: 981px) {
  body.da-course-page .da-dayline article:not(:last-child)::after {
    content: "→" !important;
    position: absolute !important;
    top: 56px !important;
    right: calc(clamp(34px, 5vw, 76px) / -2 - 18px) !important;
    width: 42px !important;
    height: 28px !important;
    display: grid !important;
    place-items: center !important;
    border: 0 !important;
    background: transparent !important;
    color: #6f9b88 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
  }
}

/* Final phone-only shift: keep the education hero's blank space above the first text. */
@media (max-width: 760px) {
  body.education-pro-body .edu-hero-brandline,
  body.education-pro-body .edu-kicker {
    display: inline-flex !important;
  }

  body.education-pro-body .education-pro-page > .edu-hero {
    min-height: calc(100svh - 92px) !important;
    padding-top: 170px !important;
    padding-bottom: 18px !important;
    align-content: end !important;
  }
}

/* Phone-only: let the Learning Outcomes heading wrap inside its card. */
@media (max-width: 760px) {
  body.education-pro-body .edu-depth-head {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.education-pro-body .edu-depth-head h2 {
    max-width: 100% !important;
    font-size: clamp(21px, 5.8vw, 26px) !important;
    line-height: 1.18 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.education-pro-body .edu-depth-head p {
    max-width: 100% !important;
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }
}

/* Final brand CTA color: match the blue NEXT mark in the Technext Education logo. */
body.education-pro-body .edu-apply,
body.education-pro-body .edu-apply:visited,
body.education-pro-body .edu-btn-primary,
body.education-pro-body .edu-btn-primary:visited,
body.da-course-page .da-course-apply,
body.da-course-page .da-course-apply:visited,
body.da-course-page .da-apply-card a:first-of-type,
body.da-course-page .da-apply-card a:first-of-type:visited {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0097ff 0%, #0077ff 54%, #0064e6 100%) !important;
  border-color: rgba(0, 119, 255, .58) !important;
  box-shadow: 0 14px 30px rgba(0, 119, 255, .24) !important;
}

body.education-pro-body .edu-apply:hover,
body.education-pro-body .edu-btn-primary:hover,
body.da-course-page .da-course-apply:hover,
body.da-course-page .da-apply-card a:first-of-type:hover {
  background: linear-gradient(135deg, #14a5ff 0%, #007fff 54%, #005fd8 100%) !important;
}

/* Final WhatsApp CTA: replace Apply Now text with a clearer WhatsApp action. */
a[href*="wa.me/918191800054"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
}

a[href*="wa.me/918191800054"] .whatsapp-mark {
  width: 21px !important;
  height: 21px !important;
  flex: 0 0 21px !important;
  display: inline-block !important;
  background: currentColor !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.68 12.68 0 0 0 5.07 22.27L3.6 28.8l6.67-1.42A12.69 12.69 0 1 0 16.02 3.2Zm0 2.35a10.34 10.34 0 1 1-5.1 19.33l-.4-.23-3.72.79.82-3.6-.26-.42A10.34 10.34 0 0 1 16.02 5.55Zm-4.16 5.68c-.23-.5-.47-.51-.68-.52h-.58c-.2 0-.52.08-.8.38-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.06 3.3 5.09 4.5 2.52 1 3.04.8 3.58.75.55-.05 1.78-.73 2.03-1.43.25-.7.25-1.3.18-1.43-.08-.13-.28-.2-.58-.35-.3-.15-1.78-.88-2.05-.98-.28-.1-.48-.15-.68.15-.2.3-.78.98-.95 1.18-.18.2-.35.23-.65.08-.3-.15-1.26-.47-2.4-1.5-.89-.79-1.49-1.76-1.66-2.06-.18-.3-.02-.46.13-.61.13-.13.3-.35.45-.53.15-.17.2-.3.3-.5.1-.2.05-.38-.03-.53-.08-.15-.66-1.63-.92-2.22Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.68 12.68 0 0 0 5.07 22.27L3.6 28.8l6.67-1.42A12.69 12.69 0 1 0 16.02 3.2Zm0 2.35a10.34 10.34 0 1 1-5.1 19.33l-.4-.23-3.72.79.82-3.6-.26-.42A10.34 10.34 0 0 1 16.02 5.55Zm-4.16 5.68c-.23-.5-.47-.51-.68-.52h-.58c-.2 0-.52.08-.8.38-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.06 3.3 5.09 4.5 2.52 1 3.04.8 3.58.75.55-.05 1.78-.73 2.03-1.43.25-.7.25-1.3.18-1.43-.08-.13-.28-.2-.58-.35-.3-.15-1.78-.88-2.05-.98-.28-.1-.48-.15-.68.15-.2.3-.78.98-.95 1.18-.18.2-.35.23-.65.08-.3-.15-1.26-.47-2.4-1.5-.89-.79-1.49-1.76-1.66-2.06-.18-.3-.02-.46.13-.61.13-.13.3-.35.45-.53.15-.17.2-.3.3-.5.1-.2.05-.38-.03-.53-.08-.15-.66-1.63-.92-2.22Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

body.education-pro-body .edu-apply,
body.education-pro-body .edu-apply:visited,
body.da-course-page .da-course-apply,
body.da-course-page .da-course-apply:visited,
body.da-course-page .da-apply-card a:first-of-type,
body.da-course-page .da-apply-card a:first-of-type:visited {
  color: #ffffff !important;
  background: linear-gradient(135deg, #28d66b 0%, #18b957 55%, #0b8f43 100%) !important;
  border-color: rgba(24, 185, 87, .55) !important;
  box-shadow: 0 14px 30px rgba(18, 162, 78, .24) !important;
}

body.education-pro-body .edu-apply:hover,
body.da-course-page .da-course-apply:hover,
body.da-course-page .da-apply-card a:first-of-type:hover {
  background: linear-gradient(135deg, #31e875 0%, #19c45c 55%, #0a833d 100%) !important;
}

/* Floating WhatsApp corner action. */
.whatsapp-float,
.whatsapp-float:visited {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 9900 !important;
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #31e875 0%, #18b957 54%, #0b8f43 100%) !important;
  box-shadow: 0 18px 38px rgba(10, 131, 61, .32) !important;
  text-decoration: none !important;
}

.whatsapp-float .whatsapp-mark {
  width: 32px !important;
  height: 32px !important;
  flex-basis: 32px !important;
}

.whatsapp-float:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 44px rgba(10, 131, 61, .38) !important;
}

body.education-pro-body .edu-header-actions,
body.da-course-page > .da-course-header .da-course-apply {
  display: none !important;
}

@media (max-width: 760px) {
  .whatsapp-float,
  .whatsapp-float:visited {
    right: 16px !important;
    bottom: 16px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
  }

  .whatsapp-float .whatsapp-mark {
    width: 29px !important;
    height: 29px !important;
    flex-basis: 29px !important;
  }
}

/* Phone-only: keep Education page navigation in a single clean row. */
@media (max-width: 760px) {
  body.education-pro-body .edu-nav {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: clamp(10px, 2.6vw, 14px) !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  body.education-pro-body .edu-nav a,
  body.education-pro-body .edu-nav a:visited {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    font-size: clamp(11px, 3.05vw, 12.5px) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }
}

/* Phone-only: Education header uses a Menu dropdown like the main Technext page. */
.edu-menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  body.education-pro-body > .edu-header {
    position: relative !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
  }

  body.education-pro-body .edu-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    min-height: 38px !important;
    padding: 9px 14px !important;
    border: 1px solid rgba(20, 36, 71, .18) !important;
    border-radius: 7px !important;
    background: #ffffff !important;
    color: #0b1736 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    box-shadow: 0 8px 20px rgba(15, 31, 58, .08) !important;
  }

  body.education-pro-body .edu-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 60 !important;
    width: auto !important;
    max-width: none !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 10px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, .98) !important;
    border: 1px solid rgba(20, 36, 71, .14) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 42px rgba(15, 31, 58, .16) !important;
  }

  body.education-pro-body .edu-nav.open {
    display: flex !important;
  }

  body.education-pro-body .edu-nav a,
  body.education-pro-body .edu-nav a:visited {
    width: 100% !important;
    padding: 12px 10px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
    text-align: left !important;
  }

  body.education-pro-body .edu-nav a:hover {
    background: rgba(0, 119, 255, .08) !important;
  }
}

/* Phone-only final compact header: remove the old blank top gap and tall navbar. */
@media (max-width: 760px) {
  body.education-pro-body {
    padding-top: 0 !important;
  }

  body.education-pro-body > .edu-header {
    top: 0 !important;
    min-height: 76px !important;
    height: auto !important;
    padding: 8px 12px !important;
    align-items: center !important;
  }

  body.education-pro-body .edu-brand {
    min-width: 0 !important;
    height: auto !important;
  }

  body.education-pro-body .edu-brand img {
    width: min(55vw, 204px) !important;
    max-height: 58px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  body.education-pro-body .edu-menu-toggle {
    min-height: 36px !important;
    padding: 8px 13px !important;
    font-size: 13px !important;
  }

  body.education-pro-body .edu-nav {
    top: calc(100% + 6px) !important;
  }
}

/* Final main-page education course buttons: keep labels on one line. */
.home-unit-feature-card.is-education .home-feature-links {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.home-unit-feature-card.is-education .home-feature-links a,
.home-unit-feature-card.is-education .home-feature-links a:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: clamp(12px, 3.35vw, 14px) !important;
}

.home-unit-feature-card.is-education .home-feature-links a:nth-child(1),
.home-unit-feature-card.is-education .home-feature-links a:nth-child(2) {
  border-color: #bfdbfe !important;
  background: #eff6ff !important;
  color: #111827 !important;
}

.home-unit-feature-card.is-education .home-feature-links a:nth-child(3),
.home-unit-feature-card.is-education .home-feature-links a:nth-child(4) {
  border-color: #ddd6fe !important;
  background: #f5f3ff !important;
  color: #111827 !important;
}

/* Phone-only: career path pages use the same compact Menu navbar as Education home. */
.da-menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  body.da-course-page {
    padding-top: 0 !important;
  }

  body.da-course-page > .da-course-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 80 !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 76px !important;
    height: auto !important;
    padding: 8px 12px !important;
    overflow: visible !important;
  }

  body.da-course-page .da-course-logo {
    min-width: 0 !important;
    justify-self: start !important;
    width: auto !important;
  }

  body.da-course-page .da-course-logo img {
    width: min(55vw, 204px) !important;
    max-height: 58px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  body.da-course-page .da-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    min-height: 36px !important;
    padding: 8px 13px !important;
    border: 1px solid rgba(20, 36, 71, .18) !important;
    border-radius: 7px !important;
    background: #ffffff !important;
    color: #0b1736 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    box-shadow: 0 8px 20px rgba(15, 31, 58, .08) !important;
  }

  body.da-course-page .da-course-nav {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 90 !important;
    width: auto !important;
    max-width: none !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 10px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, .98) !important;
    border: 1px solid rgba(20, 36, 71, .14) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 42px rgba(15, 31, 58, .16) !important;
  }

  body.da-course-page .da-course-nav.open {
    display: flex !important;
  }

  body.da-course-page .da-course-nav a,
  body.da-course-page .da-course-nav a:visited {
    width: 100% !important;
    padding: 12px 10px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
    text-align: left !important;
  }

  body.da-course-page .da-course-nav a:hover {
    background: rgba(0, 119, 255, .08) !important;
  }
}

@media (max-width: 760px) {
  body.da-course-page > .da-course-header nav.da-course-nav {
    display: none !important;
  }

  body.da-course-page > .da-course-header nav.da-course-nav.open {
    display: flex !important;
  }
}

/* Final Education logo alignment: match the main company header's left placement. */
body.education-pro-body > .edu-header {
  padding-left: var(--page-x) !important;
  justify-items: stretch !important;
}

body.education-pro-body .edu-brand {
  justify-self: start !important;
  margin-left: 0 !important;
}

@media (max-width: 760px) {
  body.education-pro-body > .edu-header {
    padding-left: 12px !important;
    padding-right: 12px !important;
    justify-items: stretch !important;
  }

  body.education-pro-body .edu-brand {
    justify-self: start !important;
    width: auto !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }
}
