:root {
  --ink: #102b3a;
  --navy: #173949;
  --navy-2: #0b2230;
  --aqua: #72c8de;
  --teal: #48a782;
  --mint: #c9efe2;
  --soft-blue: #e9f7fb;
  --paper: #f8fbfb;
  --white: #ffffff;
  --slate: #5d7180;
  --line: #d8e8eb;
  --amber: #f3b14b;
  --coral: #e8725d;
  --shadow: 0 22px 60px rgba(16, 43, 58, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  padding: 5px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(248, 251, 251, 0.96);
  border-bottom: 1px solid rgba(216, 232, 235, 0.84);
  transform: translateZ(0);
  transition: min-height 160ms ease, padding 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  padding-top: 3px;
  padding-bottom: 3px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(16, 43, 58, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 800;
  color: var(--navy);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  max-width: 340px;
  font-size: clamp(0.78rem, 1.6vw, 0.98rem);
  line-height: 1.16;
}

.brand-full img {
  width: 260px;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform-origin: left center;
  transition: width 160ms ease;
}

.site-header.is-scrolled .brand-full img { width: 210px; }

.brand-full span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: #284555;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft-blue);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(16, 43, 58, 0.18);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible { background: var(--teal); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  place-items: center;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.section-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

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

.section-band.deep {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 34, 48, 0.96), rgba(20, 71, 82, 0.94)),
    linear-gradient(90deg, var(--navy-2), var(--teal));
}

.hero {
  padding-top: 88px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92) 0%, rgba(233, 247, 251, 0.84) 42%, rgba(201, 239, 226, 0.8) 100%),
    radial-gradient(circle at 80% 10%, rgba(114, 200, 222, 0.28), transparent 32%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  color: var(--navy-2);
  font-size: clamp(2.45rem, 7vw, 5.4rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--slate);
  line-height: 1.72;
}

.hero-lede {
  max-width: 720px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 14px 30px rgba(16, 43, 58, 0.2);
}

.btn.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.btn.full { width: 100%; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(72, 167, 130, 0.22);
  border-radius: var(--radius);
  color: #244a58;
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual { min-width: 0; }

.dashboard-shell {
  min-height: 520px;
  padding: 24px;
  border: 1px solid rgba(216, 232, 235, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.dash-top,
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-brand img {
  width: 54px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.dash-brand strong,
.dash-brand span,
.panel-head span,
.panel-head b { display: block; }

.dash-brand strong { color: var(--navy); }

.dash-brand span {
  color: var(--slate);
  font-size: 0.88rem;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  color: #07543d;
  background: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.dash-metrics div,
.portfolio-panel,
.route-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.dash-metrics div {
  min-height: 112px;
  padding: 18px;
}

.dash-metrics span {
  display: block;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 700;
}

.dash-metrics strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.dash-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.portfolio-panel { padding: 20px; }
.panel-head { margin-bottom: 20px; }
.panel-head span { color: var(--navy); font-weight: 800; }
.panel-head b { color: var(--teal); font-size: 0.84rem; }

.bar-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  color: var(--slate);
  font-size: 0.86rem;
  font-weight: 700;
}

.bar-row i {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
  width: var(--w);
  box-shadow: 0 8px 18px rgba(72, 167, 130, 0.18);
}

.route-panel {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(216, 232, 235, 0.45) 1px, transparent 1px),
    linear-gradient(rgba(216, 232, 235, 0.45) 1px, transparent 1px),
    #fbfefe;
  background-size: 34px 34px;
}

.route-dot {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 10px 20px rgba(16, 43, 58, 0.2);
}

.route-dot.one { left: 28px; top: 52px; }
.route-dot.two { right: 42px; top: 86px; background: var(--teal); }
.route-dot.three { left: 50px; bottom: 52px; background: var(--amber); }

.route-line {
  position: absolute;
  inset: 58px 48px 74px 36px;
  border-top: 3px solid rgba(72, 167, 130, 0.55);
  border-right: 3px solid rgba(72, 167, 130, 0.55);
  transform: skewY(-8deg);
}

.route-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  width: min(180px, calc(100% - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.route-card strong,
.route-card span { display: block; }

.route-card span {
  margin-top: 5px;
  color: var(--slate);
  font-size: 0.82rem;
}

.stats-strip {
  padding: 28px 0;
  color: var(--white);
  background: var(--navy-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(201, 239, 226, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.stat-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.on-dark h2,
.section-heading.on-dark p,
.section-heading.on-dark .eyebrow { color: var(--white); }

.section-heading.on-dark p { color: rgba(255, 255, 255, 0.76); }

.partners {
  background:
    linear-gradient(180deg, #ffffff, var(--soft-blue));
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.segment-card {
  min-height: 174px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(16, 43, 58, 0.07);
}

.segment-card strong,
.segment-card span { display: block; }

.segment-card strong {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.2rem;
}

.segment-card span {
  color: var(--slate);
  line-height: 1.58;
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 43, 58, 0.09);
}

.partner-panel h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); }
.partner-panel p { margin-bottom: 0; }

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.partner-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(72, 167, 130, 0.24);
  border-radius: var(--radius);
  color: #214957;
  background: linear-gradient(180deg, #ffffff, #eef9fa);
  font-weight: 800;
}

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

.capability-card,
.impact-card,
.governance-item,
.contact-form,
.case-study,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.capability-card {
  min-height: 248px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 167, 130, 0.36);
  box-shadow: 0 18px 40px rgba(16, 43, 58, 0.1);
}

.icon-shape {
  display: inline-block;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--soft-blue);
  position: relative;
}

.icon-shape::before,
.icon-shape::after {
  content: "";
  position: absolute;
}

.icon-shape.comms::before {
  inset: 12px 9px;
  border: 3px solid var(--teal);
  border-radius: 5px;
}

.icon-shape.comms::after {
  left: 16px;
  bottom: 9px;
  border: 7px solid transparent;
  border-top-color: var(--teal);
  transform: rotate(32deg);
}

.icon-shape.dialer::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border: 4px solid var(--aqua);
  border-radius: 50%;
}

.icon-shape.dialer::after {
  width: 14px;
  height: 4px;
  right: 8px;
  bottom: 12px;
  border-radius: 999px;
  background: var(--aqua);
  transform: rotate(42deg);
}

.icon-shape.field::before {
  left: 12px;
  top: 8px;
  width: 22px;
  height: 30px;
  border: 3px solid var(--teal);
  border-radius: 12px 12px 14px 14px;
}

.icon-shape.field::after {
  left: 19px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.icon-shape.legal::before {
  width: 26px;
  height: 3px;
  left: 10px;
  top: 15px;
  background: var(--navy);
  box-shadow: 0 8px 0 var(--navy), 0 16px 0 var(--navy);
}

.icon-shape.legal::after {
  width: 18px;
  height: 18px;
  right: 7px;
  bottom: 7px;
  border-left: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
  transform: rotate(-45deg);
}

.icon-shape.analytics::before {
  left: 11px;
  right: 11px;
  bottom: 11px;
  height: 20px;
  background: linear-gradient(90deg, var(--teal) 0 22%, transparent 22% 39%, var(--aqua) 39% 62%, transparent 62% 76%, var(--amber) 76% 100%);
}

.icon-shape.payments::before {
  inset: 13px 8px;
  border: 3px solid var(--teal);
  border-radius: 6px;
}

.icon-shape.payments::after {
  left: 15px;
  top: 22px;
  width: 16px;
  height: 3px;
  background: var(--teal);
  box-shadow: 0 7px 0 var(--teal);
}

.split-section {
  display: block;
}

.deep .section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.service-row b {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--aqua);
}

.service-row h3 { color: var(--white); }
.service-row p { margin-bottom: 0; color: rgba(255, 255, 255, 0.74); }

.product-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.product-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-mockup {
  width: min(310px, 72vw);
  aspect-ratio: 0.52;
  padding: 18px;
  border: 12px solid #1b3340;
  border-radius: 36px;
  background: #112936;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 72px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-screen {
  height: calc(100% - 20px);
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f9ffff, #e7f7f4);
}

.visit-card {
  padding: 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.visit-card span,
.visit-card strong { display: block; }
.visit-card span { opacity: 0.72; font-size: 0.78rem; }
.visit-card strong { margin-top: 6px; font-size: 1.4rem; }

.mini-map {
  position: relative;
  height: 178px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(216, 232, 235, 0.62) 1px, transparent 1px),
    linear-gradient(rgba(216, 232, 235, 0.62) 1px, transparent 1px),
    #ffffff;
  background-size: 26px 26px;
}

.mini-map i {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
}

.mini-map i:nth-child(1) { top: 30px; left: 34px; }
.mini-map i:nth-child(2) { top: 76px; right: 42px; background: var(--teal); }
.mini-map i:nth-child(3) { bottom: 34px; left: 82px; background: var(--amber); }

.task-list span {
  display: block;
  height: 14px;
  margin: 12px 0;
  border-radius: 999px;
  background: #d6e9ec;
}

.task-list span:nth-child(1) { width: 88%; }
.task-list span:nth-child(2) { width: 64%; }
.task-list span:nth-child(3) { width: 78%; }
.task-list span:nth-child(4) { width: 52%; }

.floating-note {
  position: absolute;
  width: min(250px, 46vw);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(16, 43, 58, 0.14);
}

.floating-note strong,
.floating-note span { display: block; }

.floating-note span {
  margin-top: 6px;
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.48;
}

.note-a { top: 72px; left: 0; }
.note-b { right: 0; bottom: 88px; }

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #284555;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.impact {
  background: linear-gradient(180deg, var(--paper), #ffffff 48%, var(--soft-blue));
}

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

.impact-card {
  min-height: 156px;
  padding: 24px;
}

.impact-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.impact-card span {
  color: #284555;
  font-weight: 700;
  line-height: 1.46;
}

.case-study {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 24px;
  padding: 30px;
  background: var(--navy);
}

.case-study h3,
.case-study p { color: var(--white); }
.case-study p { color: rgba(255, 255, 255, 0.76); }

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.case-metrics span {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.42;
}

.case-metrics b {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 2rem;
}

.achievements-block {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  margin-top: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 43, 58, 0.08);
}

.achievements-copy h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); }

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

.awards-grid span {
  position: relative;
  min-height: 76px;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #284555;
  background: var(--paper);
  font-weight: 700;
  line-height: 1.42;
}

.awards-grid span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--teal));
  box-shadow: 0 8px 18px rgba(72, 167, 130, 0.18);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 29px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--aqua), var(--amber), var(--coral));
}

.timeline-item {
  position: relative;
  min-height: 270px;
  padding: 78px 20px 22px;
  border-left-width: 0;
  background: rgba(255, 255, 255, 0.92);
}

.timeline-item:first-child { border-left-width: 1px; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 19px;
  width: 23px;
  height: 23px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 8px 22px rgba(16, 43, 58, 0.2);
}

.timeline-item:nth-child(2)::before { background: var(--aqua); }
.timeline-item:nth-child(3)::before { background: var(--amber); }
.timeline-item:nth-child(4)::before { background: var(--coral); }

.timeline-item span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--soft-blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.timeline-item p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.governance { background: var(--white); }

.governance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 50px;
}

.governance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.governance-item {
  min-height: 220px;
  padding: 24px;
  background: var(--paper);
}

.contact-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 34, 48, 0.96), rgba(19, 80, 86, 0.9)),
    var(--navy-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 50px;
  align-items: start;
}

.contact-copy h2,
.contact-copy p,
.contact-copy .eyebrow { color: var(--white); }

.contact-copy p { color: rgba(255, 255, 255, 0.76); }

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-points span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label,
.contact-form label span {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfefe;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(72, 167, 130, 0.12);
}

.form-note {
  margin: 0;
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-note.success {
  color: #137256;
  font-weight: 700;
}

.site-footer {
  padding: 26px 0;
  background: #071a25;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.footer-company {
  display: grid;
  gap: 5px;
  color: var(--white);
}

.footer-company strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.footer-company span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.back-top {
  color: var(--aqua);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .split-section,
  .product-layout,
  .governance-grid,
  .contact-layout { grid-template-columns: 1fr; }

  .hero { min-height: auto; }
  .hero-grid { gap: 36px; }
  .hero-visual { max-width: 720px; }

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

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

  .timeline::before { display: none; }
  .timeline-item { border-left-width: 1px; }
  .product-visual { min-height: 520px; }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
    padding: 5px 20px;
  }

  .site-header.is-scrolled { min-height: 62px; }
  .brand-full img { width: 225px; }
  .site-header.is-scrolled .brand-full img { width: 195px; }
  .nav-toggle { display: grid; }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 60px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a { padding: 13px 14px; }
  .section-band { padding: 72px 0; }
  .hero { padding-top: 64px; }
  .dashboard-shell { min-height: auto; padding: 16px; }

  .dash-metrics,
  .dash-body,
  .service-stack,
  .case-study,
  .achievements-block,
  .case-metrics,
  .partner-panel,
  .governance-list,
  .footer-grid { grid-template-columns: 1fr; }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .product-visual {
    min-height: auto;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand span { max-width: 210px; }
  .brand img { width: 38px; height: 38px; }
  .brand-full img { width: 188px; height: auto; max-height: none; }
  .site-header.is-scrolled .brand-full img { width: 165px; }

  .hero-actions,
  .trust-row,
  .contact-points {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .trust-row span,
  .contact-points span { width: 100%; }

  .stats-grid,
  .capability-grid,
  .impact-grid,
  .segment-grid,
  .awards-grid,
  .timeline { grid-template-columns: 1fr; }

  .stat-item,
  .capability-card,
  .segment-card,
  .impact-card,
  .governance-item { min-height: auto; }

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

  .service-row b {
    width: 48px;
    height: 48px;
  }

  .phone-mockup { width: min(270px, 86vw); }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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