/* ============================================================
   CPG Beyond Inc. - System Style
   Computer Systems Design and Integration
   Light blueprint theme: warm cream + deep sapphire
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1A1A1A;
  background: #F7F4EE;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #1F4E79;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

/* ---------- Layout helpers ---------- */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-section {
  padding: 76px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1F4E79;
  padding: 6px 12px;
  border: 1px solid #1F4E79;
  border-radius: 2px;
  background: #F7F4EE;
  margin-bottom: 16px;
}

.section-title {
  font-size: 34px;
  line-height: 1.18;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}

.section-lead {
  margin-top: 14px;
  font-size: 17px;
  color: #1A1A1A;
}

/* ---------- Scroll reveal (safe without JS) ---------- */

.fade-up {
  opacity: 1;
  transform: none;
}

html.js-enabled .fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js-enabled .fade-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.btn-primary {
  background: #1F4E79;
  color: #FCF9F2;
  border-color: #1F4E79;
}

.btn-primary:hover {
  background: #16395C;
  border-color: #16395C;
}

.btn-outline {
  background: transparent;
  color: #1F4E79;
  border-color: #1F4E79;
}

.btn-outline:hover {
  background: #1F4E79;
  color: #FCF9F2;
}

.btn-ivory {
  background: transparent;
  color: #FCF9F2;
  border-color: #FCF9F2;
}

.btn-ivory:hover {
  background: #FCF9F2;
  color: #1F4E79;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---------- Chip glyph (microchip square) ---------- */

.chip {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: #1F4E79;
  border-radius: 2px;
}

.chip::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #F7F4EE;
  border-radius: 1px;
}

/* ============================================================
   DIODE NAV
   ============================================================ */

.diode-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #F7F4EE;
  border-bottom: 2px solid #1F4E79;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}

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

.nav-brand:hover {
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-word {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #1A1A1A;
}

.brand-caption {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1F4E79;
  margin-top: 3px;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 2px;
}

.nav-links::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #2F5D8F;
  z-index: 0;
}

.nav-item {
  position: relative;
  z-index: 1;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1A1A1A;
  padding: 6px 0;
  background: #F7F4EE;
}

.nav-link:hover {
  color: #1F4E79;
  text-decoration: none;
}

.node-dot {
  width: 9px;
  height: 9px;
  border: 2px solid #1F4E79;
  border-radius: 50%;
  background: #F7F4EE;
  display: inline-block;
  flex: 0 0 auto;
}

.nav-link:hover .node-dot,
.nav-link.is-active .node-dot {
  background: #1F4E79;
}

.nav-link.is-active {
  color: #1F4E79;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
}

.toggle-bar {
  display: block;
  width: 24px;
  height: 3px;
  background: #1F4E79;
}

/* ============================================================
   BLUEPRINT HERO
   ============================================================ */

.blueprint-hero {
  background: #F7F4EE;
  padding: 72px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow-chip {
  display: inline-block;
  background: #1F4E79;
  color: #FCF9F2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.015em;
  max-width: 640px;
}

.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #1A1A1A;
  max-width: 600px;
}

.hero-cta {
  margin-top: 30px;
}

/* Blueprint panel */

.blueprint-panel {
  position: relative;
  background: #EAF2FA;
  border: 1px solid #1F4E79;
  min-height: 380px;
  margin: 22px 18px 0 26px;
  overflow: hidden;
}

.panel-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#C6D8EC 1px, transparent 1px),
    linear-gradient(90deg, #C6D8EC 1px, transparent 1px);
  background-size: 28px 28px;
}

.panel-ticks-top {
  position: absolute;
  top: -14px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.panel-ticks-left {
  position: absolute;
  left: -24px;
  top: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
}

.tick-label {
  position: relative;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.5px;
  font-family: "Courier New", Courier, monospace;
  color: #2F5D8F;
}

.tick-label::before {
  content: "";
  position: absolute;
  background: #2F5D8F;
}

.panel-ticks-top .tick-label::before {
  left: 50%;
  top: -6px;
  width: 1px;
  height: 8px;
  transform: translateX(-50%);
}

.panel-ticks-left .tick-label::before {
  top: 50%;
  left: -6px;
  height: 1px;
  width: 8px;
  transform: translateY(-50%);
}

.proc-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: 2px solid #1F4E79;
  background: #EAF2FA;
  z-index: 2;
}

.proc-chip::before {
  content: "";
  position: absolute;
  inset: -8px;
  background:
    repeating-linear-gradient(90deg, #1F4E79 0 4px, transparent 4px 10px),
    repeating-linear-gradient(0deg, #1F4E79 0 4px, transparent 4px 10px);
}

.proc-chip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  background: #1F4E79;
  border-radius: 2px;
}

.trace {
  position: absolute;
  background: #1F4E79;
  z-index: 1;
}

.trace-a {
  left: 55%;
  top: 50%;
  width: 110px;
  height: 1px;
  transform: translateY(-50%);
}

.trace-b {
  left: 50%;
  top: 64%;
  width: 1px;
  height: 96px;
}

.trace-c {
  left: 56%;
  top: 30%;
  width: 86px;
  height: 1px;
}

.trace-d {
  left: 20%;
  top: 62%;
  width: 92px;
  height: 1px;
}

.trace-e {
  left: 20%;
  top: 22%;
  width: 92px;
  height: 1px;
}

.node {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #1F4E79;
  border-radius: 50%;
  background: #F7F4EE;
  z-index: 2;
}

.node-a {
  left: 81%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.node-b {
  left: 58%;
  top: 87%;
  transform: translate(-50%, -50%);
}

.node-c {
  left: 78%;
  top: 30%;
  transform: translate(-50%, -50%);
}

.node-d {
  left: 20%;
  top: 74%;
  transform: translate(-50%, -50%);
}

.node-e {
  left: 20%;
  top: 22%;
  transform: translate(-50%, -50%);
}

.panel-caption {
  position: absolute;
  left: 16px;
  bottom: 12px;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #1F4E79;
  text-transform: uppercase;
  z-index: 2;
}

.panel-ref {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: 9px;
  letter-spacing: 0.12em;
  font-family: "Courier New", Courier, monospace;
  color: #2F5D8F;
  z-index: 2;
}

/* ============================================================
   CAPABILITY MATRIX
   ============================================================ */

.home-page .capability-matrix {
  background: #F7F4EE;
  border-top: 1px solid #2F5D8F;
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cap-panel {
  background: #EAF2FA;
  border: 1px solid #2F5D8F;
  padding: 30px 32px 34px;
  position: relative;
}

.cap-num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: #1F4E79;
  letter-spacing: -0.02em;
}

.cap-trace {
  position: relative;
  height: 1px;
  background: #2F5D8F;
  margin: 20px 0 18px;
}

.cap-trace::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border: 2px solid #1F4E79;
  border-radius: 50%;
  background: #F7F4EE;
}

.cap-title {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.cap-text {
  font-size: 15px;
  color: #1A1A1A;
}

/* ============================================================
   INTEGRATION DUO
   ============================================================ */

.home-page .integration-duo {
  background: #F7F4EE;
}

.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
}

.duo-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: #2F5D8F;
}

.duo-col {
  padding: 10px 34px;
}

.duo-col.left {
  padding-left: 0;
}

.duo-col.right {
  padding-right: 0;
}

.duo-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.duo-node {
  width: 16px;
  height: 16px;
  border: 3px solid #1F4E79;
  border-radius: 50%;
  background: #F7F4EE;
  flex: 0 0 auto;
}

.duo-col-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

.duo-col-text {
  font-size: 15px;
  color: #1A1A1A;
}

.duo-col-text p + p {
  margin-top: 12px;
}

/* ============================================================
   ROLLOUT TRACK
   ============================================================ */

.home-page .rollout-track {
  background: #F7F4EE;
}

.rollout-panel {
  background: #EAF2FA;
  border: 1px solid #2F5D8F;
  padding: 46px 40px 40px;
}

.track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.track::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 24px;
  height: 1px;
  background: #2F5D8F;
}

.station {
  position: relative;
  padding-top: 58px;
}

.station-dot {
  position: absolute;
  top: 12px;
  left: 0;
  width: 26px;
  height: 26px;
  border: 2px solid #1F4E79;
  border-radius: 50%;
  background: #F7F4EE;
  font-size: 11px;
  font-weight: 800;
  color: #1F4E79;
  display: flex;
  align-items: center;
  justify-content: center;
}

.station::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 26px;
  right: 0;
  height: 1px;
  background: #2F5D8F;
}

.station:last-child::before {
  display: none;
}

.station-title {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.station-text {
  font-size: 14px;
  color: #1A1A1A;
}

/* ============================================================
   ASSURANCE BAND
   ============================================================ */

.home-page .assurance-band {
  background: #1F4E79;
}

.assurance-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 76px 24px;
}

.assurance-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D6E4F0;
  border: 1px solid #D6E4F0;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.assurance-title {
  font-size: 36px;
  line-height: 1.16;
  font-weight: 800;
  color: #FCF9F2;
}

.assurance-text {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.75;
  color: #FCF9F2;
}

.assure-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin: 38px 0 34px;
  flex-wrap: wrap;
}

.assure-stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #FCF9F2;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D6E4F0;
}

/* ============================================================
   SOCKET FOOTER
   ============================================================ */

.socket-footer {
  background: #F7F4EE;
  border-top: 2px solid #1F4E79;
  position: relative;
}

.footer-row1 {
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

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

.footer-brand:hover {
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1A1A1A;
}

.footer-links a:hover {
  color: #1F4E79;
  text-decoration: none;
}

.footer-contact {
  font-size: 13px;
  font-weight: 600;
  color: #1F4E79;
  text-align: right;
}

.footer-row2 {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px 22px;
  border-top: 1px solid #2F5D8F;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.legal-line {
  font-size: 12px;
  color: #1A1A1A;
  text-align: center;
}

.legal-line a {
  color: #1F4E79;
  font-weight: 600;
}

/* ============================================================
   PAGE HEAD (secondary pages)
   ============================================================ */

.page-head {
  background: #F7F4EE;
  padding: 60px 0 44px;
  border-bottom: 1px solid #2F5D8F;
}

.page-eyebrow {
  display: inline-block;
  background: #1F4E79;
  color: #FCF9F2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.page-title {
  font-size: 42px;
  line-height: 1.14;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.015em;
  max-width: 760px;
}

.page-lead {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #1A1A1A;
  max-width: 720px;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-list {
  padding: 56px 0 20px;
  background: #F7F4EE;
}

.service-block {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-top: 1px solid #2F5D8F;
  align-items: start;
}

.service-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #1F4E79;
  letter-spacing: -0.02em;
}

.service-body {
  padding-right: 40px;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.service-text {
  font-size: 15px;
  color: #1A1A1A;
  max-width: 720px;
}

.service-text p + p {
  margin-top: 12px;
}

.process-band {
  background: #F7F4EE;
  border-top: 1px solid #2F5D8F;
  padding: 76px 0;
}

.process-panel {
  background: #EAF2FA;
  border: 1px solid #2F5D8F;
  padding: 44px 40px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 38px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 14px;
  height: 1px;
  background: #2F5D8F;
}

.process-step {
  position: relative;
  padding-top: 40px;
}

.process-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 2px solid #1F4E79;
  border-radius: 50%;
  background: #F7F4EE;
  color: #1F4E79;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-title {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.process-text {
  font-size: 14px;
  color: #1A1A1A;
}

.cta-band {
  background: #1F4E79;
  padding: 72px 24px;
  text-align: center;
}

.cta-band .container {
  max-width: 720px;
}

.cta-band-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #FCF9F2;
}

.cta-band-text {
  margin-top: 14px;
  font-size: 16px;
  color: #FCF9F2;
}

.cta-band .cta-row {
  justify-content: center;
  margin-top: 26px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-main {
  background: #F7F4EE;
  padding: 56px 0 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.info-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1F4E79;
  margin: 26px 0 12px;
}

.info-title:first-child {
  margin-top: 0;
}

.info-line {
  font-size: 15px;
  color: #1A1A1A;
  line-height: 1.7;
}

.info-line a {
  color: #1F4E79;
  font-weight: 600;
}

.info-block {
  background: #EAF2FA;
  border: 1px solid #2F5D8F;
  padding: 20px 22px;
}

.info-block + .info-block {
  margin-top: 16px;
}

.contact-form-wrap {
  background: #EAF2FA;
  border: 1px solid #2F5D8F;
  padding: 30px 30px 34px;
}

.contact-form-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.form-note {
  font-size: 14px;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1F4E79;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #1A1A1A;
  background: #FFFFFF;
  border: 1px solid #2F5D8F;
  border-radius: 3px;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1F4E79;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1F4E79;
  min-height: 20px;
}

.form-status.is-ok {
  color: #1F4E79;
}

/* FAQ */

.faq-section {
  padding: 0 0 72px;
  background: #F7F4EE;
}

.faq-section .section-title {
  margin-bottom: 24px;
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  border: 1px solid #2F5D8F;
  background: #EAF2FA;
  margin-bottom: 14px;
}

.faq-item.is-open {
  border-color: #1F4E79;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  color: #1F4E79;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-item.is-open .faq-q::after {
  content: "–";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  font-size: 14px;
  color: #1A1A1A;
  padding: 0 20px 18px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blueprint-panel {
    min-height: 320px;
  }

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

  .duo-grid::before {
    display: none;
  }

  .duo-col {
    padding: 0;
  }

  .duo-col.right {
    border-top: 1px solid #2F5D8F;
    padding-top: 26px;
    margin-top: 8px;
  }

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

  .footer-row1 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #F7F4EE;
    border-bottom: 2px solid #1F4E79;
    padding: 0 24px;
    display: none;
  }

  .nav-links::before {
    display: none;
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 14px 0;
    border-top: 1px solid #2F5D8F;
    background: #F7F4EE;
  }
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 34px;
  }

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

  .section-title {
    font-size: 28px;
  }

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

  .track {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .track::before {
    left: 14px;
    top: 0;
    bottom: 0;
    right: auto;
    width: 1px;
    height: auto;
  }

  .station {
    padding: 0 0 0 48px;
  }

  .station-dot {
    top: 0;
    left: 0;
  }

  .station::before {
    display: none;
  }

  .rollout-panel,
  .process-panel {
    padding: 30px 22px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    padding: 0 0 0 44px;
  }

  .process-dot {
    left: 0;
    top: 0;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-body {
    padding-right: 0;
  }

  .assure-stats {
    gap: 30px;
  }

  .footer-row2 {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
