:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Courier, monospace;
}

.whatsapp-panel[hidden] {
  display: none;
}

:root {
  --navy: #102236;
  --navy-deep: #071624;
  --navy-soft: #17324a;
  --orange: #ff5a0a;
  --orange-dark: #dd4300;
  --white: #ffffff;
  --steel: #e7ecf0;
  --steel-light: #f4f6f8;
  --ink: #152334;
  --slate: #586777;
  --line: #d6dee5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.shell {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 92px;
  border-bottom: 1px solid rgba(16, 34, 54, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 42px;
}

.brand {
  display: flex;
  width: 174px;
  height: 64px;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
}

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

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-cta:hover {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.mobile-nav[hidden] {
  display: none;
}

.menu-toggle {
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 0 16px;
  border: 1px solid var(--orange);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.menu-toggle-icon {
  display: grid;
  width: 18px;
  gap: 4px;
}

.menu-toggle-icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.menu-toggle.is-open .menu-toggle-icon i:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-icon i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 635px;
  grid-template-columns: 56% 44%;
  overflow: hidden;
  background: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  padding: 88px 72px 138px max(48px, calc((100vw - 1280px) / 2));
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff7a38;
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 4.25vw, 70px);
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 1.04;
}

.hero-intro {
  max-width: 660px;
  margin: 28px 0 0;
  color: #38495a;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 750;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.hero-visual {
  position: relative;
  background:
    linear-gradient(90deg, rgba(7, 22, 36, 0.06), rgba(7, 22, 36, 0.18)),
    linear-gradient(180deg, rgba(7, 22, 36, 0.05), rgba(7, 22, 36, 0.55)),
    url("/assets/hero-industrial.webp") center / cover no-repeat,
    var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(135deg, transparent 10%, black 75%);
}

.hero-index {
  position: absolute;
  right: 42px;
  bottom: 42px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.orange-seam {
  position: absolute;
  z-index: 3;
  top: -160px;
  bottom: -210px;
  left: 78%;
  width: 8px;
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 90, 10, 0.18);
  transform: rotate(20deg);
  transform-origin: top;
}

.pillar-zone {
  position: relative;
  z-index: 10;
  margin-top: -88px;
  padding-bottom: 82px;
  background: linear-gradient(
    to bottom,
    transparent 88px,
    var(--navy-deep) 88px
  );
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  border-top: 4px solid var(--orange);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(4, 18, 30, 0.24);
  padding: 0 28px 28px;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.pillar-card:hover {
  box-shadow: 0 30px 70px rgba(4, 18, 30, 0.32);
  transform: translateY(-5px);
}

.pillar-visual,
.mini-dashboard {
  position: relative;
  height: 168px;
  margin: 0 -28px 26px;
  overflow: hidden;
}

.equipment-visual {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 90, 10, 0.12),
      transparent 44%
    ),
    linear-gradient(135deg, #f9fafb, #dfe6eb);
}

.audit-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(16, 34, 54, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 34, 54, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, #ffffff, #e2e8ed);
  background-size:
    24px 24px,
    24px 24px,
    auto;
}

.audit-orbit {
  position: absolute;
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.orbit-one {
  width: 124px;
  height: 124px;
}

.orbit-two {
  width: 82px;
  height: 82px;
  border-color: var(--orange);
}

.audit-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
}

.audit-mark {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.mark-one {
  top: 18px;
  left: 50%;
}
.mark-two {
  top: 50%;
  right: 25%;
}
.mark-three {
  bottom: 18px;
  left: 50%;
}
.mark-four {
  top: 50%;
  left: 25%;
}

.machine-ring {
  position: absolute;
  top: 34px;
  width: 102px;
  height: 102px;
  border: 13px solid var(--navy);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #8090a0;
}

.ring-one {
  left: 32%;
}

.ring-two {
  left: calc(32% + 70px);
  transform: scale(0.72);
}

.machine-base {
  position: absolute;
  right: 18%;
  bottom: 24px;
  left: 20%;
  height: 14px;
  border-radius: 1px;
  background: var(--navy);
  box-shadow: 0 12px 0 #8997a3;
}

.pillar-card-navy {
  background: var(--navy);
  color: var(--white);
}

.consulting-visual {
  display: flex;
  align-items: center;
  padding: 22px 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #071624, #162f45);
  background-size:
    24px 24px,
    24px 24px,
    auto;
}

.consulting-report {
  position: relative;
  z-index: 2;
  width: min(77%, 310px);
  padding: 10px 12px 9px;
  border-left: 4px solid var(--orange);
  background: #f8fafb;
  box-shadow: 12px 12px 28px rgba(1, 8, 15, 0.3);
}

.consulting-report-head,
.consulting-report-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6b7b89;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.consulting-report-head b {
  color: var(--orange);
  font-size: 8px;
}

.consulting-report svg {
  display: block;
  width: 100%;
  height: 77px;
}

.report-grid {
  fill: none;
  stroke: #dce3e8;
  stroke-width: 1;
}

.report-baseline {
  fill: none;
  stroke: #8495a3;
  stroke-dasharray: 4 4;
  stroke-width: 1.5;
}

.report-trend {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
}

.report-points {
  fill: var(--orange);
  stroke: #f8fafb;
  stroke-width: 1.5;
}

.consulting-report-foot {
  padding-top: 7px;
  border-top: 1px solid #dce3e8;
}

.consulting-stamp {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  display: flex;
  min-width: 128px;
  flex-direction: column;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(7, 22, 36, 0.94);
  box-shadow: 8px 8px 0 var(--orange);
  color: var(--white);
}

.consulting-stamp span {
  color: #95aabc;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consulting-stamp strong {
  margin-top: 3px;
  font-size: 11px;
}

.dashboard-card {
  background: #f8fafb;
}

.mini-dashboard {
  padding: 20px;
  background: var(--navy);
}

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

.mini-kpis span {
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 90, 10, 0.25)
  );
}

.mini-chart {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  height: 72px;
  align-items: end;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-chart i {
  display: block;
  width: 10%;
  background: var(--orange);
}

.mini-chart i:nth-child(1) {
  height: 28%;
}
.mini-chart i:nth-child(2) {
  height: 52%;
}
.mini-chart i:nth-child(3) {
  height: 45%;
}
.mini-chart i:nth-child(4) {
  height: 74%;
}
.mini-chart i:nth-child(5) {
  height: 90%;
}

.mini-radar {
  position: absolute;
  right: 20px;
  bottom: 9px;
  width: 116px;
  height: 102px;
}

.mini-radar-web {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}

.mini-radar-data {
  fill: rgba(255, 90, 10, 0.36);
  stroke: var(--orange);
  stroke-width: 2;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pillar-card h2 {
  margin: 0 0 15px;
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.pillar-card p:not(.card-kicker) {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

.pillar-card-navy p:not(.card-kicker) {
  color: #bac7d1;
}

.pillar-card > a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.pillar-card > a span {
  transition: transform 180ms ease;
}

.pillar-card > a:hover span {
  transform: translateX(5px);
}

.audience-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audience-grid {
  display: grid;
  min-height: 94px;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: center;
  gap: 22px;
}

.audience-grid p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.audience-grid span {
  color: #61707e;
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.engineering-copy h2,
.dashboard-copy h2,
.about-grid h2,
.contact-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

.section-heading > p {
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.consulting-section {
  background: var(--white);
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.consulting-item {
  display: grid;
  min-height: 190px;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.consulting-item:hover {
  background: var(--steel-light);
  transform: translateY(-2px);
}

.consulting-item > span {
  padding-top: 4px;
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 800;
}

.consulting-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.consulting-item p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.equipment-item {
  min-height: 270px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.equipment-item:last-child {
  border-right: 0;
}

.equipment-item > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 700;
}

.equipment-item h3 {
  margin: 54px 0 16px;
  font-size: 22px;
  line-height: 1.2;
}

.equipment-item p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

.equipment-item:hover {
  background: var(--navy);
  color: var(--white);
}

.equipment-item:hover p {
  color: #becbd5;
}

.engineering-section {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.engineering-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 110px;
  align-items: center;
}

.engineering-copy h2 {
  max-width: 700px;
  color: var(--white);
}

.engineering-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: #becbd5;
  font-size: 17px;
  line-height: 1.75;
}

.engineering-services {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.engineering-services > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.engineering-services strong {
  color: var(--white);
  font-size: 14px;
}

.engineering-services span {
  color: #93a6b6;
  font-size: 14px;
}

.audit-panel {
  border-top: 4px solid var(--orange);
  background: var(--white);
  padding: 36px;
  color: var(--navy);
  box-shadow: 32px 32px 0 rgba(255, 255, 255, 0.055);
}

.panel-label {
  margin: 0 0 28px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
}

.audit-list span {
  color: #8c9aa7;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.audit-list strong {
  font-size: 16px;
}

.audit-panel > a {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.dashboard-section {
  background: var(--steel-light);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 82px;
  align-items: center;
}

.dashboard-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.dashboard-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 34px;
}

.dashboard-list span {
  position: relative;
  padding-left: 17px;
  color: #33485a;
  font-size: 13px;
  font-weight: 700;
}

.dashboard-list span::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  content: "";
}

.dashboard-frame {
  overflow: hidden;
  border: 8px solid var(--navy);
  background: #0b1c2b;
  color: var(--white);
  box-shadow: 28px 28px 0 #d9e0e5;
}

.dash-top {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid #274056;
}

.dash-top div {
  display: flex;
  flex-direction: column;
}

.dash-top small,
.dash-kpis small {
  color: #6f899f;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-top strong {
  font-size: 14px;
}

.dash-top > span {
  padding: 7px 10px;
  background: rgba(255, 90, 10, 0.15);
  color: #ff8b52;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 20px 0;
}

.dash-kpis > div {
  display: grid;
  min-height: 74px;
  padding: 12px;
  border: 1px solid #243c50;
  background: #102538;
}

.dash-kpis strong {
  font-size: 24px;
}

.dash-kpis i {
  color: #54c89a;
  font-size: 9px;
  font-style: normal;
}

.dash-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
  padding: 10px 20px 20px;
}

.trend-panel,
.quality-panel {
  min-height: 210px;
  padding: 16px;
  border: 1px solid #243c50;
  background: #102538;
}

.trend-panel p,
.quality-panel p {
  margin: 0;
  color: #99adbc;
  font-size: 10px;
}

.trend-bars {
  display: flex;
  height: 146px;
  align-items: flex-end;
  gap: 7px;
  margin-top: 20px;
  border-bottom: 1px solid #2a4256;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 35px,
    rgba(255, 255, 255, 0.05) 35px 36px
  );
}

.trend-bars span {
  flex: 1;
  min-width: 5px;
  background: linear-gradient(to top, #d34605, #ff7a32);
}

.spider-chart {
  display: block;
  width: 100%;
  height: 170px;
  margin-top: 4px;
  overflow: visible;
}

.spider-web {
  fill: none;
  stroke: #3b5368;
  stroke-width: 1;
}

.spider-data {
  fill: rgba(255, 90, 10, 0.28);
  stroke: #ff6b20;
  stroke-width: 2.5;
}

.spider-points {
  fill: #ff6b20;
  stroke: #102538;
  stroke-width: 1.5;
}

.spider-labels {
  fill: #91a6b7;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 8px;
  font-weight: 650;
}

.dashboard-showcase {
  border-top: 1px solid #1b3648;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #030c13;
  background-size: 48px 48px;
  color: var(--white);
}

.dashboard-showcase-head {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.dashboard-showcase-head h2 {
  max-width: 760px;
  color: var(--white);
}

.dashboard-showcase-head > p {
  margin: 0 0 8px;
  color: #99afbd;
  font-size: 17px;
  line-height: 1.75;
}

.dashboard-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dashboard-example {
  margin: 0;
  border: 1px solid #274456;
  border-top: 4px solid var(--orange);
  background: #081925;
  box-shadow: 18px 18px 0 rgba(255, 90, 10, 0.08);
}

.dashboard-example > a {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #274456;
  background: #06131d;
}

.dashboard-example > a::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 11px;
  background: rgba(2, 9, 15, 0.88);
  color: #d9e6ec;
  content: "View full dashboard";
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(5px);
  transition:
    background var(--transition),
    transform var(--transition);
}

.dashboard-example > a:hover::after {
  background: var(--orange);
  color: var(--white);
  transform: translateY(0);
}

.dashboard-example img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 260ms ease;
}

.dashboard-example > a:hover img {
  transform: scale(1.018);
}

.dashboard-example figcaption {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 28px;
}

.dashboard-example figcaption > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-example h3 {
  margin: 0 0 10px;
  color: #eef4f7;
  font-size: 22px;
}

.dashboard-example p {
  margin: 0;
  color: #91a6b5;
  font-size: 15px;
  line-height: 1.65;
}

.dashboard-confidentiality {
  margin: 38px 0 0;
  color: #718a9b;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.chatbot-section {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.chatbot-layout {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 90px;
  align-items: center;
}

.chatbot-visual {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 110px minmax(210px, 0.85fr);
  align-items: center;
  min-height: 480px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(31, 174, 89, 0.16),
      transparent 32%
    ),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #0a1a29;
  background-size:
    auto,
    28px 28px,
    28px 28px,
    auto;
  box-shadow: 28px 28px 0 rgba(255, 255, 255, 0.045);
}

.chat-phone {
  overflow: hidden;
  border: 7px solid #020b12;
  border-radius: 24px;
  background: #e9eee9;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
}

.chat-phone-head {
  display: grid;
  min-height: 66px;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 13px;
  background: #0f7b46;
}

.chat-phone-head > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
}

.chat-phone-head div {
  display: flex;
  flex-direction: column;
}

.chat-phone-head strong {
  font-size: 12px;
}

.chat-phone-head small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}

.chat-screen {
  min-height: 340px;
  padding: 16px 13px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
    repeating-linear-gradient(45deg, #d8e0da 0 8px, #eef2ef 8px 16px);
}

.chat-bubble {
  max-width: 86%;
  margin-bottom: 11px;
  padding: 10px 11px 7px;
  border-radius: 3px 12px 12px 12px;
  box-shadow: 0 3px 9px rgba(18, 42, 31, 0.09);
  color: #1d3327;
  font-size: 10px;
  line-height: 1.45;
}

.chat-bubble small {
  display: block;
  margin-top: 5px;
  color: #738078;
  font-size: 7px;
  text-align: right;
}

.bot-bubble {
  background: var(--white);
}

.user-bubble {
  margin-left: auto;
  border-radius: 12px 3px 12px 12px;
  background: #d9fdd3;
}

.chat-choice-stack {
  display: grid;
  gap: 5px;
  margin: -3px 0 12px;
}

.chat-choice-stack span {
  padding: 7px 9px;
  border: 1px solid #9cc5ae;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f7b46;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

.chat-flow-arrow {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #7f94a5;
  font-family: var(--font-geist-mono), monospace;
  text-align: center;
  text-transform: uppercase;
}

.chat-flow-arrow span {
  font-size: 7px;
  letter-spacing: 0.1em;
}

.chat-flow-arrow i {
  margin-top: 10px;
  color: var(--orange);
  font-size: 34px;
  font-style: normal;
}

.chat-routing {
  padding: 22px;
  border-top: 3px solid var(--orange);
  background: #f7f9fa;
  box-shadow: 14px 14px 0 rgba(255, 90, 10, 0.17);
  color: var(--navy);
}

.chat-routing > p {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.chat-routing > div {
  position: relative;
  display: flex;
  min-height: 65px;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  border-bottom: 1px solid var(--line);
}

.chat-routing > div:last-child {
  border-bottom: 0;
}

.chat-routing strong {
  font-size: 11px;
}

.chat-routing small {
  margin-top: 4px;
  color: var(--slate);
  font-size: 8px;
  line-height: 1.4;
}

.route-dot {
  position: absolute;
  top: 24px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.route-orange {
  background: var(--orange);
}
.route-blue {
  background: #2e82b7;
}
.route-green {
  background: #1fae59;
}

.chatbot-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

.chatbot-copy > p:not(.eyebrow) {
  margin: 27px 0 0;
  color: #b8c7d2;
  font-size: 16px;
  line-height: 1.75;
}

.chatbot-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
  margin: 32px 0;
}

.chatbot-capabilities span {
  position: relative;
  padding-left: 17px;
  color: #d5dfe6;
  font-size: 12px;
  font-weight: 700;
}

.chatbot-capabilities span::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #1fae59;
  content: "";
}

.chatbot-copy .button {
  width: fit-content;
}

.compact-heading {
  grid-template-columns: 1fr;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-grid article {
  padding: 28px 28px 0 0;
}

.process-grid article:not(:last-child) {
  border-right: 1px solid var(--line);
  margin-right: 28px;
}

.process-grid span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 38px 0 12px;
  font-size: 22px;
}

.process-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}

.about-grid > div:last-child {
  padding-top: 38px;
}

.about-grid > div:last-child p {
  margin: 0 0 22px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.8;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  border-bottom: 4px solid var(--orange);
  background: var(--navy);
  color: var(--white);
}

.contact-section::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: var(--orange);
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.contact-grid h2 {
  max-width: 800px;
  color: var(--white);
}

.contact-action {
  display: flex;
  width: 100%;
  max-width: 540px;
  align-items: flex-start;
  flex-direction: column;
  justify-self: start;
  text-align: left;
}

.contact-action p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #dbe6ed;
  font-size: 17px;
  line-height: 1.65;
}

.contact-action .button-primary,
.contact-action .button-call {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.contact-action .button-primary {
  background: var(--orange);
  color: var(--white);
}

.contact-action .button-primary:hover {
  background: var(--orange-dark);
}

.button-call {
  border: 1px solid #496779;
  background: #0b2130;
  color: var(--white);
}

.button-call:hover {
  border-color: #6d899a;
  background: #102c3e;
}

.contact-buttons {
  display: grid;
  width: 100%;
  max-width: 540px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-email {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #496779;
  background: #0b2130;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.contact-email:hover {
  border-color: var(--orange);
  background: #102c3e;
}

.contact-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 22px;
  color: #b8cad5;
  font-size: 13px;
  line-height: 1.55;
}

.contact-details a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.contact-details small {
  flex-basis: 100%;
  color: #7f98a8;
}

footer {
  padding: 34px 0;
  background: #07111c;
  color: #899aaa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  height: 58px;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

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

.footer-grid p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > a {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-legal a {
  color: #b6c7d2;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #425d6f;
  text-underline-offset: 4px;
}

.footer-legal a:hover {
  color: var(--white);
  text-decoration-color: var(--orange);
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #06131d;
  background-size: 48px 48px;
  color: #d8e4ea;
}

.legal-page .site-header {
  position: static;
}

.legal-page .brand {
  margin-right: auto;
}

.legal-home-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.legal-home-link:hover {
  background: var(--navy);
  color: var(--white);
}

.legal-hero {
  padding: 86px 0 72px;
  border-bottom: 1px solid #1f3b4d;
  background: #071722;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.legal-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: #9eb2bf;
  font-size: 18px;
  line-height: 1.7;
}

.legal-main {
  padding: 72px 0 94px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 820px);
  gap: 80px;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 28px;
  padding: 24px;
  border: 1px solid #29495c;
  border-top: 4px solid var(--orange);
  background: #0a1e2b;
}

.legal-summary strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 15px;
}

.legal-summary p,
.legal-summary a {
  color: #93a9b7;
  font-size: 13px;
  line-height: 1.65;
}

.legal-summary a {
  display: inline-block;
  margin-top: 10px;
  color: #dce8ee;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 42px;
  border-bottom: 1px solid #1d394a;
  margin-bottom: 42px;
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 30px;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 28px 0 12px;
  color: #ecf3f6;
  font-size: 19px;
}

.legal-content p,
.legal-content li {
  color: #abc0cc;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: #ffffff;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.legal-note {
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  background: #0a1e2b;
}

.legal-page footer {
  color: #899aaa;
}

.whatsapp-widget {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
}

.whatsapp-launcher {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 9px;
  border: 0;
  border-radius: 30px;
  background: #1fae59;
  box-shadow: 0 14px 34px rgba(10, 39, 25, 0.28);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.whatsapp-launcher:hover {
  background: #158f47;
  transform: translateY(-2px);
}

.whatsapp-launcher:focus-visible,
.whatsapp-panel button:focus-visible,
.whatsapp-topics a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.whatsapp-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 10px;
  letter-spacing: -0.04em;
}

.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 350px;
  overflow: hidden;
  border-radius: 18px;
  background: #f2f5f4;
  box-shadow: 0 24px 70px rgba(7, 22, 36, 0.34);
  color: var(--ink);
  animation: chatbot-open 180ms ease-out;
}

.whatsapp-panel-head {
  display: grid;
  grid-template-columns: 46px 1fr 32px;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: #0f7b46;
  color: var(--white);
}

.whatsapp-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.whatsapp-panel-head > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.whatsapp-panel-head strong {
  font-size: 14px;
}

.whatsapp-panel-head span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.whatsapp-panel-head button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
}

.whatsapp-message {
  margin: 18px 18px 12px;
  padding: 14px 16px;
  border-radius: 3px 14px 14px 14px;
  background: var(--white);
  box-shadow: 0 5px 14px rgba(16, 34, 54, 0.07);
}

.whatsapp-message p {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.whatsapp-message small {
  display: block;
  margin-top: 6px;
  color: var(--slate);
  font-size: 11px;
  line-height: 1.45;
}

.whatsapp-topics {
  display: grid;
  gap: 7px;
  padding: 0 18px 14px;
}

.whatsapp-topics a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid #cfdad4;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.whatsapp-topics a:hover {
  border-color: #1fae59;
  color: #0f7b46;
}

.whatsapp-number {
  margin: 0;
  padding: 11px 18px 14px;
  border-top: 1px solid #d8e0dc;
  color: #6d7b73;
  font-size: 10px;
  text-align: center;
}

@keyframes chatbot-open {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Dark Industrial Control */

:root {
  --navy: #071722;
  --navy-deep: #02090f;
  --navy-soft: #0d293c;
  --steel: #132838;
  --steel-light: #07131d;
  --ink: #e9f0f4;
  --slate: #91a5b4;
  --line: #1d3749;
}

body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #040c13;
  background-size: 48px 48px;
  color: var(--ink);
}

.site-header {
  border-bottom: 1px solid #1a3344;
  background: rgba(3, 12, 19, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.brand {
  height: 62px;
  padding: 5px 10px;
  border: 1px solid #263c4c;
  background: #f4f6f7;
}

.primary-nav {
  color: #aebdca;
}

.primary-nav a:hover {
  color: var(--white);
}

.nav-cta {
  border-color: var(--orange);
  background: rgba(255, 90, 10, 0.08);
  color: var(--white);
}

.nav-cta:hover {
  background: var(--orange);
}

.hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #06121c;
  background-size: 42px 42px;
}

.control-status {
  display: flex;
  max-width: 760px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding: 14px 18px;
  border: 1px solid #36566b;
  border-left: 4px solid #25d47f;
  background: rgba(10, 35, 52, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  color: #e4edf3;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.control-status span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.control-status i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #25d47f;
  box-shadow: 0 0 12px rgba(37, 212, 127, 0.95);
}

.control-status b {
  color: #ffffff;
  font-weight: 750;
}

.hero h1 {
  color: #f2f6f8;
}

.hero-intro {
  color: #9eb0bd;
}

.button-secondary {
  border-color: #365367;
  background: #081722;
  color: #dce5eb;
}

.button-secondary:hover {
  border-color: var(--orange);
  background: #10293b;
}

.hero-visual {
  border-left: 1px solid #1f394b;
  background:
    linear-gradient(90deg, rgba(3, 12, 19, 0.35), rgba(3, 12, 19, 0.08)),
    linear-gradient(180deg, rgba(3, 12, 19, 0.12), rgba(3, 12, 19, 0.88)),
    url("/assets/hero-industrial.webp") center / cover no-repeat,
    var(--navy);
  filter: saturate(0.78) contrast(1.08);
}

.hero-index {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 9, 15, 0.74);
}

.orange-seam {
  width: 4px;
  box-shadow: 0 0 20px rgba(255, 90, 10, 0.42);
}

.pillar-zone {
  background: linear-gradient(to bottom, transparent 88px, #02090f 88px);
}

.pillar-card,
.pillar-card-navy,
.dashboard-card {
  border: 1px solid #20394a;
  border-top: 3px solid var(--orange);
  background: #081722;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.4);
  color: var(--white);
}

.pillar-card:hover {
  border-color: #355267;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.52);
}

.pillar-card p:not(.card-kicker),
.pillar-card-navy p:not(.card-kicker) {
  color: #91a5b4;
}

.consulting-report {
  border: 1px solid #294456;
  border-left: 4px solid var(--orange);
  background: #091b29;
}

.consulting-report-head,
.consulting-report-foot {
  color: #8096a7;
}

.report-grid {
  stroke: #223c4e;
}

.report-baseline {
  stroke: #7890a1;
}

.report-points {
  stroke: #091b29;
}

.consulting-report-foot {
  border-top-color: #294456;
}

.consulting-stamp {
  border-color: #38576b;
  background: #020a11;
}

.audit-visual {
  background:
    linear-gradient(rgba(123, 156, 178, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 156, 178, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, #102c40, #05111a);
  background-size:
    24px 24px,
    24px 24px,
    auto;
}

.audit-orbit {
  border-color: #9ab0c0;
}

.orbit-two {
  border-color: var(--orange);
}

.audit-core {
  border: 1px solid #355064;
  background: #030b12;
}

.audience-band {
  border-color: #193245;
  background: #050f18;
}

.audience-grid p {
  color: #dbe5eb;
}

.audience-grid span {
  color: #8499a9;
}

.consulting-section,
.section-equipment,
.process-section {
  background: rgba(5, 15, 24, 0.96);
}

.section-heading h2,
.engineering-copy h2,
.dashboard-copy h2,
.about-grid h2,
.contact-grid h2 {
  color: #f0f5f7;
}

.section-heading > p,
.consulting-item p,
.equipment-item p,
.process-grid p {
  color: #8fa3b2;
}

.consulting-grid,
.equipment-grid,
.process-grid {
  border-color: #213b4d;
}

.consulting-item,
.equipment-item {
  border-color: #213b4d;
  background: #07151f;
}

.consulting-item:hover,
.equipment-item:hover {
  background: #0d2535;
}

.consulting-item h3,
.equipment-item h3,
.process-grid h3 {
  color: #e8eef2;
}

.engineering-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #020a11;
  background-size: 44px 44px;
}

.audit-panel {
  border: 1px solid #274457;
  border-top: 4px solid var(--orange);
  background: #081925;
  box-shadow: 24px 24px 0 rgba(255, 90, 10, 0.08);
  color: #e8eff3;
}

.audit-list > div {
  border-color: #203b4d;
}

.audit-list span {
  color: #647f92;
}

.dashboard-section {
  background: #07131d;
}

.dashboard-copy > p:not(.eyebrow) {
  color: #91a5b4;
}

.dashboard-list span {
  color: #bdd0dc;
}

.dashboard-frame {
  border-color: #1d384a;
  box-shadow: 28px 28px 0 rgba(255, 90, 10, 0.11);
}

.chatbot-section {
  border-top: 1px solid #193345;
  border-bottom: 1px solid #193345;
  background: #030b12;
}

.chatbot-visual {
  border-color: #244256;
  box-shadow: 28px 28px 0 rgba(255, 90, 10, 0.08);
}

.about-section {
  border-color: #1c3749;
  background: #06121b;
}

.about-grid > div:last-child p {
  color: #91a5b4;
}

.contact-section {
  border-top: 1px solid #263f50;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    #06131d;
  background-size:
    40px 40px,
    40px 40px,
    auto;
}

footer {
  border-top: 1px solid #1a3242;
  background: #02080d;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-meta p {
  color: #a0b1bd;
}

.footer-meta span {
  color: #637b8c;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.footer-brand {
  border: 1px solid #263e4e;
  background: #f3f5f6;
}

.section-page-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--orange);
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.section-page-link:hover span {
  transform: translateX(4px);
}

.section-page-link-light {
  color: var(--white);
}

.service-page {
  background: #02090f;
  color: var(--white);
}

.service-page .site-header {
  border-bottom-color: #1f394b;
  background: rgba(2, 9, 15, 0.97);
}

.service-page .primary-nav,
.service-page .nav-cta {
  color: var(--white);
}

.service-page .nav-cta {
  border-color: #496779;
}

.service-page .nav-cta:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 94px;
  border-bottom: 1px solid #1f394b;
  background:
    linear-gradient(rgba(26, 47, 62, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 47, 62, 0.18) 1px, transparent 1px),
    linear-gradient(125deg, #02090f 0 62%, #071d2b 62% 100%);
  background-size:
    42px 42px,
    42px 42px,
    auto;
}

.service-hero::after {
  position: absolute;
  top: -140px;
  right: 22%;
  width: 4px;
  height: 620px;
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 90, 10, 0.38);
  content: "";
  transform: rotate(20deg);
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 90px;
  align-items: end;
}

.service-hero .eyebrow {
  color: var(--orange);
}

.service-hero h1 {
  max-width: 840px;
  margin: 18px 0 24px;
  color: var(--white);
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-hero-copy > p:last-of-type {
  max-width: 760px;
  margin: 0;
  color: #9eb0bd;
  font-size: 18px;
  line-height: 1.75;
}

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

.service-hero-panel {
  border: 1px solid #294456;
  border-left: 4px solid var(--orange);
  background: rgba(5, 20, 31, 0.88);
  padding: 28px;
}

.service-hero-panel p {
  margin: 0 0 20px;
  color: #6f8798;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-hero-panel span {
  display: block;
  padding: 13px 0;
  border-top: 1px solid #1f394b;
  color: #dce5eb;
  font-size: 14px;
  font-weight: 700;
}

.service-hero-panel span:last-child {
  border-bottom: 1px solid #1f394b;
}

.service-section {
  padding: 94px 0;
  background: #f4f6f8;
  color: #152334;
}

.service-section-dark {
  border-top: 1px solid #1a3242;
  border-bottom: 1px solid #1a3242;
  background: #06131d;
  color: var(--white);
}

.service-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.service-heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
  color: #102236;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.service-heading > p {
  margin: 0;
  color: #586777;
  font-size: 17px;
  line-height: 1.75;
}

.service-section-dark .service-heading h2 {
  color: var(--white);
}

.service-section-dark .service-heading > p {
  color: #91a5b4;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 265px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-card > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
}

.service-card h3 {
  margin: 46px 0 14px;
  color: #102236;
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: #586777;
  font-size: 15px;
  line-height: 1.7;
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
}

.outcome-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.outcome-copy p {
  margin: 0;
  color: #91a5b4;
  font-size: 17px;
  line-height: 1.75;
}

.outcome-list {
  border-top: 1px solid #294456;
}

.outcome-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #294456;
}

.outcome-list article > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.outcome-list h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 18px;
}

.outcome-list p {
  margin: 0;
  color: #91a5b4;
  font-size: 14px;
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  padding: 11px 14px;
  border: 1px solid #c8d2d9;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
}

.service-contact .contact-grid {
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
}

.service-contact .contact-action {
  max-width: 520px;
}

@media (max-width: 1100px) {
  .shell {
    width: min(100% - 56px, 1040px);
  }

  .primary-nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 64% 36%;
  }

  .hero-copy {
    padding-left: 48px;
  }

  .orange-seam {
    left: 82%;
  }

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

  .equipment-item:nth-child(2) {
    border-right: 0;
  }

  .equipment-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .dashboard-layout,
  .engineering-grid,
  .chatbot-layout {
    gap: 60px;
  }

  .contact-grid {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
  }

  .contact-action,
  .contact-buttons {
    max-width: 500px;
  }

  .service-hero-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 54px;
  }

  .service-heading {
    gap: 44px;
  }

  .chatbot-visual {
    grid-template-columns: minmax(220px, 1fr) 72px minmax(185px, 0.8fr);
    padding: 30px;
  }

  .audience-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    padding: 22px 0;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 40px, 720px);
  }

  .site-header {
    height: 78px;
  }

  .brand {
    width: 145px;
    height: 54px;
  }

  .primary-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    border-top: 1px solid var(--line);
    border-bottom: 3px solid var(--orange);
    background: rgba(2, 9, 15, 0.99);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.42);
  }

  .mobile-nav a {
    min-height: 54px;
    padding: 17px max(20px, calc((100vw - 720px) / 2));
    border-bottom: 1px solid var(--line);
    color: var(--white);
    font-size: 14px;
    font-weight: 750;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
    background: var(--orange);
  }

  .mobile-nav a:focus-visible {
    outline-offset: -4px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 230px;
  }

  .hero-copy {
    max-width: none;
    padding: 70px 30px 74px;
  }

  .hero-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 260px;
  }

  .orange-seam {
    top: auto;
    right: 0;
    bottom: 258px;
    left: 0;
    width: auto;
    height: 7px;
    transform: none;
  }

  .pillar-zone {
    margin-top: -54px;
    background: linear-gradient(
      to bottom,
      transparent 54px,
      var(--navy-deep) 54px
    );
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .pillar-card {
    min-height: 390px;
  }

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

  .audience-grid p {
    grid-column: 1 / -1;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading,
  .engineering-grid,
  .dashboard-layout,
  .dashboard-showcase-head,
  .chatbot-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-hero-grid,
  .service-heading,
  .outcome-layout,
  .service-contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-hero {
    padding: 76px 0 70px;
  }

  .service-hero-panel {
    max-width: 540px;
  }

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

  .service-section {
    padding: 78px 0;
  }

  .equipment-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
    margin-right: 0;
  }

  .process-grid article:nth-child(-n + 2) {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }

  .about-grid > div:last-child {
    padding-top: 0;
  }

  .contact-section {
    background: var(--navy);
  }

  .contact-action {
    max-width: 560px;
  }

  .dashboard-showcase-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-summary {
    position: static;
  }

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

  .chatbot-layout {
    gap: 64px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 30px, 520px);
  }

  .menu-toggle {
    min-height: 40px;
    padding: 0 13px;
  }

  .hero-copy {
    padding: 58px 20px 66px;
  }

  .control-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 13px 15px;
    font-size: 10px;
  }

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

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .audience-grid,
  .equipment-grid,
  .dashboard-list,
  .chatbot-capabilities,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid span {
    text-align: left;
  }

  .equipment-item,
  .equipment-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article,
  .process-grid article:not(:last-child) {
    margin: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dash-kpis {
    grid-template-columns: 1fr;
  }

  .dash-main {
    grid-template-columns: 1fr;
  }

  .dashboard-frame {
    box-shadow: 12px 12px 0 #d9e0e5;
  }

  .chatbot-visual {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .chat-flow-arrow {
    transform: rotate(90deg);
  }

  .chat-routing {
    box-shadow: 9px 9px 0 rgba(255, 90, 10, 0.17);
  }

  .engineering-services > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-buttons {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-email {
    grid-column: auto;
    width: 100%;
  }

  .contact-details {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-widget {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-panel {
    width: min(350px, calc(100vw - 30px));
  }

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

  .dashboard-example figcaption {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .dashboard-example > a::after {
    display: none;
  }

  .legal-hero {
    padding: 60px 0 50px;
  }

  .legal-main {
    padding: 54px 0 72px;
  }

  .legal-home-link {
    padding: 0 15px;
    font-size: 11px;
  }

  .legal-page .nav-wrap {
    gap: 16px;
  }

  .legal-page .brand {
    width: 138px;
  }

  .service-hero h1 {
    font-size: 44px;
  }

  .service-hero-actions {
    display: grid;
  }

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

  .service-card {
    min-height: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* G2E division, industry, coverage and team sections */

.supply-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 34px 22px;
  background:
    linear-gradient(rgba(123, 156, 178, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 156, 178, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, #102c40, #05111a);
  background-size:
    24px 24px,
    24px 24px,
    auto;
}

.supply-visual span {
  display: grid;
  min-height: 68px;
  place-items: center;
  border: 1px solid #36576d;
  border-top: 3px solid var(--orange);
  background: rgba(2, 9, 15, 0.9);
  color: #dce7ed;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supply-visual i {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}

.supply-grid {
  grid-template-columns: repeat(3, 1fr);
}

.supply-grid .equipment-item {
  border-bottom: 1px solid var(--line);
}

.supply-grid .equipment-item:nth-child(3n) {
  border-right: 0;
}

.supply-grid .equipment-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.digital-zone {
  scroll-margin-top: 92px;
  border-top: 1px solid #1e384a;
  background: #02090f;
}

.digital-zone-head {
  padding-top: 96px;
  padding-bottom: 8px;
}

.digital-zone-head h2 {
  max-width: 820px;
  margin: 0;
  color: #f0f5f7;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.digital-zone-head > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: #91a5b4;
  font-size: 17px;
  line-height: 1.7;
}

.industries-section {
  border-top: 1px solid #1c3749;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #06121b;
  background-size: 44px 44px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #213b4d;
  border-left: 1px solid #213b4d;
}

.industry-card {
  min-height: 260px;
  padding: 34px 30px;
  border-right: 1px solid #213b4d;
  border-bottom: 1px solid #213b4d;
  background: rgba(7, 21, 31, 0.94);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.industry-card:hover {
  z-index: 2;
  background: #0d2535;
  transform: translateY(-3px);
}

.industry-card > span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.industry-card h3 {
  margin: 0;
  color: #edf3f6;
  font-size: 21px;
  line-height: 1.25;
}

.industry-card p {
  margin: 16px 0 0;
  color: #8fa3b2;
  font-size: 14px;
  line-height: 1.7;
}

.coverage-section {
  padding: 82px 0;
  border-top: 1px solid #274457;
  border-bottom: 1px solid #274457;
  background: linear-gradient(
    112deg,
    #071722 0%,
    #071722 70%,
    rgba(255, 90, 10, 0.94) 70%
  );
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  gap: 96px;
  align-items: center;
}

.coverage-grid h2 {
  max-width: 820px;
  margin: 0;
  color: #f1f5f7;
  font-size: clamp(34px, 3.4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.coverage-points {
  display: grid;
  border: 1px solid #345065;
  background: rgba(2, 9, 15, 0.9);
  box-shadow: 18px 18px 0 rgba(2, 9, 15, 0.28);
}

.coverage-points span {
  position: relative;
  min-height: 58px;
  padding: 19px 22px 18px 50px;
  border-bottom: 1px solid #274457;
  color: #d8e3e9;
  font-size: 13px;
  font-weight: 700;
}

.coverage-points span:last-child {
  border-bottom: 0;
}

.coverage-points span::before {
  position: absolute;
  top: 23px;
  left: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 90, 10, 0.62);
  content: "";
}

.team-section {
  background: #030b12;
}

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

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

.team-card {
  overflow: hidden;
  border: 1px solid #243f51;
  border-top: 4px solid var(--orange);
  background: #071722;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.32);
}

.team-photo {
  height: 420px;
  overflow: hidden;
  border-bottom: 1px solid #29485b;
  background: #05111a;
}

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

.portrait-placeholder {
  position: relative;
  display: grid;
  height: 320px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #29485b;
  background:
    linear-gradient(
      135deg,
      transparent 0 58%,
      rgba(255, 90, 10, 0.9) 58% 59%,
      transparent 59%
    ),
    radial-gradient(circle at 50% 42%, #17384d 0 17%, transparent 17.5%),
    radial-gradient(ellipse at 50% 92%, #102c40 0 33%, transparent 33.5%),
    linear-gradient(rgba(123, 156, 178, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 156, 178, 0.08) 1px, transparent 1px),
    #05111a;
  background-size:
    auto,
    auto,
    auto,
    30px 30px,
    30px 30px,
    auto;
}

.portrait-placeholder-alt {
  background:
    linear-gradient(
      45deg,
      transparent 0 58%,
      rgba(255, 90, 10, 0.9) 58% 59%,
      transparent 59%
    ),
    radial-gradient(circle at 50% 42%, #17384d 0 17%, transparent 17.5%),
    radial-gradient(ellipse at 50% 92%, #102c40 0 33%, transparent 33.5%),
    linear-gradient(rgba(123, 156, 178, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 156, 178, 0.08) 1px, transparent 1px),
    #05111a;
  background-size:
    auto,
    auto,
    auto,
    30px 30px,
    30px 30px,
    auto;
}

.portrait-placeholder > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid #45657a;
  background: rgba(2, 9, 15, 0.82);
  color: #edf3f6;
  font-family: var(--font-geist-mono), monospace;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.portrait-placeholder small {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 7px 10px;
  border: 1px solid #345166;
  background: rgba(2, 9, 15, 0.82);
  color: #92a7b6;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-profile {
  padding: 34px 34px 38px;
}

.team-profile h3 {
  margin: 0;
  color: #f1f5f7;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.team-profile h4 {
  margin: 8px 0 0;
  color: #ff7a38;
  font-size: 14px;
  line-height: 1.45;
}

.team-profile > p:not(.card-kicker):not(.credentials) {
  margin: 24px 0 0;
  color: #9aadb9;
  font-size: 14px;
  line-height: 1.75;
}

.team-profile ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.team-profile li {
  position: relative;
  padding-left: 22px;
  color: #c0cfd8;
  font-size: 13px;
  line-height: 1.55;
}

.team-profile li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.credentials {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid #274457;
  color: #718a9b;
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .supply-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .supply-grid .equipment-item:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .supply-grid .equipment-item:nth-child(2n),
  .industries-grid .industry-card:nth-child(2n) {
    border-right: 0;
  }

  .supply-grid .equipment-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .supply-grid .equipment-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .coverage-section {
    background: #071722;
  }

  .coverage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }
}

@media (max-width: 820px) {
  .digital-zone {
    scroll-margin-top: 78px;
  }

  .digital-zone-head {
    padding-top: 78px;
  }

  .team-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    gap: 38px;
  }
}

@media (max-width: 560px) {
  .supply-visual {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .supply-visual span {
    min-height: 42px;
  }

  .supply-visual i {
    transform: rotate(90deg);
    text-align: center;
  }

  .supply-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .supply-grid .equipment-item,
  .supply-grid .equipment-item:nth-child(2n),
  .supply-grid .equipment-item:nth-child(3n),
  .supply-grid .equipment-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .supply-grid .equipment-item:last-child {
    border-bottom: 0;
  }

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

  .team-profile {
    padding: 30px 24px 34px;
  }

  .portrait-placeholder {
    height: 270px;
  }

  .team-photo {
    height: 360px;
  }
}
