:root {
  --navy-950: #041124;
  --navy-900: #07172c;
  --navy-850: #0a1d35;
  --navy-800: #0d2644;
  --ink: #0b1930;
  --slate: #526174;
  --line: #dbe1e8;
  --paper: #ffffff;
  --mist: #f4f6f8;
  --mist-blue: #eef3f7;
  --orange: #ff6b17;
  --orange-dark: #d84b00;
  --cyan: #39c4cf;
  --cyan-soft: #91e3e7;
  --green: #3cdd9a;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow-lg: 0 32px 72px rgba(4, 17, 36, 0.18);
  --shadow-md: 0 16px 38px rgba(4, 17, 36, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.2, 0.75, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--orange);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--orange);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.utility-bar {
  position: relative;
  z-index: 21;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-inner a {
  margin-left: auto;
  color: var(--cyan-soft);
}

.utility-separator {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(9, 29, 52, 0.09);
  transition: box-shadow 240ms ease, background 240ms ease;
  backdrop-filter: blur(14px);
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(4, 17, 36, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  width: 202px;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px 11px 18px;
  color: #fff;
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
  border-radius: 4px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-cta:hover {
  color: var(--navy-900);
  background: #fff;
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 88px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 84% 16%, rgba(46, 198, 208, 0.13), transparent 26%),
    radial-gradient(circle at 63% 72%, rgba(255, 107, 23, 0.08), transparent 22%),
    linear-gradient(115deg, #041124 0%, #07172c 49%, #09203a 100%);
  overflow: hidden;
}

.hero-grid,
.certificate-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(126, 207, 213, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 213, 0.22) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent, #000 42%, #000);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(78, 206, 214, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--orange);
}

.hero-orbit-one {
  top: 54px;
  right: -260px;
  width: 710px;
  height: 710px;
  animation: slowSpin 30s linear infinite;
}

.hero-orbit-one::before {
  top: 118px;
  left: 70px;
}

.hero-orbit-two {
  right: 75px;
  bottom: -460px;
  width: 650px;
  height: 650px;
  animation: slowSpinReverse 38s linear infinite;
}

.hero-orbit-two::before {
  top: 80px;
  right: 100px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes slowSpinReverse {
  to { transform: rotate(-360deg); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(490px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.hero-copy {
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--cyan-soft);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.eyebrow.dark {
  color: #287e88;
}

.eyebrow.light {
  color: var(--cyan-soft);
}

.hero h1,
.section-heading h2,
.map-intro h2,
.certificate-copy h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(46px, 5.3vw, 74px);
}

.hero h1 em,
.section-heading h2 em {
  color: var(--cyan-soft);
  font-style: normal;
}

.hero h1 em {
  position: relative;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 3px;
  bottom: 2px;
  left: 3px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(232, 241, 248, 0.75);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 20px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms ease, color 200ms ease, background 200ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 13px 28px rgba(255, 107, 23, 0.24);
}

.button-primary:hover {
  background: #ff7c34;
  box-shadow: 0 16px 32px rgba(255, 107, 23, 0.32);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-outline {
  width: 100%;
  color: var(--navy-900);
  background: transparent;
  border-color: #b7c0ca;
}

.button-outline:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(60, 221, 154, 0.1);
}

.hero-note {
  max-width: 600px;
  margin-top: 33px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.55;
}

.hero-note .mono {
  margin-top: 2px;
  padding: 3px 7px;
  color: var(--orange);
  border: 1px solid rgba(255, 107, 23, 0.45);
  border-radius: 3px;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero-note p {
  margin: 0;
}

.hero-note strong {
  color: rgba(255, 255, 255, 0.83);
}

.control-stage {
  position: relative;
  min-height: 560px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(151, 210, 219, 0.16);
  border-radius: 22px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.stage-topline {
  height: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.stage-kicker {
  color: rgba(255, 255, 255, 0.38);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.stage-lights {
  display: flex;
  gap: 6px;
}

.stage-lights i {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.stage-lights i:first-child {
  background: var(--orange);
}

.process-board {
  min-height: 454px;
  padding: 24px;
  background:
    linear-gradient(rgba(56, 116, 150, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 116, 150, 0.04) 1px, transparent 1px),
    #f8fafb;
  background-size: 22px 22px;
  border-radius: 12px;
  color: var(--ink);
  transition: background 280ms ease;
}

.board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.board-label {
  display: block;
  color: #7d8b9b;
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.board-head strong {
  display: block;
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  color: #27785e;
  background: #e6f8ef;
  border: 1px solid #bcebd6;
  border-radius: 40px;
  font-size: 9px;
  font-weight: 700;
}

.live-pill i {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 5px rgba(60, 221, 154, 0.13); }
}

.process-canvas {
  position: relative;
  height: 220px;
  margin: 17px 0 8px;
  overflow: hidden;
}

.pipe {
  position: absolute;
  height: 14px;
  background: #d6e1e6;
  border: 2px solid #92aab4;
  border-radius: 8px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.7);
}

.pipe::after {
  position: absolute;
  inset: 4px 0;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(57, 196, 207, 0.65) 18px 26px);
  animation: flow 1.3s linear infinite;
}

@keyframes flow {
  to { background-position: 26px 0; }
}

.pipe-one {
  top: 102px;
  right: 15px;
  left: 36px;
}

.pipe-two {
  top: 26px;
  right: 78px;
  width: 14px;
  height: 84px;
}

.pipe-two::after {
  display: none;
}

.tank {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 38%;
  width: 88px;
  height: 118px;
  padding-top: 22px;
  background: #eef4f6;
  border: 2px solid #7b98a5;
  border-radius: 12px 12px 18px 18px;
  box-shadow: 0 12px 24px rgba(16, 45, 66, 0.12);
  overflow: hidden;
  text-align: center;
}

.tank::before,
.tank::after {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 10px;
  content: "";
  background: #b9cbd2;
  border: 1px solid #849eaa;
}

.tank::before { top: 0; }
.tank::after { bottom: 0; }

.tank-level {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 68%;
  background: linear-gradient(180deg, rgba(57, 196, 207, 0.54), rgba(16, 140, 164, 0.76));
  transition: height 450ms var(--ease), background 450ms ease;
}

.tank-level::before {
  position: absolute;
  top: -4px;
  right: 0;
  left: 0;
  height: 8px;
  content: "";
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  animation: water 2.2s ease-in-out infinite;
}

@keyframes water {
  50% { transform: scaleX(1.08) translateY(2px); }
}

.tank b,
.tank small {
  position: relative;
  z-index: 3;
  display: block;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.tank b {
  margin-top: 23px;
  font-family: monospace;
  font-size: 13px;
}

.tank small {
  font-size: 8px;
}

.valve {
  position: absolute;
  z-index: 3;
  top: 91px;
  width: 34px;
  height: 34px;
  background: #fff;
  border: 2px solid #7994a1;
  border-radius: 50%;
}

.valve::before,
.valve::after {
  position: absolute;
  top: 7px;
  width: 0;
  height: 0;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.valve::before { left: 5px; border-right: 10px solid var(--orange); }
.valve::after { right: 5px; border-left: 10px solid var(--orange); }
.valve-one { left: 18%; }
.valve-two { right: 21%; }

.valve span {
  position: absolute;
  top: -18px;
  left: 14px;
  width: 3px;
  height: 18px;
  background: #7994a1;
}

.valve span::after {
  position: absolute;
  top: 0;
  left: -7px;
  width: 17px;
  height: 4px;
  content: "";
  background: #7994a1;
}

.motor {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  border: 4px solid #bdcbd1;
  border-radius: 50%;
  box-shadow: 0 10px 18px rgba(7, 23, 44, 0.15);
}

.motor span {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.motor small {
  position: absolute;
  bottom: -16px;
  color: #506474;
  font-family: monospace;
  font-size: 7px;
}

.signal-node {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(57, 196, 207, 0.17);
}

.signal-a { bottom: 26px; left: 10%; }
.signal-b { right: 38%; bottom: 36px; }
.signal-c { top: 18px; right: 16%; }

.flow-arrow {
  position: absolute;
  z-index: 4;
  top: 91px;
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
  animation: arrowFlow 1.5s infinite;
}

.flow-a { left: 29%; }
.flow-b { right: 31%; animation-delay: 0.5s; }

@keyframes arrowFlow {
  50% { opacity: 0.35; transform: translateX(6px); }
}

.canvas-tag {
  position: absolute;
  padding: 3px 6px;
  color: #536a78;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d5dfe3;
  border-radius: 2px;
  font-family: monospace;
  font-size: 6px;
  letter-spacing: 0.05em;
}

.tag-input { bottom: 5px; left: 6%; }
.tag-output { top: 3px; right: 1%; }

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.board-metrics > div {
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #dce4e8;
  border-radius: 5px;
}

.board-metrics span {
  display: block;
  color: #7c8b98;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-metrics strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.board-metrics small {
  margin-left: 2px;
  color: #82909c;
  font-size: 8px;
}

.trend {
  position: relative;
  height: 52px;
  margin-top: 9px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 6px 9px;
  background: rgba(234, 240, 243, 0.72);
  border: 1px solid #dfe6e9;
  overflow: hidden;
}

.trend span {
  width: 12%;
  background: linear-gradient(to top, rgba(57, 196, 207, 0.25), rgba(57, 196, 207, 0.02));
}

.trend span:nth-child(1) { height: 38%; }
.trend span:nth-child(2) { height: 58%; }
.trend span:nth-child(3) { height: 44%; }
.trend span:nth-child(4) { height: 72%; }
.trend span:nth-child(5) { height: 61%; }
.trend span:nth-child(6) { height: 78%; }

.trend-line {
  position: absolute;
  top: 21px;
  right: -2%;
  left: -2%;
  height: 2px;
  background: var(--orange);
  transform: rotate(-4deg);
  box-shadow: 56px 4px 0 var(--orange), 112px -2px 0 var(--orange);
}

.process-board[data-mode="scada"] .tank-level {
  height: 51%;
  background: linear-gradient(180deg, rgba(255, 107, 23, 0.52), rgba(212, 72, 3, 0.72));
}

.process-board[data-mode="iot"] .tank-level {
  height: 84%;
  background: linear-gradient(180deg, rgba(60, 221, 154, 0.52), rgba(18, 155, 103, 0.75));
}

.mode-switcher {
  position: absolute;
  right: 44px;
  bottom: 5px;
  left: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 7px;
  background: rgba(5, 20, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.mode-switcher button {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.mode-switcher button.active {
  color: #fff;
  background: #173653;
  box-shadow: inset 0 -2px 0 var(--orange);
}

.capability-rail {
  position: relative;
  z-index: 3;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -12px 42px rgba(0, 0, 0, 0.14);
}

.capability-rail > div {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.capability-rail > div:last-child {
  border-right: 0;
}

.capability-rail strong {
  color: var(--orange);
  font-family: monospace;
  font-size: 12px;
}

.capability-rail span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.section {
  padding: 116px 0;
}

.programs {
  background: #fff;
}

.section-heading h2,
.map-intro h2,
.certificate-copy h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.split-heading {
  margin-bottom: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0 0 5px;
  padding-left: 26px;
  color: var(--slate);
  border-left: 2px solid var(--orange);
}

.section-heading h2 em {
  color: #277f89;
}

.program-index {
  border-top: 1px solid var(--ink);
}

.program-row {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 190px;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 250ms var(--ease), background 250ms ease;
}

.program-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24px;
  width: 3px;
  content: "";
  background: var(--orange);
  transform: scaleY(0);
  transition: transform 250ms var(--ease);
}

.program-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--mist);
}

.program-row:hover::before {
  transform: scaleY(1);
}

.program-row.featured {
  background: linear-gradient(90deg, rgba(238, 246, 248, 0.86), transparent 72%);
}

.program-number {
  padding-top: 3px;
  color: #7e8b98;
  font-family: monospace;
  font-size: 12px;
}

.program-topline {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.program-tag {
  color: #287e88;
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.program-level {
  padding-left: 10px;
  color: #8a96a1;
  border-left: 1px solid #c7cfd6;
  font-size: 11px;
}

.program-main h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.program-main > p {
  max-width: 710px;
  margin: 13px 0 20px;
  color: var(--slate);
}

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

.module-list li {
  padding: 5px 9px;
  color: #465768;
  background: #fff;
  border: 1px solid #d6dde3;
  border-radius: 2px;
  font-family: monospace;
  font-size: 9px;
}

.program-side {
  align-self: center;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.program-side p,
.program-side small {
  display: block;
  margin: 0;
  color: #7d8a97;
  font-size: 10px;
}

.program-side strong {
  display: block;
  margin: 2px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.program-side small {
  min-height: 32px;
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 0 0 4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.text-link span {
  color: var(--orange);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.course-library {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238, 244, 247, 0.75), rgba(255, 255, 255, 0.94)),
    #f6f9fa;
  border-top: 1px solid #e1e7eb;
}

.course-library::before {
  position: absolute;
  top: 0;
  right: -160px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(38, 126, 137, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(38, 126, 137, 0.035), 0 0 0 144px rgba(38, 126, 137, 0.02);
  pointer-events: none;
}

.course-toolbar {
  position: relative;
  z-index: 1;
  margin: -24px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-toolbar button {
  padding: 10px 15px;
  color: #5e6d79;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #d5dee4;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.course-toolbar button:hover {
  color: var(--navy-900);
  border-color: #92a8b4;
  transform: translateY(-1px);
}

.course-toolbar button.active {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

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

.course-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe3e8;
  box-shadow: 0 12px 36px rgba(8, 31, 51, 0.06);
  transition: transform 260ms var(--ease), box-shadow 260ms ease, border-color 260ms ease;
}

.course-card:hover {
  border-color: #b6c7d0;
  box-shadow: 0 22px 55px rgba(8, 31, 51, 0.13);
  transform: translateY(-7px);
}

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

.course-image {
  position: relative;
  min-height: 188px;
  display: block;
  overflow: hidden;
  background: #0a1a2e;
}

.course-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(3, 15, 29, 0.62));
  pointer-events: none;
}

.course-image img {
  width: 100%;
  height: 188px;
  display: block;
  object-fit: cover;
  transition: transform 600ms var(--ease), filter 300ms ease;
}

.course-card:hover .course-image img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.course-image > span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  padding: 5px 7px;
  color: #fff;
  background: rgba(238, 98, 48, 0.92);
  font-family: monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.course-copy {
  padding: 22px 20px 20px;
}

.course-copy > p:first-child {
  margin: 0 0 8px;
  color: #28818a;
  font-family: monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.course-copy h3 {
  min-height: 54px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.course-description {
  min-height: 76px;
  margin: 12px 0 16px;
  color: #64727e;
  font-size: 12px;
  line-height: 1.65;
}

.course-topics {
  min-height: 49px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}

.course-topics span {
  padding: 4px 7px;
  color: #566671;
  background: #f4f7f8;
  border: 1px solid #e0e6e9;
  font-family: monospace;
  font-size: 8px;
}

.course-footer {
  margin-top: 15px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e2e8eb;
}

.course-footer strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.course-footer a {
  color: #495b67;
  font-size: 9px;
  font-weight: 700;
  text-align: right;
}

.course-footer a:hover {
  color: var(--orange);
}

.learning-map {
  position: relative;
  padding: 112px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(57, 196, 207, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(57, 196, 207, 0.06) 1px, transparent 1px),
    var(--navy-900);
  background-size: 44px 44px;
}

.learning-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: clamp(58px, 8vw, 110px);
}

.map-intro {
  position: sticky;
  top: 135px;
  align-self: start;
}

.map-intro p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(233, 242, 248, 0.62);
}

.route-tabs {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.route-tabs button {
  position: relative;
  padding: 14px 32px 14px 0;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease;
}

.route-tabs button::after {
  position: absolute;
  top: 50%;
  right: 2px;
  content: "→";
  color: var(--orange);
  opacity: 0;
  transform: translate(-8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.route-tabs button.active {
  padding-left: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.route-tabs button.active::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.route-panel {
  padding: 34px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(159, 204, 215, 0.17);
  border-radius: 10px;
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.19);
}

.route-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.route-meta strong {
  color: var(--cyan-soft);
  font-weight: 500;
}

.route-steps {
  margin: 0;
  padding: 12px 0;
  list-style: none;
}

.route-steps li {
  position: relative;
  min-height: 74px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  animation: stepIn 350ms both var(--ease);
}

.route-steps li::before {
  position: absolute;
  top: 50%;
  left: 23px;
  width: 1px;
  height: calc(100% + 8px);
  content: "";
  background: rgba(57, 196, 207, 0.25);
}

.route-steps li:last-child::before {
  display: none;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
}

.route-steps .step-number {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-left: 10px;
  color: var(--cyan-soft);
  background: var(--navy-900);
  border: 1px solid rgba(57, 196, 207, 0.55);
  border-radius: 50%;
  font-family: monospace;
  font-size: 8px;
}

.route-steps h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.route-steps p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
}

.route-steps .step-type {
  color: rgba(255, 255, 255, 0.34);
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.project-brief {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 22px;
  padding: 22px;
  color: var(--ink);
  background: var(--cyan-soft);
  border-radius: 5px;
}

.project-brief > span {
  color: #1d6870;
  font-family: monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.project-brief h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.project-brief p {
  margin: 3px 0 0;
  color: #326970;
  font-size: 10px;
  line-height: 1.5;
}

.project-brief a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy-900);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.project-brief a:hover {
  transform: rotate(-25deg);
}

.solutions {
  background: var(--mist);
}

.centered {
  max-width: 720px;
  margin: 0 auto 62px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px auto 0;
  color: var(--slate);
}

.solution-selector {
  min-height: 520px;
  display: grid;
  grid-template-columns: 210px minmax(290px, 0.75fr) minmax(380px, 1.25fr);
  background: #fff;
  border: 1px solid #d9e0e6;
  box-shadow: var(--shadow-md);
}

.solution-nav {
  display: flex;
  flex-direction: column;
  background: var(--navy-900);
}

.solution-nav button {
  flex: 1;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.49);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.solution-nav button span {
  color: var(--cyan);
  font-family: monospace;
  font-size: 9px;
}

.solution-nav button.active {
  color: #fff;
  background: #102a47;
  box-shadow: inset 3px 0 0 var(--orange);
}

.solution-copy {
  align-self: center;
  padding: 52px 40px;
}

.solution-overline {
  color: #2b868f;
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.solution-copy h3 {
  margin: 13px 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.solution-copy > p {
  color: var(--slate);
  font-size: 14px;
}

.solution-copy ul {
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.solution-copy li {
  position: relative;
  padding: 7px 0 7px 21px;
  color: #394a5b;
  font-size: 12px;
}

.solution-copy li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.solution-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 52px 32px;
  background:
    radial-gradient(circle at 80% 15%, rgba(57, 196, 207, 0.24), transparent 23%),
    linear-gradient(135deg, #07172c, #0a2845);
  overflow: hidden;
}

.solution-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  transform: perspective(500px) rotateX(58deg) scale(1.4) translateY(22%);
}

.visual-window {
  position: relative;
  z-index: 2;
  width: 94%;
  aspect-ratio: 1.28;
  background: #edf2f5;
  border: 7px solid #172a40;
  border-radius: 10px;
  box-shadow: 0 38px 58px rgba(0, 0, 0, 0.35);
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
  transition: transform 380ms var(--ease);
}

.solution-selector:hover .visual-window {
  transform: perspective(900px) rotateY(-2deg) rotateX(0);
}

.window-bar {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  color: #81909e;
  background: #fff;
  border-bottom: 1px solid #d8e0e4;
  font-family: monospace;
  font-size: 6px;
}

.window-bar i {
  width: 5px;
  height: 5px;
  background: #bbc7cd;
  border-radius: 50%;
}

.window-bar i:first-child { background: var(--orange); }
.window-bar span { margin-left: auto; }

.window-body {
  height: calc(100% - 30px);
  display: flex;
}

.mini-sidebar {
  width: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 13px;
  background: #0b2038;
}

.mini-sidebar b {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
}

.mini-sidebar i {
  width: 13px;
  height: 2px;
  background: rgba(255, 255, 255, 0.26);
}

.mini-canvas {
  flex: 1;
  padding: 17px;
}

.mini-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #667787;
  font-size: 7px;
}

.mini-heading b {
  padding: 3px 7px;
  color: #22845d;
  background: #dff5e9;
  border-radius: 10px;
  font-size: 6px;
}

.mini-kpis {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mini-kpis i {
  height: 40px;
  background: #fff;
  border: 1px solid #d8e1e6;
  border-top: 3px solid var(--cyan);
}

.mini-kpis i:nth-child(2) { border-top-color: var(--orange); }
.mini-kpis i:nth-child(3) { border-top-color: var(--green); }

.mini-chart {
  height: 85px;
  margin-top: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 9px;
  background:
    linear-gradient(#e2e8eb 1px, transparent 1px),
    #fff;
  background-size: 100% 16px;
  border: 1px solid #d8e1e6;
}

.mini-chart span {
  width: 10%;
  background: #65cbd3;
  border-radius: 2px 2px 0 0;
}

.mini-chart span:nth-child(1) { height: 32%; }
.mini-chart span:nth-child(2) { height: 63%; }
.mini-chart span:nth-child(3) { height: 48%; }
.mini-chart span:nth-child(4) { height: 79%; background: var(--orange); }
.mini-chart span:nth-child(5) { height: 68%; }

.mini-lines {
  margin-top: 12px;
  display: grid;
  gap: 5px;
}

.mini-lines i {
  height: 4px;
  background: #d5dde2;
  border-radius: 4px;
}

.mini-lines i:nth-child(2) { width: 77%; }
.mini-lines i:nth-child(3) { width: 89%; }
.mini-lines i:nth-child(4) { width: 62%; }

.visual-badge {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 32px;
  min-width: 128px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  color: #fff;
  background: rgba(5, 20, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.visual-badge span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(255, 107, 23, 0.45);
  border-radius: 50%;
  font-family: monospace;
  font-size: 10px;
}

.visual-badge small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
}

.certificate {
  position: relative;
  padding: 108px 0;
  color: #fff;
  background: linear-gradient(110deg, #0b2b46, #0b5661);
  overflow: hidden;
}

.certificate::after {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.02), 0 0 0 110px rgba(255, 255, 255, 0.018);
}

.certificate-grid {
  mask-image: linear-gradient(to right, #000, transparent 62%);
}

.certificate-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.certificate-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.certificate-points {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.certificate-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.certificate-points i {
  color: var(--cyan-soft);
  font-family: monospace;
  font-size: 9px;
  font-style: normal;
}

.certificate-card {
  position: relative;
  min-height: 380px;
  padding: 42px 46px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 107, 23, 0.06), transparent 38%),
    #fff;
  border: 8px solid rgba(255, 255, 255, 0.14);
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: 7px;
  box-shadow: 0 40px 76px rgba(0, 0, 0, 0.26);
  transform: rotate(1.3deg);
}

.certificate-corner {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 72px;
  height: 72px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.certificate-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy-900);
  border-radius: 50% 50% 50% 18%;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.certificate-brand strong,
.certificate-brand small {
  display: block;
}

.certificate-brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: 0.16em;
}

.certificate-brand small {
  color: #758492;
  font-family: monospace;
  font-size: 6px;
  letter-spacing: 0.08em;
}

.certificate-card > p {
  margin: 44px 0 8px;
  color: #25808a;
  font-family: monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.certificate-card > h3 {
  max-width: 490px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.certificate-name {
  margin-top: 27px;
  padding-bottom: 7px;
  color: #667788;
  border-bottom: 1px solid #aeb9c2;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.certificate-footer {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: end;
  gap: 20px;
}

.certificate-footer > div:last-child {
  text-align: right;
}

.certificate-footer > div:first-child span {
  display: block;
  width: 90px;
  height: 1px;
  margin-bottom: 5px;
  background: #71808e;
}

.certificate-footer strong,
.certificate-footer small {
  display: block;
}

.certificate-footer strong {
  font-family: monospace;
  font-size: 8px;
}

.certificate-footer small {
  color: #84919c;
  font-size: 7px;
}

.qr-sim {
  height: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 5px;
  background: var(--ink);
}

.qr-sim i {
  background: #fff;
}

.qr-sim i:nth-child(2) { grid-column: 3; }
.qr-sim i:nth-child(3) { grid-row: 2; grid-column: 2; background: var(--orange); }
.qr-sim i:nth-child(4) { grid-row: 3; }
.qr-sim i:nth-child(5) { grid-row: 3; grid-column: 3; }

.pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 18px;
}

.price-plan {
  position: relative;
  padding: 34px;
  background: #fff;
  border: 1px solid #d4dce2;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.price-plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.price-plan.recommended {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.price-plan.pro {
  border-top: 3px solid #2d8791;
}

.recommend-label {
  position: absolute;
  top: -13px;
  right: 24px;
  padding: 5px 9px;
  color: #fff;
  background: var(--orange);
  font-family: monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.plan-head {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #788692;
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.plan-head p {
  margin: 0;
}

.plan-head span {
  color: var(--orange);
}

.recommended .plan-head {
  color: rgba(255, 255, 255, 0.45);
}

.price-plan h3 {
  min-height: 58px;
  margin: 18px 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.price {
  min-height: 82px;
  display: flex;
  align-items: flex-start;
  color: var(--navy-900);
}

.recommended .price {
  color: #fff;
}

.price small {
  margin-top: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.price strong {
  font-family: "Manrope", sans-serif;
  font-size: 58px;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price del {
  margin: 28px 0 0 12px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.price-plan ul {
  min-height: 174px;
  margin: 20px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid #d8dfe4;
  list-style: none;
}

.recommended ul {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.price-plan li {
  position: relative;
  padding: 8px 0 8px 20px;
  color: #526170;
  font-size: 13px;
}

.recommended li {
  color: rgba(255, 255, 255, 0.7);
}

.price-plan li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 5px;
  content: "";
  border-bottom: 1.5px solid var(--orange);
  border-left: 1.5px solid var(--orange);
  transform: rotate(-45deg);
}

.founder-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 9px;
  text-align: center;
}

.founder-note strong {
  color: var(--cyan-soft);
}

.promo-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--mist);
  border: 1px solid #d9e0e5;
}

.promo-strip > div {
  padding: 22px 25px;
  border-right: 1px solid #d9e0e5;
}

.promo-strip > div:last-child {
  border-right: 0;
}

.promo-strip span {
  color: #2c8089;
  font-family: monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.promo-strip p {
  margin: 6px 0 0;
  color: #5d6a77;
  font-size: 11px;
  line-height: 1.55;
}

.about {
  background: var(--mist-blue);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
}

.about-visual {
  position: relative;
}

.blueprint {
  position: relative;
  min-height: 560px;
  color: #d8f6f6;
  background:
    linear-gradient(rgba(110, 215, 220, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 215, 220, 0.09) 1px, transparent 1px),
    var(--navy-900);
  background-size: 26px 26px;
  border: 10px solid #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.blueprint::after {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(112, 213, 219, 0.2);
}

.blueprint-title {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 22px;
  color: rgba(255, 255, 255, 0.37);
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.bp-node {
  position: absolute;
  z-index: 3;
  width: 110px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--cyan-soft);
  background: rgba(5, 23, 43, 0.92);
  border: 1px solid rgba(99, 216, 222, 0.55);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  box-shadow: 0 0 24px rgba(57, 196, 207, 0.08);
}

.bp-node::before,
.bp-node::after {
  position: absolute;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
}

.bp-node::before { top: -4px; left: -4px; }
.bp-node::after { right: -4px; bottom: -4px; }

.node-cloud { top: 70px; left: calc(50% - 55px); }
.node-scada { top: 214px; left: 70px; }
.node-plc { top: 214px; right: 70px; }
.node-field { right: calc(50% - 55px); bottom: 80px; }

.bp-line {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(57, 196, 207, 0.55);
  transform-origin: left;
}

.line-one { top: 154px; left: 50%; width: 155px; transform: rotate(147deg); }
.line-two { top: 154px; left: 50%; width: 155px; transform: rotate(33deg); }
.line-three { top: 276px; left: 178px; width: 180px; transform: rotate(90deg); }

.bp-note {
  position: absolute;
  z-index: 4;
  padding: 4px 7px;
  color: rgba(255, 255, 255, 0.55);
  background: var(--navy-900);
  font-family: monospace;
  font-size: 7px;
}

.note-one { top: 165px; left: 92px; }
.note-two { top: 165px; right: 97px; }
.note-three { right: 68px; bottom: 176px; }

.visual-caption {
  position: absolute;
  right: -28px;
  bottom: 42px;
  min-width: 230px;
  padding: 18px 20px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 36px rgba(216, 75, 0, 0.24);
}

.visual-caption span,
.visual-caption small {
  display: block;
}

.visual-caption span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.visual-caption small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}

.about-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--slate);
}

.principles {
  margin-top: 34px;
  border-top: 1px solid #cdd7df;
}

.principles > div {
  display: grid;
  grid-template-columns: 40px 160px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #cdd7df;
}

.principles strong {
  color: var(--orange);
  font-family: monospace;
  font-size: 9px;
}

.principles span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.principles p {
  margin: 0;
  color: #647382;
  font-size: 11px;
  line-height: 1.5;
}

.faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.faq-intro {
  position: sticky;
  top: 135px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--slate);
}

.accordion {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid #d6dde2;
}

.faq-item button {
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 2px;
  background: transparent;
  border: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button i {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid #bec8d0;
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--slate);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 58px 25px 0;
}

.contact {
  position: relative;
  padding: 108px 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 90%, rgba(255, 107, 23, 0.1), transparent 24%),
    var(--navy-900);
}

.contact::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  content: "";
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(57, 196, 207, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 196, 207, 0.3) 1px, transparent 1px);
  background-size: 42px 42px;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.61);
}

.contact-channel {
  margin-top: 43px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-channel span {
  color: var(--cyan-soft);
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.contact-channel a {
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.contact-channel small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.28);
}

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

.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: #596878;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 2px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bfc9d1;
  border-radius: 0;
  outline: 0;
  resize: vertical;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--orange) 50%), linear-gradient(135deg, var(--orange) 50%, transparent 50%);
  background-position: calc(100% - 12px) 20px, calc(100% - 7px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--orange);
  box-shadow: 0 1px 0 var(--orange);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0aab3;
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 11px 0 0;
  color: #8a96a1;
  font-size: 9px;
  text-align: center;
}

.site-footer {
  padding: 68px 0 26px;
  color: rgba(255, 255, 255, 0.58);
  background: #030d1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 60px;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: 0.16em;
}

.footer-brand > span {
  display: block;
  margin-top: 5px;
  color: var(--orange);
  font-family: monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.footer-brand p {
  max-width: 270px;
  margin: 20px 0 0;
  font-size: 11px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
}

.site-footer div > a {
  display: block;
  padding: 4px 0;
  font-size: 10px;
  transition: color 180ms ease;
}

.site-footer div > a:hover {
  color: var(--cyan-soft);
}

.footer-contact > a {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 14px !important;
  font-weight: 700;
}

.footer-contact p {
  margin: 8px 0 0;
  font-size: 10px;
}

.socials {
  margin-top: 18px;
  display: flex;
  gap: 8px;
}

.site-footer .socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-family: monospace;
  font-size: 8px;
}

.footer-bottom {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
}

.back-to-top {
  position: fixed;
  z-index: 18;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(216, 75, 0, 0.3);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 40px, 980px); }

  .primary-nav { gap: 15px; }
  .primary-nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-layout { grid-template-columns: 0.95fr 1.05fr; gap: 40px; }
  .hero h1 { font-size: clamp(43px, 5.8vw, 62px); }
  .control-stage { min-height: 520px; }
  .process-board { padding: 18px; }
  .program-row { grid-template-columns: 54px minmax(0, 1fr) 168px; gap: 20px; }
  .course-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-selector { grid-template-columns: 180px minmax(260px, 0.8fr) minmax(330px, 1.2fr); }
  .solution-copy { padding: 42px 28px; }
  .certificate-layout { grid-template-columns: 0.8fr 1.2fr; gap: 50px; }
  .certificate-card { padding: 34px; }
  .about-layout { grid-template-columns: 0.95fr 1.05fr; gap: 56px; }
  .node-scada { left: 42px; }
  .node-plc { right: 42px; }
  .line-one { width: 130px; }
  .line-two { width: 130px; }
  .line-three { left: 153px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px, 720px); }

  .utility-inner span:nth-of-type(2),
  .utility-inner .utility-separator { display: none; }
  .header-inner { min-height: 70px; }
  .brand { width: 180px; }
  .menu-button { display: block; position: relative; z-index: 3; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px;
    color: #fff;
    background: rgba(4, 17, 36, 0.98);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .primary-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .primary-nav > a:not(.nav-cta) { display: block; padding: 14px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .primary-nav .nav-cta { margin-top: 18px; justify-content: center; color: #fff; background: var(--orange); border-color: var(--orange); }

  .hero { padding-top: 70px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero h1 { max-width: 700px; }
  .control-stage { max-width: 640px; width: 100%; margin: 0 auto; }
  .capability-rail { grid-template-columns: repeat(2, 1fr); margin-top: 72px; }
  .capability-rail > div:nth-child(2) { border-right: 0; }
  .capability-rail > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .section { padding: 90px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 46px; }
  .split-heading > p { max-width: 620px; }
  .program-row { grid-template-columns: 44px minmax(0, 1fr); }
  .program-side { grid-column: 2; padding: 17px 0 0; display: grid; grid-template-columns: auto auto; align-items: end; gap: 6px 24px; border-top: 1px solid var(--line); border-left: 0; }
  .program-side p { align-self: end; }
  .program-side strong { grid-row: 2; }
  .program-side small { min-height: 0; grid-column: 2; grid-row: 2; }
  .program-side .text-link { grid-column: 2; grid-row: 1; margin: 0; justify-self: end; }

  .learning-layout { grid-template-columns: 1fr; gap: 45px; }
  .map-intro { position: static; }
  .route-tabs { flex-direction: row; }
  .route-tabs button { flex: 1; padding: 13px 8px; text-align: center; }
  .route-tabs button.active { padding-left: 8px; }
  .route-tabs button::after { display: none; }

  .solution-selector { grid-template-columns: 1fr; }
  .solution-nav { display: grid; grid-template-columns: repeat(4, 1fr); }
  .solution-nav button { justify-content: center; padding: 16px 10px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 0; text-align: center; }
  .solution-copy { padding: 44px 44px 28px; }
  .solution-visual { min-height: 440px; }

  .certificate-layout { grid-template-columns: 1fr; }
  .certificate-copy { max-width: 640px; }
  .certificate-card { max-width: 650px; width: 100%; margin: 0 auto; }

  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-plan.recommended { grid-column: auto; max-width: none; width: auto; margin: 0; }
  .promo-strip { grid-template-columns: 1fr; }
  .promo-strip > div { border-right: 0; border-bottom: 1px solid #d9e0e5; }
  .promo-strip > div:last-child { border-bottom: 0; }

  .about-layout { grid-template-columns: 1fr; }
  .about-visual { max-width: 620px; width: 100%; margin: 0 auto; }
  .line-three { left: 50%; }
  .node-scada { left: 75px; }
  .node-plc { right: 75px; }

  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 650px; }
  .contact::before { width: 100%; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  .footer-contact { grid-column: 2 / -1; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 82px; }
  body { font-size: 15px; }
  .utility-bar { display: none; }
  .site-header { top: 0; }
  .primary-nav { inset: 70px 0 auto; }

  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(39px, 12vw, 55px); }
  .hero h1 em { white-space: normal; }
  .hero-lede { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-note { align-items: flex-start; }

  .control-stage { min-height: 475px; padding: 12px; border-radius: 16px; }
  .process-board { min-height: 405px; padding: 14px; }
  .process-canvas { height: 190px; }
  .tank { left: 36%; transform: scale(.9); transform-origin: center; }
  .valve-one { left: 11%; }
  .valve-two { right: 14%; }
  .motor { right: 0; transform: scale(.88); }
  .board-metrics > div { padding: 7px; }
  .board-metrics strong { font-size: 14px; }
  .mode-switcher { right: 26px; bottom: 4px; left: 26px; }

  .capability-rail { grid-template-columns: 1fr; border-radius: 7px 7px 0 0; }
  .capability-rail > div { min-height: 64px; padding: 14px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .capability-rail > div:last-child { border-bottom: 0; }

  .section { padding: 76px 0; }
  .section-heading h2,
  .map-intro h2,
  .certificate-copy h2,
  .about-copy h2,
  .faq-intro h2,
  .contact-copy h2 { font-size: 37px; }
  .split-heading > p { padding-left: 18px; }

  .program-row { grid-template-columns: 30px minmax(0, 1fr); gap: 10px; padding: 30px 0; }
  .program-row:hover { padding-right: 0; padding-left: 0; background: transparent; }
  .program-row::before { display: none; }
  .program-main h3 { font-size: 24px; }
  .module-list li { font-size: 8px; }
  .program-side { grid-template-columns: 1fr; }
  .program-side p, .program-side strong, .program-side small, .program-side .text-link { grid-column: 1; grid-row: auto; justify-self: start; }
  .program-side .text-link { margin-top: 12px; }

  .course-toolbar { margin-top: -10px; }
  .course-grid { grid-template-columns: 1fr; }
  .course-card { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
  .course-image, .course-image img { height: 100%; min-height: 240px; }
  .course-copy h3, .course-description { min-height: 0; }

  .learning-map { padding: 76px 0; }
  .route-tabs { display: grid; grid-template-columns: 1fr; }
  .route-panel { padding: 20px 15px; }
  .route-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .route-steps li { grid-template-columns: 42px minmax(0, 1fr); padding: 10px 0; }
  .route-steps .step-type { grid-column: 2; }
  .project-brief { grid-template-columns: 1fr 38px; gap: 10px; padding: 18px; }
  .project-brief > span { grid-column: 1 / -1; }

  .centered { text-align: left; }
  .centered .eyebrow { justify-content: flex-start; }
  .centered > p:not(.eyebrow) { margin-left: 0; }
  .solution-nav { grid-template-columns: 1fr 1fr; }
  .solution-nav button { min-height: 58px; }
  .solution-copy { padding: 32px 22px 20px; }
  .solution-visual { min-height: 350px; padding: 35px 16px; }
  .visual-window { width: 100%; }

  .certificate { padding: 76px 0; }
  .certificate-points { grid-template-columns: 1fr; }
  .certificate-card { min-height: 355px; padding: 28px 24px; transform: none; }
  .certificate-card > h3 { font-size: 18px; }
  .certificate-card > p { margin-top: 34px; }
  .certificate-footer { grid-template-columns: 1fr 45px; gap: 12px; }
  .certificate-footer > div:last-child { grid-column: 1 / -1; text-align: left; }
  .qr-sim { width: 45px; height: 45px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-plan.recommended { grid-column: auto; }
  .price-plan { padding: 28px; }

  .course-toolbar { display: grid; grid-template-columns: 1fr 1fr; }
  .course-toolbar button { width: 100%; }
  .course-card { display: block; }
  .course-image, .course-image img { height: 205px; min-height: 205px; }

  .blueprint { min-height: 470px; border-width: 7px; }
  .bp-node { width: 86px; height: 52px; font-size: 8px; }
  .node-cloud { left: calc(50% - 43px); }
  .node-scada { top: 190px; left: 35px; }
  .node-plc { top: 190px; right: 35px; }
  .node-field { right: calc(50% - 43px); bottom: 65px; }
  .line-one { top: 143px; width: 110px; }
  .line-two { top: 143px; width: 110px; }
  .line-three { top: 240px; width: 135px; }
  .bp-note { display: none; }
  .visual-caption { right: -5px; bottom: 25px; }
  .principles > div { grid-template-columns: 32px 1fr; }
  .principles p { grid-column: 2; }

  .faq-item button { min-height: 74px; font-size: 14px; }
  .contact { padding: 76px 0; }
  .contact-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
