:root {
  --ink: #243744;
  --muted: #73818b;
  --dark: #111a20;
  --panel: #1c2a33;
  --black: #111;
  --soft: #f4f6f7;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --max-page: 1500px;
  --page-pad: clamp(18px, 4vw, 48px);
  --section-pad: clamp(48px, 7vw, 96px);
  --z-bg: 0;
  --z-media: 1;
  --z-content: 4;
  --z-header: 20;
  --z-overlay: 30;
  --z-fixed: 40;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

:focus-visible {
  outline: 3px solid #7aa7bf;
  outline-offset: 4px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(36, 55, 68, 0.12), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(122, 167, 191, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f8 48%, #ffffff 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: #111a20;
  transform: translateY(-100%);
  opacity: 0;
}

body.is-transitioning::after {
  animation: pageVeil 0.62s var(--ease) both;
}

.cinema-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #111a20, #7aa7bf);
  transform-origin: left;
  transform: scaleX(var(--scroll-progress, 0));
  pointer-events: none;
}

.cursor-aura {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(122, 167, 191, 0.18), rgba(122, 167, 191, 0.06) 38%, transparent 68%);
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translate3d(var(--cursor-x, -300px), var(--cursor-y, -300px), 0) scale(var(--cursor-scale, 1));
  transition: opacity 0.28s var(--ease), transform 0.18s linear;
}

body.has-pointer .cursor-aura {
  opacity: 1;
}

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

img {
  max-width: 100%;
}

.site-header {
  width: min(var(--max-page), calc(100% - 96px));
  height: 148px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  position: relative;
  z-index: var(--z-header);
  transition: height 0.45s var(--ease), transform 0.45s var(--ease);
}

body.is-loaded .site-header {
  animation: pageRise 0.85s var(--ease) both;
}

.brand {
  width: fit-content;
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-left: 18px;
  color: #111a20;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.brand-mark {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding: 8px;
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 255, 255, 0.98), rgba(242, 245, 246, 0.94) 58%, rgba(226, 232, 235, 0.9)),
    linear-gradient(145deg, #fff, #eef3f5);
  border: 1px solid rgba(17, 26, 32, 0.08);
  box-shadow: 0 18px 42px rgba(17, 26, 32, 0.12);
  overflow: hidden;
}

.brand img {
  width: 100%;
  display: block;
  filter: contrast(1.18) brightness(0.82);
}

.brand-tagline {
  max-width: 175px;
  color: #273b49;
  font-size: 10.5px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-align: center;
}

.brand:hover {
  transform: translateY(-2px) scale(1.03);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: #6d7b86;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-nav > a,
.nav-dropdown > a {
  position: relative;
  padding: 60px 0 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.site-nav > a:hover,
.nav-dropdown > a:hover {
  color: #1b2d39;
  transform: translateY(-2px);
}

.site-nav .is-active::before,
.nav-dropdown.is-active > a::before {
  content: "";
  width: 118px;
  height: 4px;
  background: #171717;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  animation: navLine 0.7s var(--ease) both;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: 112px;
  transform: translateX(-50%) translateY(10px);
  min-width: 190px;
  background: #fff;
  padding: 20px 24px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.dropdown-menu a {
  display: block;
  padding: 6px 0;
  color: #64727c;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.dropdown-menu a:hover {
  color: #111;
  transform: translateX(6px);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.menu-toggle {
  display: none;
}

main {
  width: min(var(--max-page), calc(100% - 96px));
  margin: 0 auto;
}

.hero {
  min-height: clamp(430px, 58vh, 560px);
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.cinematic-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.solution-motion-board .cinematic-canvas,
.animated-storyboard .cinematic-canvas,
.contact-route .cinematic-canvas {
  opacity: 0.32;
  mix-blend-mode: multiply;
}

.hero-content,
.hero > h1,
.industry-hero-content,
.industry-metrics,
.company-hero > div,
.company-hero figure,
.education-hero__copy,
.education-hero__panel,
.sector-detail-copy,
.sector-route,
.solution-motion-board > div,
.student-consultancy-preview > div,
.education-solution-strip > div,
.animated-storyboard > div,
.contact-route > div,
.coverage-board > div,
body[data-page="why"] .why-hero-copy,
body[data-page="why"] .why-hero-visual,
body[data-page="why"] .student-cinema-copy,
body[data-page="why"] .student-cinema-board {
  position: relative;
  z-index: 3;
}

.hero,
.industry-hero,
.company-hero,
.education-hero,
.sector-detail-hero,
body[data-page="why"] .why-page-hero {
  box-shadow: 0 28px 90px rgba(17, 26, 32, 0.12);
}

.hero::before,
.industry-hero::after,
.company-hero::before,
.education-hero::before,
.sector-detail-hero::after,
body[data-page="why"] .why-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.13) 42%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 92px);
  transform: translateX(-120%);
  animation: cinematicSweep 8s var(--ease) infinite;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.company-hero,
.education-hero,
.sector-detail-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.motion-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.motion-field::before {
  content: "";
  position: absolute;
  inset: 12%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.72;
  transform: perspective(700px) rotateX(58deg) translateY(50px);
  transform-origin: center bottom;
  animation: gridDrift 18s linear infinite;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 72%);
}

.motion-field span {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(1px);
  animation: floatPanel 14s var(--ease) infinite alternate;
}

.motion-field span:nth-child(1) {
  right: 10%;
  top: 18%;
  transform: rotate(14deg);
}

.motion-field span:nth-child(2) {
  left: 9%;
  bottom: 13%;
  width: 130px;
  height: 130px;
  animation-delay: -4s;
}

.motion-field span:nth-child(3) {
  right: 28%;
  bottom: 18%;
  width: 92px;
  height: 92px;
  animation-delay: -7s;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(9, 15, 20, 0.36), rgba(9, 15, 20, 0));
  pointer-events: none;
}

.page-hero {
  min-height: clamp(360px, 48vh, 460px);
}

.hero-overlay,
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 21, 29, 0.58);
}

.contact-hero {
  background-image: url("assets/images/contact-hero.jpg");
}

.solution-hero {
  min-height: clamp(440px, 58vh, 540px);
  background-image: url("assets/images/solutions-hero.jpg");
  align-content: center;
  padding-bottom: 0;
  margin-bottom: 92px;
  overflow: visible;
}

.why-hero {
  background-image: url("assets/images/why-hero.jpg");
}

.hero h1,
.industry-hero h1 {
  position: relative;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.08;
  margin: 0;
  font-weight: 800;
  text-align: center;
  text-wrap: balance;
}

body.is-loaded .hero-content,
body.is-loaded .industry-hero-content,
body.is-loaded .education-hero__copy {
  animation: contentLift 1s var(--ease) 0.12s both;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 1050px;
  padding: 0 24px;
  color: #fff;
}

.hero-content p,
.industry-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 500;
  color: #fff;
}

.hero-content.narrow {
  max-width: 760px;
}

.pathway-cinema {
  position: absolute;
  inset: 8% 5% 7%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.38;
}

.pathway-cinema svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.24));
}

.route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.route-main {
  stroke: rgba(255, 255, 255, 0.46);
  stroke-width: 2.5;
  animation: routeDraw 1.8s var(--ease) 0.35s both, routeGlow 3.8s var(--ease) 2s infinite;
}

.route-soft {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5;
  animation: routeDraw 2.1s var(--ease) 0.55s both;
}

.pathway-chip {
  position: absolute;
  display: none;
  min-width: 190px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
  animation: chipEnter 0.9s var(--ease) both, floatChip 7s var(--ease) 1.4s infinite alternate;
}

.pathway-chip span {
  display: block;
  margin-bottom: 5px;
  color: #cfd8de;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.pathway-chip strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.chip-one {
  left: 4%;
  bottom: 18%;
  animation-delay: 0.75s, 1.7s;
}

.chip-two {
  left: 42%;
  top: 18%;
  animation-delay: 0.98s, 1.9s;
}

.chip-three {
  right: 4%;
  bottom: 26%;
  animation-delay: 1.2s, 2.1s;
}

.solution-pillars {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 300px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-pillars div {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background: rgba(31, 50, 61, 0.72);
  text-align: center;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 800;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.solution-pillars div:hover {
  transform: translateY(-10px);
  background: rgba(31, 50, 61, 0.88);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
}

.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 90px 86px 120px;
  align-items: start;
}

.split-intro h2,
.contact-copy h2,
.solutions-list h2,
.industry-main h2,
.sector-showcase h2,
.why-copy h2 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.18;
  margin: 0;
}

.split-intro h2,
.contact-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.split-intro p,
.contact-copy p,
.service-card p,
.sector-grid p,
.feature-grid p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.solutions-list {
  padding: 0 150px 96px;
}

.solutions-list h2,
.industry-main h2,
.sector-showcase h2,
.why-copy h2 {
  text-align: center;
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 70px;
}

.card-grid,
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 58px;
}

.service-card {
  background: #fff;
  box-shadow: 0 18px 40px rgba(21, 38, 50, 0.08);
  padding-bottom: 36px;
  overflow: hidden;
  position: relative;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.service-card,
.sector-grid article,
.feature-grid div,
.company-services-overview article,
.education-card-grid article,
.process-timeline article,
.sector-detail-grid article,
body[data-page="why"] .why-journey article,
body[data-page="why"] .why-proof-grid,
body[data-page="why"] .why-path-card {
  transform-style: preserve-3d;
}

.service-card:hover,
.sector-grid article:hover,
.company-services-overview article:hover,
.education-card-grid article:hover,
.sector-detail-grid article:hover,
body[data-page="why"] .why-journey article:hover {
  filter: saturate(1.04);
}

.service-card::after,
.company-services-overview article::after,
.education-card-grid article::after,
.process-timeline article::after,
.feature-grid div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.48), transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(21, 38, 50, 0.16);
}

.service-card:hover::after,
.company-services-overview article:hover::after,
.education-card-grid article:hover::after,
.process-timeline article:hover::after,
.feature-grid div:hover::after {
  transform: translateX(120%);
}

.service-card img,
.sector-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.service-card:hover img,
.sector-grid article:hover img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.03);
}

.service-card h3 {
  font-size: 29px;
  line-height: 1.1;
  margin: 0 36px;
  color: var(--ink);
}

.service-card p {
  margin: 8px 36px 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 106px 86px 90px;
}

.contact-copy .compact {
  color: #4d5961;
  margin: 28px 0;
  font-size: 16px;
}

.contact-form {
  background: #fff;
  padding: 46px;
  box-shadow: 0 0 55px rgba(27, 42, 52, 0.08);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(27, 42, 52, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  border: 0;
  background: #f2f5f6;
  color: #4d5961;
  padding: 22px 24px;
  margin-bottom: 18px;
  font: 600 15px "Poppins", Arial, sans-serif;
  outline: none;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

input:focus,
textarea:focus {
  background: #fff;
  box-shadow: inset 0 0 0 2px #1c2a33, 0 14px 30px rgba(28, 42, 51, 0.08);
  transform: translateY(-1px);
}

textarea {
  min-height: 210px;
  resize: vertical;
}

button,
.cta a {
  border: 0;
  background: #101010;
  color: #fff;
  font: 700 15px "Poppins", Arial, sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

button:hover,
.cta a:hover,
.company-hero a:hover {
  transform: translateY(-3px);
  background: #22323d;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.contact-form button {
  width: 100%;
  height: 72px;
}

.form-status {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.form-status.success {
  color: #1b6f45;
}

.form-status.error {
  color: #b3261e;
}

.submission-toast {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(122, 167, 191, 0.22), transparent 30%),
    rgba(8, 13, 17, 0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.submission-toast.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.submission-toast__panel {
  width: min(560px, 100%);
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: clamp(32px, 6vw, 54px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 248, 0.96)),
    radial-gradient(circle at top right, rgba(122, 167, 191, 0.22), transparent 34%);
  color: var(--ink);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.55s var(--ease);
}

.submission-toast.is-open .submission-toast__panel {
  transform: translateY(0) scale(1);
}

.submission-toast__panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(36, 55, 68, 0.12);
  pointer-events: none;
}

.submission-toast__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.72) 42%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(36, 55, 68, 0.05) 0 1px, transparent 1px 74px);
  transform: translateX(-120%);
  animation: confirmationSweep 1.35s var(--ease) 0.12s both;
  pointer-events: none;
}

.submission-toast__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.submission-toast__icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: #111a20;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(17, 26, 32, 0.22);
  position: relative;
}

.submission-toast__icon::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(17, 26, 32, 0.16);
  border-radius: inherit;
  animation: confirmationPulse 1.8s var(--ease) infinite;
}

.submission-toast__icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.submission-toast__eyebrow {
  margin: 0 0 10px;
  color: #7c8a94;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.submission-toast h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

.submission-toast p:not(.submission-toast__eyebrow) {
  max-width: 420px;
  margin: 16px 0 0;
  color: #5c6972;
  font-size: 16px;
  font-weight: 600;
}

.submission-toast__button {
  min-height: 54px;
  margin-top: 28px;
  padding: 0 26px;
  background: #111a20;
  color: #fff;
  font-weight: 800;
}

.submission-toast[data-type="error"] .submission-toast__icon {
  background: #7f1d1d;
}

.submission-toast[data-type="error"] .submission-toast__icon::before {
  border-color: rgba(127, 29, 29, 0.2);
}

@keyframes confirmationSweep {
  to {
    transform: translateX(120%);
  }
}

@keyframes confirmationPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

.map-section {
  padding: 0 86px 70px;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  min-height: 420px;
  background: #111a20;
  color: #fff;
  box-shadow: 0 28px 80px rgba(17, 26, 32, 0.16);
  overflow: hidden;
}

.map-card__copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 56px);
  background:
    linear-gradient(145deg, rgba(17, 26, 32, 0.98), rgba(31, 49, 60, 0.92)),
    radial-gradient(circle at 20% 15%, rgba(122, 167, 191, 0.22), transparent 34%);
  position: relative;
  overflow: hidden;
}

.map-card__copy::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-7deg);
  pointer-events: none;
}

.map-card__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.16;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.map-card__copy .eyebrow {
  position: relative;
  z-index: 1;
}

.map-card__copy a {
  width: fit-content;
  min-height: 54px;
  display: inline-grid;
  place-items: center;
  margin-top: 26px;
  padding: 0 24px;
  background: #fff;
  color: #111a20;
  font-weight: 800;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.map-card__copy a:hover {
  transform: translateY(-4px);
  background: #eef3f5;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.industry-hero {
  min-height: clamp(480px, 62vh, 570px);
  background: var(--dark);
  display: grid;
  place-content: center;
  text-align: center;
  padding: clamp(54px, 7vw, 78px) 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.staffing-hero {
  place-content: center;
}

.staffing-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(15, 24, 31, 0.92), rgba(15, 24, 31, 0.74)),
    url("assets/images/business-meeting.jpg") center/cover;
  transform: scale(1.04);
  animation: slowZoom 16s var(--ease) infinite alternate;
}

.staffing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

.industry-hero-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: #aeb8bf;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.industry-metrics {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(820px, calc(100% - 80px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  z-index: 2;
}

.industry-metrics div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
}

.industry-metrics strong {
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.industry-metrics span {
  color: #d8dee2;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.industry-main {
  padding: 125px 0 50px;
}

.industry-panel {
  background: #101010;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 72px 156px;
  position: relative;
  overflow: hidden;
}

.industry-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 100% 54px;
  pointer-events: none;
}

.industry-panel a {
  min-height: 295px;
  background: var(--panel);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 25, 31, 0.74);
}

.hospitality-card::before {
  background-image: url("assets/images/hospitality.jpg");
}

.warehouse-card::before {
  background-image: url("assets/images/warehouse.jpg");
}

.event-card::before {
  background-image: url("assets/images/event.jpg");
}

.cleaning-card::before {
  background-image: url("assets/images/cleaning.jpg");
}

.industry-card small {
  position: absolute;
  top: 26px;
  left: 26px;
  color: #cbd4da;
  font-size: 13px;
  letter-spacing: 1.6px;
}

.industry-panel a:hover {
  transform: translateY(-12px);
  background: #263844;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.34);
}

.industry-panel a:hover::before {
  opacity: 0.55;
  transform: scale(1.08);
}

.industry-panel span {
  display: block;
  margin-top: 22px;
  color: #b9c2c8;
  font-size: 24px;
}

.sector-showcase {
  margin: 55px 82px 0;
  padding: 120px 24px 70px;
  background: linear-gradient(rgba(18, 14, 13, 0.68), rgba(18, 14, 13, 0.68)), url("assets/images/home-banner.jpg") center/cover;
}

.sector-showcase h2 {
  color: #fff;
}

.sector-grid {
  gap: 22px;
}

.sector-grid article {
  background: #fff;
  overflow: hidden;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.sector-grid article:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.18);
}

.sector-grid div {
  min-height: 185px;
  padding: 34px 48px;
  text-align: center;
}

.sector-grid h3 {
  margin: 0 0 18px;
  font-size: 28px;
  color: var(--ink);
}

.why-copy {
  padding: 100px 100px 70px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.feature-grid div {
  background: #f8fafb;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.feature-grid div:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 24px 55px rgba(21, 38, 50, 0.12);
}

.feature-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.student-consultancy-preview,
.solution-motion-board,
.education-solution-strip,
.animated-storyboard {
  position: relative;
  overflow: hidden;
}

.student-consultancy-preview {
  margin: 84px 82px 0;
  padding: 78px 74px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
  background:
    linear-gradient(125deg, rgba(17, 26, 32, 0.98), rgba(29, 47, 58, 0.9)),
    url("assets/images/business-meeting.jpg") center/cover;
  color: #fff;
}

.student-consultancy-preview h2,
.solution-motion-board h2,
.education-solution-strip h2,
.animated-storyboard h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  text-wrap: balance;
}

.student-consultancy-preview p:not(.eyebrow),
.solution-motion-board p,
.education-solution-strip p,
.animated-storyboard p {
  color: #d5dde2;
  font-size: 17px;
  font-weight: 500;
}

.student-consultancy-preview a,
.education-solution-strip a {
  display: inline-grid;
  place-items: center;
  min-height: 62px;
  margin-top: 20px;
  padding: 0 28px;
  background: #fff;
  color: #111a20;
  font-weight: 800;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.student-consultancy-preview a:hover,
.education-solution-strip a:hover {
  transform: translateY(-4px);
  background: #eef2f4;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.motion-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.motion-map::before,
.motion-map::after {
  content: "";
  position: absolute;
  inset: 18% 8%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-8deg);
  animation: outlineDrift 14s var(--ease) infinite alternate;
}

.motion-map::after {
  inset: 30% 18%;
  transform: rotate(9deg);
  animation-delay: -6s;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.09);
  animation: nodePulse 2.8s var(--ease) infinite;
}

.node-a { left: 16%; top: 30%; }
.node-b { right: 24%; top: 22%; animation-delay: -0.8s; }
.node-c { left: 38%; bottom: 18%; animation-delay: -1.5s; }
.node-d { right: 12%; bottom: 32%; animation-delay: -2.1s; }

.consultancy-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.consultancy-flow article {
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
}

.consultancy-flow article:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.consultancy-flow span {
  color: #b7c3ca;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.consultancy-flow strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: 22px;
}

.consultancy-flow p {
  margin: 0;
  color: #d5dde2;
  font-size: 15px;
}

.cta {
  min-height: 180px;
  background: url("assets/images/cta.jpg") center/cover;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 410px;
  align-items: center;
  gap: 40px;
  padding: 0 86px;
  margin: 0 0 82px;
  overflow: hidden;
  isolation: isolate;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(255, 255, 255, 0.06));
  transform: translateX(-100%);
  animation: ctaSheen 7s var(--ease) infinite;
}

.cta h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  margin: 0;
  font-weight: 800;
}

.cta a {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 72px;
  text-align: center;
}

.site-footer {
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
  color: #66747f;
  padding: 0 0 70px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.footer-brand-lockup {
  width: fit-content;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-brand-lockup .brand-mark {
  width: 78px;
  height: 78px;
}

.footer-brand-lockup .brand-tagline {
  max-width: 160px;
  font-size: 9px;
}

.footer-brand h2 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 18px;
}

.site-footer h5 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 10px 0;
}

.compact-footer {
  text-align: center;
  padding-top: 16px;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 13px 19px 13px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.whatsapp svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: #25d366;
}

.whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
  will-change: opacity, transform;
}

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

.staffing-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 36px 86px 54px;
}

.staffing-process div {
  background: #f7f9fa;
  padding: 38px;
  min-height: 250px;
  border-top: 4px solid #18252d;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.staffing-process div:hover {
  transform: translateY(-9px);
  background: #fff;
  box-shadow: 0 24px 55px rgba(21, 38, 50, 0.12);
}

.staffing-process span,
.company-values span {
  color: #8996a0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.staffing-process h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.staffing-process p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.company-hero {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 70px;
  align-items: center;
  min-height: clamp(500px, 62vh, 590px);
  padding: clamp(54px, 7vw, 74px) 86px;
  background: #f6f8f9;
}

.company-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

.company-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
}

.company-hero a {
  display: inline-grid;
  place-items: center;
  min-height: 66px;
  padding: 0 32px;
  margin-top: 22px;
  background: #101010;
  color: #fff;
  font-weight: 800;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.company-hero figure {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 30px 75px rgba(25, 39, 49, 0.18);
}

.company-hero img {
  width: 100%;
  height: clamp(360px, 42vw, 460px);
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}

.company-hero figure:hover img {
  transform: scale(1.06);
}

.company-services-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 80px 86px 28px;
  background: #fff;
}

.company-services-overview article {
  position: relative;
  overflow: hidden;
  padding: 42px;
  background: #f7f9fa;
  border: 1px solid rgba(21, 38, 50, 0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.company-services-overview article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: #111a20;
}

.company-services-overview article:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 28px 64px rgba(20, 36, 48, 0.12);
}

.company-services-overview span {
  color: #8996a0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.company-services-overview h2 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.company-services-overview p {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.8;
}

.company-services-overview ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.company-services-overview li {
  position: relative;
  padding-left: 24px;
  color: #4f5e68;
  font-weight: 700;
}

.company-services-overview li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 9px;
  background: #111a20;
}

.company-services-overview a {
  display: inline-grid;
  place-items: center;
  min-height: 54px;
  padding: 0 22px;
  background: #111a20;
  color: #fff;
  font-weight: 800;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.company-services-overview a:hover {
  transform: translateY(-3px);
  background: #263844;
}

.company-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 95px 86px 32px;
}

.company-values article {
  padding: 36px;
  background: #111a20;
  color: #fff;
  min-height: 265px;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}

.company-values article:hover {
  transform: translateY(-10px);
  background: #1d2b35;
}

.company-values h2 {
  font-size: 25px;
  line-height: 1.2;
  margin: 18px 0 12px;
}

.company-values p {
  margin: 0;
  color: #cad2d7;
}

.proof-strip {
  margin: 34px 86px 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #101010;
  color: #fff;
  box-shadow: 0 28px 70px rgba(20, 32, 42, 0.14);
  overflow: hidden;
}

.proof-strip div {
  min-height: 172px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.proof-strip div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.proof-strip div:hover::before {
  opacity: 1;
}

.proof-strip strong {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  font-weight: 800;
}

.proof-strip span {
  color: #cfd6db;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.service-promise {
  padding: 0 86px 96px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.service-promise h2,
.coverage-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.13;
  font-weight: 800;
  text-wrap: balance;
}

.promise-list {
  display: grid;
  gap: 18px;
}

.promise-list article {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0 22px;
  padding: 26px 30px;
  background: #f7f9fa;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.promise-list article:hover {
  transform: translateX(10px);
  background: #fff;
  box-shadow: 0 20px 48px rgba(21, 38, 50, 0.12);
}

.promise-list article span {
  grid-row: span 2;
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: #101010;
  box-shadow: 0 0 0 8px rgba(16, 16, 16, 0.08);
}

.promise-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.promise-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.company-band,
.faq-section,
.privacy-note {
  padding: 80px 120px;
}

.company-band {
  background: linear-gradient(rgba(14, 22, 29, 0.76), rgba(14, 22, 29, 0.76)), url("assets/images/cta.jpg") center/cover;
  color: #fff;
  text-align: center;
}

.company-band h2,
.faq-section h2,
.privacy-note h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
  font-weight: 800;
}

.company-band p {
  max-width: 760px;
  margin: 0 auto;
  color: #d7dee3;
  font-size: 18px;
}

.faq-section details {
  border: 1px solid #e0e5e8;
  border-bottom: 0;
  padding: 0;
  background: #fff;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.faq-section details:last-child {
  border-bottom: 1px solid #e0e5e8;
}

.faq-section details[open] {
  box-shadow: 0 18px 42px rgba(21, 38, 50, 0.08);
  transform: translateY(-2px);
}

.faq-section summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  padding: 24px 28px;
  list-style: none;
  position: relative;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a98a2;
  font-size: 24px;
  transition: transform 0.3s var(--ease);
}

.faq-section details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-section p,
.privacy-note p {
  max-width: 840px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.faq-section details p {
  margin: 0;
  padding: 0 28px 26px;
}

.education-hero {
  min-height: clamp(510px, 64vh, 590px);
  padding: clamp(54px, 7vw, 76px) 86px;
  display: grid;
  grid-template-columns: 1.1fr 0.55fr;
  gap: 60px;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(14, 23, 30, 0.95), rgba(21, 34, 43, 0.74)),
    url("assets/images/business-meeting.jpg") center/cover;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.education-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: rotate(20deg);
}

.education-hero__copy,
.education-hero__panel {
  position: relative;
  z-index: 1;
}

.education-hero h1,
.education-split h2,
.section-heading h2,
.portal-intro h2,
.partner-section h2,
.privacy-education h2,
.education-final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

.portal-intro h2 {
  font-size: clamp(34px, 4vw, 58px);
}

section[id],
.portal-section {
  scroll-margin-top: 96px;
}

.education-hero__copy > p:not(.eyebrow):not(.trust-line) {
  max-width: 840px;
  color: #d9e0e4;
  font-size: 20px;
  font-weight: 500;
}

.education-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.education-actions a,
.portal-form button {
  min-height: 62px;
  display: inline-grid;
  place-items: center;
  padding: 0 28px;
  border: 0;
  background: #101010;
  color: #fff;
  font-weight: 800;
  font-family: "Poppins", Arial, sans-serif;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.education-actions a:nth-child(2),
.education-actions.compact a {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.education-actions a:hover,
.portal-form button:hover {
  transform: translateY(-4px);
  background: #243744;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.trust-line {
  margin: 20px 0 0;
  color: #cbd4da;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.education-hero__panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  padding: 32px;
  display: grid;
  gap: 16px;
}

.education-hero__panel span,
.education-hero__panel small {
  color: #d8e0e5;
  font-weight: 700;
}

.education-hero__panel a {
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.education-hero__panel a:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.2);
}

.compliance-banner {
  margin: 46px 86px;
  padding: 30px 34px;
  border-left: 5px solid #101010;
  background: #f5f7f8;
  box-shadow: 0 18px 45px rgba(21, 38, 50, 0.08);
}

.compliance-banner strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.compliance-banner p,
.education-split p,
.section-heading p,
.portal-intro p,
.partner-section p,
.privacy-education p,
.education-final-cta p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.journey-bar {
  position: sticky;
  top: 0;
  z-index: 18;
  margin: 0 86px;
  display: flex;
  gap: 1px;
  background: #101010;
  box-shadow: 0 18px 42px rgba(21, 38, 50, 0.14);
}

.journey-bar a {
  flex: 1;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.journey-bar a:hover {
  background: #243744;
  transform: translateY(-2px);
}

.education-split,
.partner-section,
.privacy-education {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 74px;
  padding: 80px 86px;
  align-items: start;
}

.note-box {
  padding: 22px 24px;
  background: #eef2f4;
  color: var(--ink) !important;
  font-weight: 700 !important;
}

.note-box.dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.education-services,
.student-process,
.course-areas,
.why-education,
.education-faq {
  padding: 82px 86px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 46px;
}

.education-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.education-card-grid article,
.process-timeline article {
  min-height: 270px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(21, 38, 50, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.education-card-grid article:hover,
.process-timeline article:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 62px rgba(21, 38, 50, 0.14);
}

.education-card-grid span,
.process-timeline span {
  color: #8b98a2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.education-card-grid h3,
.process-timeline h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
}

.education-card-grid p,
.process-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.student-process {
  background: #f7f9fa;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(235px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.process-timeline article {
  min-height: 245px;
}

.course-areas {
  background: #fff;
}

.course-grid,
.trust-grid,
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.course-grid span,
.trust-grid span,
.partner-benefits span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: #f4f6f7;
  color: var(--ink);
  font-weight: 800;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.course-grid span:hover,
.trust-grid span:hover,
.partner-benefits span:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 18px 38px rgba(21, 38, 50, 0.1);
}

.portal-section {
  margin: 70px 86px;
  padding: 60px;
  background: #101010;
  color: #fff;
}

.partner-portal {
  background: #f7f9fa;
  color: var(--ink);
}

.portal-intro {
  max-width: 880px;
  margin-bottom: 34px;
}

.submission-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: -8px 0 24px;
}

.submission-strip span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.submission-strip.light span {
  background: #fff;
  color: var(--ink);
  border-color: rgba(26, 44, 57, 0.1);
  box-shadow: 0 12px 28px rgba(26, 44, 57, 0.07);
}

.student-portal .portal-intro p,
.student-portal .portal-intro h2 {
  color: #fff;
}

.portal-form {
  background: #fff;
  padding: 34px;
  color: var(--ink);
}

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

.portal-grid label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.portal-grid .wide {
  grid-column: 1 / -1;
}

.portal-grid input,
.portal-grid select,
.portal-grid textarea {
  width: 100%;
  min-height: 58px;
  margin: 8px 0 0;
  border: 0;
  background: #f2f5f6;
  color: #4d5961;
  padding: 16px 18px;
  font: 600 15px "Poppins", Arial, sans-serif;
  outline: none;
}

.portal-grid input:focus,
.portal-grid select:focus,
.portal-grid textarea:focus {
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(26, 44, 57, 0.16), 0 10px 24px rgba(20, 36, 48, 0.08);
}

.portal-grid textarea {
  min-height: 130px;
}

.upload-field {
  border: 1px dashed rgba(26, 44, 57, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 249, 0.96)),
    radial-gradient(circle at top right, rgba(23, 137, 167, 0.18), transparent 32%);
  padding: 22px;
}

.upload-field input[type="file"] {
  border: 1px solid rgba(26, 44, 57, 0.1);
  cursor: pointer;
}

.upload-field span {
  display: block;
  color: #71818b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.check-line {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  color: #4d5961;
  font-size: 14px;
  font-weight: 600;
}

.check-line input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  flex: 0 0 auto;
}

.portal-form button {
  margin-top: 26px;
}

.portal-form button[disabled],
.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.partner-section {
  background:
    linear-gradient(120deg, rgba(17, 26, 32, 0.97), rgba(17, 26, 32, 0.9)),
    url("assets/images/cta.jpg") center/cover;
  color: #fff;
}

.partner-section h2,
.partner-section p,
.partner-section .eyebrow {
  color: #fff;
}

.partner-benefits span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-education {
  background: #fff;
}

.privacy-education {
  background: #101010;
  color: #fff;
  align-items: center;
}

.privacy-education h2,
.privacy-education p,
.privacy-education .eyebrow {
  color: #fff;
}

.education-faq {
  padding-top: 64px;
}

.education-final-cta {
  margin: 0 86px 90px;
  padding: 70px;
  background:
    linear-gradient(rgba(17, 26, 32, 0.78), rgba(17, 26, 32, 0.78)),
    url("assets/images/solutions-hero.jpg") center/cover;
  color: #fff;
}

.education-final-cta p,
.education-final-cta small {
  color: #d5dde2;
}

.coverage-board {
  margin: 0 86px 96px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  padding: 64px;
  background:
    linear-gradient(125deg, rgba(17, 26, 32, 0.96), rgba(17, 26, 32, 0.9)),
    url("assets/images/cta.jpg") center/cover;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.coverage-board::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -120px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  transform: rotate(18deg);
}

.coverage-intro {
  position: relative;
  z-index: 1;
}

.coverage-intro h2 {
  color: #fff;
}

.coverage-intro p:not(.eyebrow) {
  color: #cbd4da;
  font-size: 17px;
  font-weight: 500;
}

.coverage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.coverage-grid article {
  min-height: 170px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
}

.coverage-grid article:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.coverage-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 23px;
}

.coverage-grid span {
  color: #cbd4da;
  font-size: 15px;
  font-weight: 500;
}

.solution-motion-board {
  margin: 0 86px 98px;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 66px;
  align-items: center;
  background: #f7f9fa;
}

.solution-motion-board h2,
.education-solution-strip h2,
.animated-storyboard h2 {
  color: var(--ink);
}

.solution-motion-board p,
.education-solution-strip p,
.animated-storyboard p {
  color: var(--muted);
}

.pathway-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  align-items: center;
}

.pathway-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  background-image:
    linear-gradient(rgba(26, 44, 57, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 44, 57, 0.075) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 72%);
  animation: gridDrift 18s linear infinite;
}

.pathway-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 26, 32, 0), rgba(17, 26, 32, 0.65), rgba(17, 26, 32, 0));
  overflow: hidden;
}

.pathway-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, #111a20, transparent);
  animation: lineScan 4s var(--ease) infinite;
}

.pathway-dot {
  position: absolute;
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  background: #111a20;
  box-shadow: 0 0 0 9px rgba(17, 26, 32, 0.08);
  animation: nodePulse 3s var(--ease) infinite;
}

.dot-one { left: 18%; }
.dot-two { left: 50%; animation-delay: -1s; }
.dot-three { right: 18%; animation-delay: -2s; }

.pathway-card {
  position: absolute;
  width: min(300px, 44%);
  padding: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(21, 38, 50, 0.12);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 75px rgba(21, 38, 50, 0.17);
}

.pathway-card small {
  color: #8b98a2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pathway-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.staffing-card {
  left: 8%;
  top: 13%;
  animation: floatCard 8s var(--ease) infinite alternate;
}

.student-card {
  right: 8%;
  bottom: 12%;
  animation: floatCard 8s var(--ease) -3s infinite alternate;
}

.education-solution-strip {
  margin: 0 86px 96px;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(17, 26, 32, 0.96), rgba(17, 26, 32, 0.88)),
    url("assets/images/business-meeting.jpg") center/cover;
  color: #fff;
}

.education-solution-strip h2,
.education-solution-strip .eyebrow {
  color: #fff;
}

.education-solution-strip p {
  color: #d5dde2;
}

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

.education-solution-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  font-weight: 800;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.education-solution-grid span:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.animated-storyboard {
  margin: 0 100px 92px;
  padding: 68px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
  background: #f7f9fa;
}

.story-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.story-track::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: rgba(17, 26, 32, 0.18);
}

.story-track article {
  min-height: 170px;
  padding: 24px;
  display: grid;
  align-content: end;
  background: #fff;
  box-shadow: 0 18px 45px rgba(21, 38, 50, 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.story-track article::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 24px;
  top: 28px;
  background: #111a20;
  box-shadow: 0 0 0 12px rgba(17, 26, 32, 0.07);
  animation: nodePulse 3s var(--ease) infinite;
}

.story-track article:nth-child(even) {
  transform: translateY(26px);
}

.story-track article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(21, 38, 50, 0.14);
}

.story-track article:nth-child(even):hover {
  transform: translateY(12px);
}

.story-track span {
  color: #8b98a2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.story-track strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.scroll-narrative {
  margin: 0 86px 96px;
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 60px;
  align-items: center;
  padding: 70px;
  background:
    linear-gradient(120deg, rgba(17, 26, 32, 0.97), rgba(24, 40, 50, 0.92)),
    url("assets/images/cta.jpg") center/cover;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.scroll-narrative::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
  transform: perspective(760px) rotateX(58deg) translateY(70px);
  transform-origin: bottom;
  mask-image: linear-gradient(to bottom, transparent, #000 32%, transparent);
}

.story-pin,
.route-stage {
  position: relative;
  z-index: 1;
}

.story-pin h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  text-wrap: balance;
}

.story-pin p:not(.eyebrow) {
  color: #d5dde2;
  font-size: 17px;
  font-weight: 500;
}

.route-stage {
  min-height: 430px;
}

.route-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-base,
.route-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-base {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 3;
}

.route-progress {
  stroke: rgba(255, 255, 255, 0.84);
  stroke-width: 4;
  stroke-dasharray: 1000;
  stroke-dashoffset: var(--route-offset, 1000);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.26));
  transition: stroke-dashoffset 0.14s linear;
}

.route-stage article {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 190px;
  min-height: 108px;
  display: grid;
  align-content: end;
  padding: 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  transform: translate3d(-50%, -50%, 0) scale(0.94);
  opacity: 0.72;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease), background 0.45s var(--ease);
}

.route-stage article.is-current {
  opacity: 1;
  background: rgba(255, 255, 255, 0.18);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.route-stage article span {
  color: #cfd8de;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.route-stage article strong {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.sector-detail-hero {
  min-height: clamp(500px, 62vh, 580px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: var(--section-pad);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(17, 26, 32, 0.94), rgba(17, 26, 32, 0.66)),
    var(--sector-image) center/cover;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.sector-detail-hero::before {
  content: "";
  position: absolute;
  inset: 10% 5%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-4deg);
}

.hospitality-detail { --sector-image: url("assets/images/hospitality.jpg"); }
.warehouse-detail { --sector-image: url("assets/images/warehouse.jpg"); }
.event-detail { --sector-image: url("assets/images/event.jpg"); }
.cleaning-detail { --sector-image: url("assets/images/cleaning.jpg"); }

.sector-detail-copy {
  max-width: 780px;
}

.sector-detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.04;
  font-weight: 800;
  text-wrap: balance;
}

.sector-detail-copy p:not(.eyebrow) {
  color: #dbe3e8;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
}

.sector-detail-copy a {
  display: inline-grid;
  place-items: center;
  min-height: 64px;
  margin-top: 24px;
  padding: 0 28px;
  background: #fff;
  color: #111a20;
  font-weight: 800;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.sector-detail-copy a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.sector-route {
  display: grid;
  gap: 14px;
  position: relative;
}

.sector-route::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.sector-route span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 22px 18px 58px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(12px);
  position: relative;
  transform: translateX(0);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}

.sector-route span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 14px;
  height: 14px;
  background: #fff;
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.08);
}

.sector-route span:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.18);
}

.sector-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: var(--section-pad);
}

.sector-detail-grid article {
  min-height: 270px;
  padding: 34px;
  background: #f7f9fa;
  border-top: 4px solid #111a20;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.sector-detail-grid article:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 24px 55px rgba(21, 38, 50, 0.12);
}

.sector-detail-grid span,
.sector-proof span {
  color: #8996a0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sector-detail-grid h2,
.sector-proof h2 {
  margin: 16px 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
}

.sector-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.sector-proof {
  margin: 0 clamp(24px, 6vw, 86px) 88px;
  padding: clamp(36px, 6vw, 64px);
  background: #111a20;
  color: #fff;
}

.sector-proof h2 {
  color: #fff;
  margin: 0 0 28px;
}

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

.sector-proof div span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact-route {
  margin: 0 86px 78px;
  padding: clamp(38px, 6vw, 68px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
  background: #111a20;
  color: #fff;
}

.contact-route h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 800;
  text-wrap: balance;
}

.contact-route p:not(.eyebrow) {
  color: #d5dde2;
  font-size: 17px;
  font-weight: 500;
}

.contact-route-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-route-steps span {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  font-weight: 800;
  position: relative;
}

.contact-route-steps span::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 14px;
  background: #fff;
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.08);
}

body[data-page="why"] main {
  display: grid;
  gap: clamp(42px, 6vw, 84px);
}

body[data-page="why"] .why-page-hero {
  min-height: clamp(480px, 58vh, 560px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  padding: clamp(38px, 5vw, 58px);
  background: #111a20;
  color: #fff;
  position: relative;
  isolation: isolate;
}

body[data-page="why"] .why-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(17, 26, 32, 0.96), rgba(17, 26, 32, 0.74)),
    url("assets/images/cta.jpg") center/cover;
}

body[data-page="why"] .why-cinema-light {
  position: absolute;
  inset: 12% 8% auto auto;
  z-index: 1;
  width: min(460px, 36vw);
  aspect-ratio: 1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 58%),
    conic-gradient(from 110deg, transparent, rgba(122, 167, 191, 0.18), transparent 42%);
  filter: blur(2px);
  opacity: 0.72;
  animation: outlineDrift 14s var(--ease) infinite alternate;
}

body[data-page="why"] .why-hero-copy {
  max-width: 820px;
}

body[data-page="why"] .why-hero-copy h1,
body[data-page="why"] .why-section-heading h2,
body[data-page="why"] .why-proof h2,
body[data-page="why"] .why-conclusion h2 {
  margin: 0;
  font-size: clamp(36px, 4.1vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

body[data-page="why"] .why-section-heading h2,
body[data-page="why"] .why-proof h2,
body[data-page="why"] .why-conclusion h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
}

body[data-page="why"] .why-hero-copy p:not(.eyebrow),
body[data-page="why"] .why-section-heading p,
body[data-page="why"] .why-journey p {
  max-width: 760px;
  color: #dbe3e8;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
  font-weight: 500;
}

body[data-page="why"] .why-section-heading p,
body[data-page="why"] .why-journey p {
  color: var(--muted);
}

body[data-page="why"] .why-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

body[data-page="why"] .why-hero-actions a,
body[data-page="why"] .why-conclusion a {
  min-height: 58px;
  display: inline-grid;
  place-items: center;
  padding: 0 28px;
  background: #fff;
  color: #111a20;
  font-weight: 800;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

body[data-page="why"] .why-hero-actions a:nth-child(2) {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

body[data-page="why"] .why-hero-actions a:hover,
body[data-page="why"] .why-conclusion a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

body[data-page="why"] .why-hero-visual {
  min-height: 360px;
  position: relative;
  display: grid;
  align-items: end;
}

body[data-page="why"] .why-hero-visual::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 16%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.55), rgba(255,255,255,0));
  transform: rotate(-18deg);
  pointer-events: none;
}

body[data-page="why"] .why-hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  display: block;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  filter: saturate(0.95) contrast(1.03);
}

body[data-page="why"] .why-film-strip {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(280px, 76%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(17, 26, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

body[data-page="why"] .why-film-strip span {
  min-height: 86px;
  background: var(--bg) center/cover;
  filter: saturate(0.92) contrast(1.02);
  animation: filmBreath 7s var(--ease) infinite alternate;
}

body[data-page="why"] .why-film-strip span:nth-child(2) {
  animation-delay: -2s;
}

body[data-page="why"] .why-film-strip span:nth-child(3) {
  animation-delay: -4s;
}

body[data-page="why"] .why-path-card {
  position: absolute;
  width: min(220px, 58%);
  padding: 17px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

body[data-page="why"] .why-path-card span,
body[data-page="why"] .why-journey span {
  color: #87949e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

body[data-page="why"] .why-path-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 19px;
}

body[data-page="why"] .why-path-card p {
  margin: 0;
  color: #53636e;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

body[data-page="why"] .why-path-card.card-a {
  left: -18px;
  top: 58px;
}

body[data-page="why"] .why-path-card.card-b {
  right: -12px;
  top: 42%;
}

body[data-page="why"] .why-path-card.card-c {
  left: 28px;
  bottom: -24px;
}

body[data-page="why"] .why-reasons,
body[data-page="why"] .why-proof,
body[data-page="why"] .why-sector-strip,
body[data-page="why"] .why-conclusion {
  padding: 0 clamp(24px, 6vw, 86px);
}

body[data-page="why"] .why-section-heading {
  max-width: 900px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

body[data-page="why"] .why-journey {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 22px;
  position: relative;
}

body[data-page="why"] .why-journey::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(17, 26, 32, 0.24), transparent);
  pointer-events: none;
}

body[data-page="why"] .why-journey article {
  min-height: 250px;
  padding: clamp(26px, 4vw, 42px);
  background: #f7f9fa;
  border: 1px solid rgba(21, 38, 50, 0.08);
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

body[data-page="why"] .why-journey article:nth-child(even) {
  transform: translateY(44px);
}

body[data-page="why"] .why-journey article:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(21, 38, 50, 0.12);
}

body[data-page="why"] .why-journey article:nth-child(even):hover {
  transform: translateY(30px);
}

body[data-page="why"] .why-journey h3 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

body[data-page="why"] .why-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

body[data-page="why"] .why-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #111a20;
  color: #fff;
  box-shadow: 0 26px 70px rgba(20, 32, 42, 0.15);
}

body[data-page="why"] .why-proof-grid article {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

body[data-page="why"] .why-proof-grid article:last-child {
  border-right: 0;
}

body[data-page="why"] .why-proof-grid strong {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
}

body[data-page="why"] .why-proof-grid span {
  color: #d5dde2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

body[data-page="why"] .why-sector-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

body[data-page="why"] .why-sector-strip a {
  min-height: 260px;
  display: grid;
  align-items: end;
  color: #fff;
  position: relative;
  overflow: clip;
  isolation: isolate;
  box-shadow: 0 18px 45px rgba(21, 38, 50, 0.08);
}

body[data-page="why"] .why-sector-strip img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

body[data-page="why"] .why-sector-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(17, 26, 32, 0.82), rgba(17, 26, 32, 0.12));
}

body[data-page="why"] .why-sector-strip a:hover img {
  transform: scale(1.06);
}

body[data-page="why"] .why-sector-strip span {
  padding: 24px;
  font-size: 24px;
  font-weight: 800;
}

body[data-page="why"] .why-conclusion {
  min-height: 240px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: clamp(40px, 6vw, 70px);
  padding-bottom: clamp(40px, 6vw, 70px);
  margin-bottom: 72px;
  background: #f7f9fa;
}

body[data-page="why"] .why-conclusion a {
  background: #111a20;
  color: #fff;
}

body[data-page="why"] .whatsapp {
  position: static;
  width: fit-content;
  margin: 0 auto 28px;
}

body[data-page="why"] .why-student-cinema {
  margin: 0 clamp(24px, 6vw, 86px);
  padding: clamp(42px, 7vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(125deg, rgba(17, 26, 32, 0.97), rgba(25, 43, 54, 0.88)),
    url("assets/images/business-meeting.jpg") center/cover;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body[data-page="why"] .why-student-cinema::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(720px) rotateX(58deg) translateY(40px);
  transform-origin: bottom;
  animation: gridDrift 18s linear infinite;
  opacity: 0.8;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

body[data-page="why"] .student-cinema-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

body[data-page="why"] .student-cinema-copy p:not(.eyebrow) {
  color: #d8e0e5;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

body[data-page="why"] .student-cinema-copy a {
  min-height: 62px;
  display: inline-grid;
  place-items: center;
  margin-top: 20px;
  padding: 0 26px;
  background: #fff;
  color: #111a20;
  font-weight: 800;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

body[data-page="why"] .student-cinema-copy a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

body[data-page="why"] .student-cinema-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}

body[data-page="why"] .student-cinema-board::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: lineScan 5s var(--ease) infinite;
}

body[data-page="why"] .student-cinema-board article {
  min-height: 205px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  position: relative;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
}

body[data-page="why"] .student-cinema-board article:nth-child(even) {
  transform: translateY(30px);
}

body[data-page="why"] .student-cinema-board article:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.28);
}

body[data-page="why"] .student-cinema-board article:nth-child(even):hover {
  transform: translateY(18px);
}

body[data-page="why"] .student-cinema-board span {
  color: #cbd6dc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

body[data-page="why"] .student-cinema-board strong {
  display: block;
  margin: 14px 0 10px;
  color: #fff;
  font-size: 23px;
  line-height: 1.18;
}

body[data-page="why"] .student-cinema-board p {
  margin: 0;
  color: #d8e0e5;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

@keyframes navLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 118px;
    opacity: 1;
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-12px, -8px, 0);
  }
}

@keyframes ctaSheen {
  0%,
  58% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 82px 82px, 82px 82px;
  }
}

@keyframes floatPanel {
  from {
    transform: translate3d(0, 0, 0) rotate(12deg);
  }
  to {
    transform: translate3d(18px, -24px, 0) rotate(18deg);
  }
}

@keyframes outlineDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  to {
    transform: translate3d(18px, -14px, 0) rotate(-3deg);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes lineScan {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(320%);
  }
}

@keyframes floatCard {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes routeDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes routeGlow {
  0%,
  100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

@keyframes chipEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes floatChip {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes cinematicSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  76%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes filmBreath {
  from {
    transform: scale(1);
    opacity: 0.78;
  }
  to {
    transform: scale(1.045);
    opacity: 1;
  }
}

@keyframes pageVeil {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  35% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@media (max-width: 1024px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 36px, 980px);
  }

  .site-header {
    height: 100px;
    grid-template-columns: 150px 1fr;
  }

  .brand {
    margin-left: 0;
    gap: 4px;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
    padding: 6px;
  }

  .brand-tagline {
    max-width: 132px;
    font-size: 8px;
    letter-spacing: 0.25px;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 10px;
  }

  .menu-toggle span {
    width: 28px;
    height: 2px;
    background: #111;
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 16px 24px 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

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

  .site-nav > a,
  .nav-dropdown > a {
    padding: 12px 0;
  }

  .site-nav .is-active::before,
  .nav-dropdown.is-active > a::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 8px 18px;
  }

  .hero,
  .page-hero,
  .industry-hero {
    min-height: 390px;
  }

  .solution-pillars,
  .split-intro,
  .contact-section,
  .card-grid,
  .sector-grid,
  .feature-grid,
  .footer-main,
  .industry-panel,
  .industry-metrics,
  .staffing-process,
  .coverage-board,
  .coverage-grid,
  .student-consultancy-preview,
  .solution-motion-board,
  .education-solution-strip,
  .animated-storyboard,
  .scroll-narrative,
  .sector-detail-hero,
  .sector-detail-grid,
  .sector-proof div,
  .contact-route,
  .story-track,
  .company-hero,
  .company-services-overview,
  .company-values,
  .proof-strip,
  .service-promise,
  .education-hero,
  .education-split,
  .education-card-grid,
  .portal-grid,
  .partner-section,
  .privacy-education,
  .cta {
    grid-template-columns: 1fr;
  }

  .solution-pillars {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 24px;
    background: rgba(12, 21, 29, 0.28);
  }

  .solution-hero {
    margin-bottom: 48px;
    overflow: hidden;
  }

  .solution-pillars div {
    min-height: 140px;
  }

  .split-intro,
  .contact-section,
  .solutions-list,
  .why-copy {
    padding: 72px 24px;
    gap: 32px;
  }

  .map-section {
    padding: 0 24px 60px;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .map-section iframe {
    min-height: 360px;
  }

  .sector-showcase {
    margin: 40px 0 0;
  }

  .industry-panel {
    padding: 32px;
  }

  .industry-panel a {
    min-height: 180px;
  }

  .industry-metrics {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 42px;
  }

  .staffing-process,
  .student-consultancy-preview,
  .solution-motion-board,
  .education-solution-strip,
  .animated-storyboard,
  .scroll-narrative,
  .sector-detail-hero,
  .sector-detail-grid,
  .contact-route,
  .coverage-board,
  .company-hero,
  .company-services-overview,
  .company-values,
  .service-promise,
  .company-band,
  .faq-section,
  .privacy-note,
  .education-hero,
  .education-split,
  .education-services,
  .student-process,
  .course-areas,
  .why-education,
  .education-faq,
  .partner-section,
  .privacy-education {
    padding: 64px 24px;
  }

  .proof-strip,
  .coverage-board,
  .student-consultancy-preview,
  .solution-motion-board,
  .education-solution-strip,
  .animated-storyboard,
  .scroll-narrative,
  .contact-route,
  .portal-section,
  .education-final-cta,
  .compliance-banner,
  .journey-bar {
    margin: 32px 24px 72px;
  }

  .journey-bar {
    position: static;
    flex-wrap: wrap;
  }

  .journey-bar a {
    flex: 1 1 48%;
  }

  .portal-section,
  .education-final-cta {
    padding: 34px 24px;
  }

  .portal-form {
    padding: 24px;
  }

  .course-grid,
  .trust-grid,
  .partner-benefits,
  .education-solution-grid,
  .submission-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .student-consultancy-preview,
  .solution-motion-board,
  .education-solution-strip,
  .animated-storyboard,
  .scroll-narrative {
    padding: 54px 34px;
  }

  .pathway-cinema {
    inset: 13% 2% 6%;
    opacity: 0.62;
  }

  .pathway-chip {
    min-width: 150px;
    padding: 13px 14px;
  }

  .chip-two {
    top: 12%;
  }

  .route-stage {
    min-height: 360px;
  }

  .route-stage article {
    width: 170px;
  }

  .pathway-visual {
    min-height: 360px;
  }

  .sector-detail-hero {
    min-height: auto;
  }

  .sector-route {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-route::before {
    display: none;
  }

  .sector-route span {
    padding-left: 22px;
  }

  .story-track::before {
    display: none;
  }

  .story-track article:nth-child(even),
  .story-track article:nth-child(even):hover {
    transform: none;
  }

  .service-promise {
    gap: 32px;
  }

  .company-hero img {
    height: 360px;
  }

  .cta {
    padding: 34px 28px;
  }

  body[data-page="why"] .why-page-hero,
  body[data-page="why"] .why-proof,
  body[data-page="why"] .why-conclusion,
  body[data-page="why"] .why-student-cinema {
    grid-template-columns: 1fr;
  }

  body[data-page="why"] .why-page-hero {
    min-height: auto;
    padding: 54px 34px;
  }

  body[data-page="why"] .why-hero-visual {
    min-height: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  body[data-page="why"] .why-hero-visual img {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  body[data-page="why"] .why-film-strip {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  body[data-page="why"] .why-hero-visual::before {
    display: none;
  }

  body[data-page="why"] .why-path-card,
  body[data-page="why"] .why-path-card.card-a,
  body[data-page="why"] .why-path-card.card-b,
  body[data-page="why"] .why-path-card.card-c {
    position: static;
    width: auto;
    min-height: 100%;
  }

  body[data-page="why"] .why-journey,
  body[data-page="why"] .why-sector-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="why"] .why-journey::before {
    left: 24px;
  }

  body[data-page="why"] .why-journey article:nth-child(even),
  body[data-page="why"] .why-journey article:nth-child(even):hover {
    transform: none;
  }

  body[data-page="why"] .why-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body[data-page="why"] .student-cinema-board article:nth-child(even),
  body[data-page="why"] .student-cinema-board article:nth-child(even):hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px;
  }

  .submission-toast {
    padding: 18px;
  }

  .submission-toast__panel {
    min-height: 300px;
    padding: 32px 24px;
  }

  .submission-toast__icon {
    width: 78px;
    height: 78px;
    margin-bottom: 22px;
  }

  .submission-toast__icon svg {
    width: 36px;
    height: 36px;
  }

  .hero h1,
  .industry-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .hero-content p,
  .industry-hero p {
    font-size: 16px;
  }

  .service-card img,
  .sector-grid img {
    height: 240px;
  }

  .solution-hero {
    min-height: auto;
    padding: 46px 0 0;
  }

  .solution-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px;
    margin-top: 28px;
  }

  .solution-pillars div {
    min-height: 92px;
    padding: 14px 10px;
    font-size: 15px;
    line-height: 1.32;
  }

  .industry-metrics div {
    min-height: 98px;
  }

  .industry-panel {
    padding: 20px;
  }

  .industry-panel a {
    font-size: 28px;
  }

  .staffing-process div,
  .company-values article,
  .coverage-grid article {
    padding: 28px;
  }

  .proof-strip div {
    min-height: 130px;
  }

  .promise-list article {
    grid-template-columns: 1fr;
    transform: none;
  }

  .promise-list article span {
    grid-row: auto;
  }

  .company-hero img {
    height: 280px;
  }

  .education-actions,
  .education-actions a,
  .portal-form button {
    width: 100%;
  }

  .education-hero {
    padding: 38px 22px;
    gap: 26px;
  }

  .education-hero h1 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.12;
  }

  .education-hero__copy > p:not(.eyebrow):not(.trust-line) {
    font-size: 15px;
    line-height: 1.58;
  }

  .education-actions {
    margin-top: 22px;
  }

  .education-actions a,
  .portal-form button {
    min-height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }

  .education-hero__panel {
    display: none;
  }

  .trust-line {
    font-size: 12px;
  }

  .journey-bar a {
    flex-basis: 100%;
  }

  .course-grid,
  .trust-grid,
  .partner-benefits,
  .education-solution-grid,
  .submission-strip {
    grid-template-columns: 1fr;
  }

  .pathway-visual {
    min-height: auto;
    gap: 16px;
  }

  .pathway-line,
  .pathway-dot {
    display: none;
  }

  .pathway-card {
    position: relative;
    inset: auto;
    width: 100%;
    animation: none;
  }

  .pathway-cinema {
    inset: 0;
    opacity: 0.3;
  }

  .pathway-chip {
    display: none;
  }

  .scroll-narrative {
    min-height: auto;
  }

  .route-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .route-stage svg {
    display: none;
  }

  .route-stage article {
    position: static;
    width: 100%;
    min-height: auto;
    transform: none;
    opacity: 1;
  }

  .route-stage article.is-current {
    transform: none;
  }

  .sector-route,
  .contact-route-steps {
    grid-template-columns: 1fr;
  }

  .sector-detail-copy h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .sector-proof {
    margin: 0 18px 64px;
  }

  .education-card-grid article,
  .process-timeline article {
    min-height: auto;
  }

  .education-hero__panel,
  .portal-form {
    padding: 22px;
  }

  .whatsapp {
    left: 18px;
    right: 18px;
    justify-content: center;
    text-align: center;
  }

  body[data-page="why"] main {
    gap: 46px;
  }

  body[data-page="why"] .why-page-hero {
    padding: 32px 22px 36px;
  }

  body[data-page="why"] .why-hero-copy h1 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.12;
  }

  body[data-page="why"] .why-hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

  body[data-page="why"] .why-hero-actions {
    margin-top: 22px;
  }

  body[data-page="why"] .why-hero-actions a,
  body[data-page="why"] .why-conclusion a {
    min-height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }

  body[data-page="why"] .why-hero-actions,
  body[data-page="why"] .why-hero-actions a,
  body[data-page="why"] .why-conclusion a {
    width: 100%;
  }

  body[data-page="why"] .why-hero-visual {
    display: none;
  }

  body[data-page="why"] .why-path-card {
    width: 100%;
    box-shadow: none;
  }

  body[data-page="why"] .why-reasons,
  body[data-page="why"] .why-proof,
  body[data-page="why"] .why-sector-strip,
  body[data-page="why"] .why-conclusion {
    padding-left: 18px;
    padding-right: 18px;
  }

  body[data-page="why"] .why-journey,
  body[data-page="why"] .why-proof-grid,
  body[data-page="why"] .why-sector-strip,
  body[data-page="why"] .student-cinema-board {
    grid-template-columns: 1fr;
  }

  body[data-page="why"] .why-student-cinema {
    margin-left: 18px;
    margin-right: 18px;
    padding: 32px 22px;
  }

  body[data-page="why"] .why-student-cinema::before,
  body[data-page="why"] .student-cinema-board::before {
    display: none;
  }

  body[data-page="why"] .student-cinema-board article {
    min-height: auto;
  }

  body[data-page="why"] .why-journey::before {
    display: none;
  }

  body[data-page="why"] .why-journey article {
    min-height: auto;
  }

  body[data-page="why"] .why-proof-grid article {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  body[data-page="why"] .why-proof-grid article:last-child {
    border-bottom: 0;
  }

  body[data-page="why"] .why-sector-strip a {
    min-height: 190px;
  }

  body[data-page="why"] .why-conclusion {
    margin-bottom: 104px;
  }

  body[data-page="why"] .whatsapp {
    position: static;
    margin: 24px 18px 18px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .route {
    stroke-dashoffset: 0;
  }

  .route-progress {
    stroke-dashoffset: 0;
  }

  .pathway-chip,
  .motion-field span,
  .cinematic-canvas,
  .submission-toast__panel,
  .submission-toast__panel::after,
  .submission-toast__icon::before,
  .staffing-card,
  .student-card,
  .cursor-aura,
  .hero::before,
  .industry-hero::after,
  .company-hero::before,
  .education-hero::before,
  .sector-detail-hero::after,
  body[data-page="why"] .why-page-hero::after,
  body[data-page="why"] .why-student-cinema::before,
  body[data-page="why"] .why-hero-actions a,
  body[data-page="why"] .why-conclusion a,
  body[data-page="why"] .why-journey article,
  body[data-page="why"] .why-sector-strip img,
  body[data-page="why"] .why-film-strip span,
  body[data-page="why"] .student-cinema-board article {
    animation: none;
    transition: none;
    transform: none;
  }

  .cinematic-canvas {
    display: none;
  }
}
