/* ==========================================================================
   Ambit Solutions, LLC — Process Mapping and Survey Room Theme
   Dark ridge-office palette: #14161C, ridge-slate-blue #5B79A8,
   wayfind-amber #D9A441, survey-red #C05B4D, hairline #2C323E.
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  background-color: #14161C;
  color: #C6C9D1;
  line-height: 1.7;
  overflow-x: hidden;
}

.home-page {
  background-color: #14161C;
  color: #C6C9D1;
}

::selection {
  background-color: #5B79A8;
  color: #14161C;
}

a {
  color: #5B79A8;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #D9A441;
}

img {
  max-width: 100%;
}

/* ==========================================================================
   GRID-REF NAV
   ========================================================================== */

.user-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.gridref-nav {
  background-color: #1D2028;
  border-bottom: 1px solid #2C323E;
}

.gridref-top {
  height: 12px;
  background-image:
    linear-gradient(#262B35 1px, transparent 1px),
    linear-gradient(90deg, #262B35 1px, transparent 1px);
  background-size: 24px 24px;
  position: relative;
  overflow: hidden;
}

.gridref-top .gr-label {
  position: absolute;
  font-size: 9px;
  letter-spacing: 1px;
  color: #D9A441;
  font-family: "Courier New", monospace;
}

.gridref-top .gr-label.l1 { top: 1px; left: 2px; }
.gridref-top .gr-label.l2 { top: 1px; left: 40%; }
.gridref-top .gr-label.l3 { top: 1px; right: 3px; }

.gridref-top .benchmark-mark {
  position: absolute;
  bottom: 1px;
  left: 62%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid #C05B4D;
}

.gridref-top .gr-vert {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #3A414F;
}

.gridref-nav .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  flex-wrap: wrap;
}

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

.waypoint-glyph {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
}

.waypoint-glyph::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 6px;
  background-color: #5B79A8;
  border-radius: 50%;
}

.waypoint-glyph::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 3px;
  width: 8px;
  height: 1px;
  background-color: #5B79A8;
}

.brand-name {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #F5F7F2;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links .nav-li {
  color: #C6C9D1;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  position: relative;
}

.nav-links .nav-li:hover {
  color: #5B79A8;
}

.nav-links .nav-li:hover::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  background-color: #5B79A8;
}

.nav-links .nav-li:hover::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 5px;
  width: 6px;
  height: 1px;
  background-color: #D9A441;
}

.nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #D9A441;
  display: inline-block;
  margin: 0 4px;
}

@media (max-width: 700px) {
  .nav-links {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   CONTOUR-BOARD HERO
   ========================================================================== */

.contourboard-hero {
  background-color: #14161C;
  padding: 70px 24px 90px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 55%;
  min-width: 320px;
}

.eyebrow-chip {
  display: inline-block;
  background-color: #5B79A8;
  color: #14161C;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #F5F7F2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title .route-em {
  color: #5B79A8;
}

.hero-sub {
  font-size: 17px;
  color: #C6C9D1;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #5B79A8;
  color: #F5F7F2;
}

.btn-primary:hover {
  background-color: #6c8ab9;
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #D9A441;
  color: #D9A441;
}

.btn-outline:hover {
  background-color: #D9A441;
  color: #14161C;
}

/* Map board */
.map-board {
  flex: 1 1 45%;
  min-width: 340px;
  position: relative;
}

.board-panel {
  background-color: #DCD8C8;
  border: 1px solid #2C323E;
  border-radius: 3px;
  padding: 24px 20px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.board-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid #a9b3c8;
}

.contour-canvas {
  position: relative;
  height: 300px;
  background-color: #C9C6B8;
  overflow: hidden;
  border-radius: 2px;
}

.contour-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #8C9BB0;
}

.contour-ring.r1 { width: 120px; height: 120px; left: 50%; top: 40%; margin-left: -60px; margin-top: -60px; }
.contour-ring.r2 { width: 200px; height: 200px; left: 50%; top: 40%; margin-left: -100px; margin-top: -100px; border-width: 2px; }
.contour-ring.r3 { width: 280px; height: 280px; left: 50%; top: 40%; margin-left: -140px; margin-top: -140px; border-width: 1px; }
.contour-ring.r4 { width: 360px; height: 360px; left: 50%; top: 40%; margin-left: -180px; margin-top: -180px; border-width: 1px; }

.route-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.route-line {
  fill: none;
  stroke: #C8922E;
  stroke-width: 3;
  stroke-linecap: round;
}

.waypin {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #C8922E;
  border-radius: 50%;
  transform: translate(-4px, -4px);
}

.waypin span {
  position: absolute;
  top: 8px;
  left: 6px;
  font-size: 9px;
  color: #503B0F;
  font-family: "Courier New", monospace;
  font-weight: 700;
}

.waypin.wp1 { left: 12%; top: 72%; }
.waypin.wp2 { left: 42%; top: 26%; }
.waypin.wp3 { left: 68%; top: 55%; }
.waypin.wp4 { left: 86%; top: 20%; }

.benchmark-tri {
  position: absolute;
  top: 8%;
  right: 10%;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 15px solid #A04B40;
}

.compass-rose {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 44px;
  height: 44px;
}

.compass-rose .n-point {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 20px solid #F5F7F2;
}

.compass-rose .s-point {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 20px solid #8C9BB0;
}

.compass-rose .e-point {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 20px solid #8C9BB0;
}

.compass-rose .w-point {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 20px solid #F5F7F2;
}

.legend-box {
  margin-top: 14px;
  background-color: #DCD8C8;
  border: 1px solid #8C9BB0;
  padding: 10px 12px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #2a2f3a;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.leg-swath {
  display: inline-block;
  width: 18px;
  height: 3px;
  background-color: #C8922E;
}

.leg-swath.pin { width: 8px; height: 8px; border-radius: 50%; background-color: #C8922E; }
.leg-swath.tri { width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 10px solid #A04B40; }
.leg-swath.water { width: 14px; height: 14px; background-color: #5B79A8; border-radius: 2px; }
.leg-swath.ring { width: 12px; height: 12px; border: 2px solid #8C9BB0; border-radius: 50%; }

.scale-bar {
  margin: 10px 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: #2a2f3a;
  font-family: "Courier New", monospace;
}

.scale-line {
  display: inline-flex;
  width: 90px;
}

.scale-line .seg { height: 4px; width: 25px; background-color: #2a2f3a; }
.scale-line .seg.light { background-color: #2a2f3a; }
.scale-line .seg.sp { width: 5px; }

.draw-tube {
  position: absolute;
  right: -16px;
  bottom: 6px;
  width: 46px;
  height: 130px;
  background-color: #5B79A8;
  border: 2px solid #3a4a63;
  border-radius: 6px;
  transform: rotate(8deg);
}

.draw-tube::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 8px;
  width: 30px;
  height: 40px;
  background-color: #DCD8C8;
  border: 1px solid #8C9BB0;
  transform: rotate(-12deg);
  border-radius: 2px;
}

.draw-tube::after {
  content: "";
  position: absolute;
  top: -22px;
  left: 24px;
  width: 26px;
  height: 34px;
  background-color: #C9C6B8;
  border: 1px solid #a9b3c8;
  transform: rotate(10deg);
  border-radius: 2px;
  background-image:
    linear-gradient(#465A80 1px, transparent 1px),
    linear-gradient(90deg, #465A80 1px, transparent 1px);
  background-size: 6px 6px;
}

.profile-card {
  position: absolute;
  left: -18px;
  bottom: -24px;
  background-color: #1D2028;
  border: 1px solid #2C323E;
  border-radius: 3px;
  padding: 12px 14px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  width: 150px;
}

.profile-card .pc-label {
  font-size: 9px;
  letter-spacing: 1px;
  color: #C6C9D1;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.profile-chart {
  height: 52px;
  width: 100%;
  position: relative;
}

.fold-rule {
  position: absolute;
  bottom: -10px;
  right: 10px;
  width: 110px;
  height: 8px;
  background-color: #1D2028;
  border-left: 3px solid #D9A441;
  border-right: 1px solid #2C323E;
  border-bottom: 1px solid #2C323E;
  border-top: 1px solid #2C323E;
}

.pencil {
  position: absolute;
  bottom: -16px;
  right: 70px;
  width: 70px;
  height: 6px;
  background-color: #C8922E;
  border-radius: 2px;
  transform: rotate(-8deg);
}

@media (max-width: 900px) {
  .map-board { max-width: 420px; margin: 0 auto; }
  .profile-card { left: 0; }
  .draw-tube { right: 0; }
}

/* ==========================================================================
   LEGEND-ROW ROWS
   ========================================================================== */

.legendrow-rows {
  background-color: #14161C;
  padding: 80px 24px 90px;
}

.sec-head {
  max-width: 1180px;
  margin: 0 auto 40px;
}

.sec-head .kicker {
  color: #D9A441;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sec-head h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #5B79A8;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.sec-head p {
  color: #C6C9D1;
  max-width: 700px;
  margin-top: 14px;
}

.rows-stack {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legendrow-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #1D2028;
  border: 1px solid #2C323E;
  padding: 26px 28px;
  transition: border-color 0.2s ease;
}

.legendrow-item:hover {
  border-color: #5B79A8;
}

.sym-swatch {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  background-color: #DCD8C8;
  border: 1px solid #8C9BB0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.swatch-inner {
  position: relative;
  width: 44px;
  height: 44px;
}

.sw-pin { width: 12px; height: 12px; background-color: #C8922E; border-radius: 50%; position: absolute; top: 12px; left: 16px; }
.sw-ring { width: 40px; height: 40px; border: 2px solid #5B79A8; border-radius: 50%; position: absolute; top: 2px; left: 2px; }
.sw-ring2 { width: 26px; height: 26px; border: 1px solid #5B79A8; border-radius: 50%; position: absolute; top: 9px; left: 9px; }
.sw-tri { position: absolute; top: 8px; left: 14px; width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 14px solid #A04B40; }
.sw-route { position: absolute; top: 22px; left: 2px; width: 40px; height: 3px; background-color: #C8922E; transform: rotate(14deg); }
.sw-grid { position: absolute; inset: 2px; background-image: linear-gradient(#8C9BB0 1px, transparent 1px), linear-gradient(90deg, #8C9BB0 1px, transparent 1px); background-size: 14px 14px; }

.lr-center {
  flex: 1 1 auto;
  min-width: 200px;
}

.lr-center h3 {
  font-size: 21px;
  color: #F5F7F2;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.lr-center p {
  color: #C6C9D1;
  font-size: 15px;
}

.gridref-tag {
  flex: 0 0 auto;
  font-family: "Courier New", monospace;
  font-size: 15px;
  color: #D9A441;
  border: 1px solid #5B79A8;
  padding: 5px 12px;
  letter-spacing: 1px;
}

@media (max-width: 820px) {
  .legendrow-item { flex-direction: column; align-items: flex-start; text-align: left; }
  .gridref-tag { align-self: flex-end; }
}

/* ==========================================================================
   SPAN METRIC BAND
   ========================================================================== */

.span-metric-band {
  background-color: #242A35;
  padding: 56px 24px;
}

.metrics-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.metric {
  flex: 1 1 180px;
  text-align: center;
  position: relative;
}

.metric + .metric::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #D9A441;
}

.metric .m-num {
  font-size: 46px;
  font-weight: 800;
  color: #5B79A8;
  letter-spacing: -1px;
  line-height: 1;
}

.metric .m-label {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C6C9D1;
}

@media (max-width: 800px) {
  .metrics-grid { justify-content: center; }
  .metric + .metric::before { display: none; }
}

/* ==========================================================================
   STATEMENT BAND
   ========================================================================== */

.statement-band {
  background-color: #1D2028;
  padding: 64px 24px;
  border-top: 1px solid #2C323E;
  border-bottom: 1px solid #2C323E;
}

.statement-inner {
  max-width: 860px;
  margin: 0 auto;
  border-left: 4px solid #D9A441;
  padding-left: 34px;
}

.statement-inner p {
  font-size: 21px;
  line-height: 1.6;
  color: #F5F7F2;
  font-weight: 500;
}

.statement-inner .attribution {
  margin-top: 20px;
  color: #C6C9D1;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
  background-color: #14161C;
  padding: 80px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 36px;
  color: #5B79A8;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-inner p {
  color: #C6C9D1;
  margin-bottom: 30px;
  font-size: 17px;
}

/* ==========================================================================
   DRAWING-TUBE FOOTER
   ========================================================================== */

.drawingtube-footer {
  background-color: #0F1218;
  padding: 0 0 28px;
}

.fold-line-strip {
  height: 14px;
  width: 100%;
  background-image:
    repeating-linear-gradient(90deg, #DCD8C8 0, #DCD8C8 60px, #1D2028 60px, #1D2028 120px);
  border-bottom: 1px solid #2C323E;
  position: relative;
}

.fold-line-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#2A2E38 1px, transparent 1px),
    linear-gradient(90deg, #2A2E38 1px, transparent 1px);
  background-size: 30px 30px;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px 10px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-brand .waypoint-glyph { width: 16px; height: 16px; }
.footer-brand .waypoint-glyph::before { left: 0; width: 6px; height: 7px; }
.footer-brand .waypoint-glyph::after { left: 3px; width: 9px; }

.footer-brand .brand-name { font-size: 22px; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 26px;
}

.footer-links a {
  color: #C6C9D1;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links .foot-dot { color: #5B79A8; }

.footer-links a:hover { color: #D9A441; }

.tube-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}

.tube-piece {
  width: 26px;
  height: 60px;
  background-color: #5B79A8;
  border: 1px solid #3a4a63;
  border-radius: 4px;
  transform: rotate(5deg);
}

.tube-piece::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 5px;
  width: 16px;
  height: 20px;
  background-color: #DCD8C8;
  border: 1px solid #8C9BB0;
  transform: rotate(-10deg);
}

.tube-piece.second { transform: rotate(-5deg); background-color: #4a6a92; }

.bench-mini {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 13px solid #C05B4D;
}

.legal-line {
  color: #C6C9D1;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.legal-line a { color: #5B79A8; }
.legal-line a:hover { color: #D9A441; }

/* ==========================================================================
   SECONDARY PAGES (services / contact)
   ========================================================================== */

.page-body {
  background-color: #14161C;
  color: #C6C9D1;
}

.page-hero {
  background-color: #14161C;
  padding: 64px 24px 48px;
  border-bottom: 1px solid #2C323E;
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 42px;
  color: #F5F7F2;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.page-hero h1 .route-em { color: #5B79A8; }

.page-hero .crumb { color: #D9A441; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }

.page-hero p { color: #C6C9D1; max-width: 760px; }

.page-section {
  background-color: #14161C;
  padding: 56px 24px;
}

.page-section .sec-pad-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-section h2 {
  font-size: 30px;
  color: #5B79A8;
  font-weight: 800;
  margin-bottom: 18px;
}

.page-section h3 {
  color: #F5F7F2;
  font-size: 21px;
  margin-bottom: 8px;
}

.page-section p {
  color: #C6C9D1;
  margin-bottom: 16px;
}

.page-alternate { background-color: #1D2028; border-top: 1px solid #2C323E; border-bottom: 1px solid #2C323E; }
.page-deep { background-color: #242A35; border-top: 1px solid #2C323E; border-bottom: 1px solid #2C323E; }

.service-block {
  background-color: #1D2028;
  border: 1px solid #2C323E;
  padding: 30px 32px;
  margin-bottom: 20px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-block .s-swath {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  background-color: #DCD8C8;
  border: 1px solid #8C9BB0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 20px;
  color: #14161C;
}

.service-block .s-body { flex: 1; }

.process-list { list-style: none; margin-top: 8px; }
.process-list li { padding: 8px 0 8px 26px; position: relative; color: #C6C9D1; }
.process-list li::before { content: ""; position: absolute; left: 4px; top: 16px; width: 10px; height: 2px; background-color: #D9A441; }
.process-list li strong { color: #F5F7F2; }

/* Contact page */
.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding: 56px 24px;
}

.contact-info { flex: 1 1 38%; min-width: 300px; }
.contact-form-wrap { flex: 1 1 58%; min-width: 320px; }

.contact-info h2 { color: #5B79A8; font-size: 30px; margin-bottom: 14px; font-weight: 800; }
.contact-info p { color: #C6C9D1; margin-bottom: 18px; }

.info-block {
  border-left: 3px solid #5B79A8;
  padding: 6px 0 6px 16px;
  margin-bottom: 18px;
}

.info-block h3 { color: #F5F7F2; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.info-block p, .info-block a { color: #C6C9D1; }

.contact-form {
  background-color: #1D2028;
  border: 1px solid #2C323E;
  padding: 30px 32px;
}

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

.form-group label { display: block; color: #F5F7F2; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: #14161C;
  border: 1px solid #2C323E;
  color: #F5F7F2;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 2px;
  font-family: inherit;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #5B79A8;
}

.form-note { color: #C6C9D1; font-size: 14px; margin-top: 6px; }
.form-success { color: #D9A441; margin-top: 14px; font-weight: 600; }

/* FAQ on contact page */
.faq-block-outer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 24px 64px;
}

.faq-block-outer h2 { color: #5B79A8; font-size: 30px; margin-bottom: 24px; font-weight: 800; }

.faq-item {
  background-color: #1D2028;
  border: 1px solid #2C323E;
  margin-bottom: 12px;
}

.faq-question {
  padding: 18px 24px;
  color: #F5F7F2;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question .faq-mark { color: #5B79A8; font-size: 20px; }

.faq-answer { padding: 0 24px 18px; color: #C6C9D1; display: none; }
.faq-answer.open { display: block; }

/* Home page faq pairs / process step list for cta reuse */
.step-brace { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 10px; }

/* ==========================================================================
   Fade-up reveal (safe fallback via noscript)
   ========================================================================== */

.fade-up {
  opacity: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .hero-title { font-size: 38px; }
  .sec-head h2 { font-size: 30px; }
  .metric .m-num { font-size: 36px; }
  .footer-links { gap: 4px 8px; }
  .service-block { flex-direction: column; }
}
