﻿: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;
  min-height: calc(100svh - 108px);
  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%, 1180px);
  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);
}

.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;
}

.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: translate3d(-1%, -1%, 0) scale(1.16);
  transform-origin: center center;
  backface-visibility: hidden;
  image-rendering: auto;
  filter: saturate(1.04) contrast(1.02) brightness(1.08);
  opacity: 0;
  transition: opacity .55s ease;
  display: block;
}

.education-media video {
  transform: translate3d(-2.2%, -2%, 0) scale(1.2);
}

.energy-media video {
  transform: translate3d(-1.4%, -1.5%, 0) scale(1.17);
}

.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-top: clamp(54px, 6vw, 86px);
  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(920px, 100%);
  margin: 0 auto 28px;
  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: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 2.25vw, 36px);
  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: 15px;
  line-height: 1.7;
}

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

.home-unit-feature-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  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: 18px;
}

.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 16px;
  color: var(--ink);
  font-size: clamp(20px, 1.55vw, 28px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

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

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

.home-unit-flow span {
  min-height: 86px;
  padding: 14px;
  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;
}

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

.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-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: 2px 0 10px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.home-feature-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: var(--education-deep);
  background: #ffffff;
  font-size: 14px;
  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 a:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.home-unit-feature-card .btn {
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 22px;
  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/business-units/energy.jpg"); }
.unit-grid article:nth-child(2) { --unit-img: url("assets/business-units/education.jpg"); }
.unit-grid article:nth-child(3) { --unit-img: url("assets/business-units/networks.jpg"); }
.unit-grid article:nth-child(4) { --unit-img: url("assets/business-units/digital.jpg"); }
.unit-grid article:nth-child(5) { --unit-img: url("assets/business-units/automation.jpg"); }
.unit-grid article:nth-child(6) { --unit-img: url("assets/business-units/ai-data.jpg"); }
.unit-grid article:nth-child(7) { --unit-img: url("assets/business-units/commerce.jpg"); }
.unit-grid article:nth-child(8) { --unit-img: url("assets/business-units/healthcare.jpg"); }
.unit-grid article:nth-child(9) { --unit-img: url("assets/business-units/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-slides/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-slides/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/business-units/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/business-units/education.jpg"); }
.columns > div:nth-child(2) { --section-img: url("assets/business-units/automation.jpg"); }
.columns > div:nth-child(3) { --section-img: url("assets/business-units/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/business-units/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/business-units/digital.jpg"); }
.cards article:nth-child(2) { --section-img: url("assets/business-units/smart-cities-iot.jpg"); }
.cards article:nth-child(3) { --section-img: url("assets/business-units/networks.jpg"); }
.cards article:nth-child(4) { --section-img: url("assets/business-units/automation.jpg"); }
.lower-grid article:nth-child(1) { --section-img: url("assets/business-units/energy.jpg"); }
.lower-grid article:nth-child(2) { --section-img: url("assets/business-units/ai-data.jpg"); }
.lower-grid article:nth-child(3) { --section-img: url("assets/business-units/education.jpg"); }
.lower-grid article:nth-child(4) { --section-img: url("assets/business-units/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/hero-slides/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/hero-slides/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/business-units/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/business-units/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/business-units/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: 108px;
  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(3, minmax(170px, 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, .62);
  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;
}

.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/energy-cards/solar-energy.png"); }
.energy-home-gallery article:nth-child(2) { --energy-img: url("assets/energy-cards/wind-energy.png"); }
.energy-home-gallery article:nth-child(3) { --energy-img: url("assets/energy-cards/rooftop-solar.png"); background-position: center; }
.energy-home-gallery article:nth-child(4) { --energy-img: url("assets/energy-cards/ground-mounted-solar.png"); background-position: center; }
.energy-home-gallery article:nth-child(5) { --energy-img: url("assets/energy-cards/solar-water-pumping.png"); background-position: center; }
.energy-home-gallery article:nth-child(6) { --energy-img: url("assets/energy-cards/solar-street-lighting.png"); }
.energy-home-gallery article:nth-child(7) { --energy-img: url("assets/energy-cards/solar-power-plants.png"); background-position: center; }
.energy-home-gallery article:nth-child(8) { --energy-img: url("assets/energy-cards/transmission-switchyard.png"); }
.energy-home-gallery article:nth-child(9) { --energy-img: url("assets/energy-cards/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-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 {
    min-height: calc(100svh - 82px);
  }
  .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;
  }
  .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 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: 88px;
    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 {
    font-size: clamp(20px, 6vw, 28px);
  }
  .brand-mantra-grid article {
    min-height: auto;
  }
  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: 1fr; gap: 22px; }
  .footer-connect { width: 100%; }
  .social-row { gap: 18px; margin-bottom: 20px; }
  .footer-subscribe {
    grid-template-columns: 1fr 52px;
    width: 100%;
  }
  .footer-emblem { align-self: flex-start; }
  .footer-emblem img { width: 230px; }
  .footer-bottom {
    width: calc(100% - 36px);
    flex-direction: column;
  }
  .about-hero { padding-top: 52px; }
  .about-jump {
    top: 82px;
    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 - 82px); }
  .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;
  }
}


