/* ==================================================================
   Brody Sargent Fiber Solutions LLC — main stylesheet
   Theme: Fiber Optic Workshop (LIGHT splice-trailer)
   Palette: SPLICE-TRAILER #F8F7F2 · SPINDLE-BLUE #3D5470
            FUSION-FLASH #E4572E · BUFFER-YELLOW #E3C93E
            GEL-CLEAR #DCE8EA · SPINDLE-INK #2A2A24
            TRAILER-GREY #8A8E85 · HAIRLINE #E2E2D8 · BENCH-WHITE #FFFFFF
   ================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #2A2A24;
  background-color: #F8F7F2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: #3D5470;
  text-decoration: none;
}

a:hover {
  color: #E4572E;
}

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

/* ==================================================================
   NAVIGATION — BUFFER-STRAND NAV
   ================================================================== */
.bufferstrand-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 2px 0 #E2E2D8;
}

.bufferstrand-nav .fanout-strip {
  height: 12px;
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E2E2D8;
}

.fanout-strip .jacket-arc {
  position: absolute;
  left: 10px;
  top: 2px;
  width: 20px;
  height: 8px;
  border: 3px solid #3D5470;
  border-left: 3px solid #3D5470;
  border-radius: 90px 90px 90px 90px;
  transform: rotate(0deg);
}

.fanout-strip .strand {
  position: absolute;
  top: 5px;
  width: 2px;
  height: 42px;
  transform-origin: left top;
  border-radius: 2px;
}

.fanout-strip .strand.s1 { left: 40px;  transform: rotate(-22deg); background-color: #E3C93E; }
.fanout-strip .strand.s2 { left: 66px;  transform: rotate(-13deg); background-color: #DCE8EA; }
.fanout-strip .strand.s3 { left: 92px;  transform: rotate(-5deg);  background-color: #E3C93E; }
.fanout-strip .strand.s4 { left: 118px; transform: rotate(4deg);   background-color: #DCE8EA; }
.fanout-strip .strand.s5 { left: 144px; transform: rotate(13deg);  background-color: #E3C93E; }
.fanout-strip .strand.s6 { left: 170px; transform: rotate(22deg);  background-color: #DCE8EA; }

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2A2A24;
  white-space: nowrap;
}

.brand .spliter-glyph {
  width: 26px;
  height: 20px;
  flex: 0 0 auto;
}

.brand .spliter-glyph .glyph-body {
  width: 22px;
  height: 13px;
  background-color: #3D5470;
  border-radius: 3px;
  position: relative;
}

.brand .spliter-glyph .glyph-top {
  position: absolute;
  left: 14px;
  top: -6px;
  width: 4px;
  height: 6px;
  border-radius: 1px;
  border-top: 1px solid #3D5470;
  border-right: 1px solid #3D5470;
}

.brand .spliter-glyph .glyph-arc {
  position: absolute;
  left: 7px;
  top: 4px;
  width: 8px;
  height: 5px;
  background-color: #E4572E;
  border-radius: 4px;
}

.brand .brand-sargent {
  color: #3D5470;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links .dot {
  width: 5px;
  height: 5px;
  background-color: #E3C93E;
  border-radius: 50%;
}

.nav-links a {
  color: #2A2A24;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 4px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #3D5470;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 2px;
  background-color: #3D5470;
  width: 0;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: calc(100% - 8px);
}

.nav-links a:hover::before {
  content: '⚡';
  position: absolute;
  left: -6px;
  top: -6px;
  font-size: 9px;
  color: #E4572E;
}

.nav-links a.active {
  color: #3D5470;
}

.nav-links a.active::after {
  width: calc(100% - 8px);
}

.nav-toggle {
  display: none;
  background: #FFFFFF;
  border: 1px solid #E2E2D8;
  color: #2A2A24;
  font-size: 16px;
  padding: 9px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Compact nav on scroll */
.bufferstrand-nav.is-scrolled .fanout-strip {
  height: 7px;
}

/* ==================================================================
   HERO — SPLICE-BENCH
   ================================================================== */
.splicebench-hero {
  background-color: #F8F7F2;
  padding: 86px 0 96px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}

.hero-text .eyebrow-chip {
  display: inline-block;
  background-color: #3D5470;
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 26px;
}

.hero-text h1 {
  color: #2A2A24;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.hero-text h1 .fusion {
  color: #3D5470;
}

.hero-text .hero-sub {
  color: #8A8E85;
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-text .hero-sub strong {
  color: #2A2A24;
  font-weight: 700;
}

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

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #3D5470;
  color: #FFFFFF;
  border: 2px solid #3D5470;
}

.btn-primary:hover {
  background-color: #2A3A4E;
  color: #FFFFFF;
  border-color: #2A3A4E;
}

.btn-secondary {
  background-color: transparent;
  color: #3D5470;
  border: 2px solid #3D5470;
}

.btn-secondary:hover {
  background-color: #DCE8EA;
  color: #3D5470;
}

/* --- CSS SPLICE BENCH WORKSTATION --- */
.splice-bench {
  position: relative;
  padding: 20px 24px 30px 24px;
}

.bench-stage {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #E2E2D8;
  border-radius: 6px;
  min-height: 470px;
  padding: 24px 20px 34px 20px;
  box-shadow: 0 18px 40px rgba(61, 84, 112, 0.10);
}

/* worktop with hairline border and ruler strip */
.bench-top {
  position: relative;
}

.bench-ruler {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background:
    linear-gradient(90deg, #3D5470 1px, transparent 1px) 0 0 / 14px 100%,
    #FFF;
  border-top: 1px solid #E2E2D8;
}

/* Fusion splicer machine */
.splicer-box {
  position: relative;
  width: 172px;
  height: 84px;
  background-color: #3D5470;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(42, 58, 78, 0.30);
}

.splicer-box .splicer-lid {
  position: absolute;
  top: -12px;
  left: 10px;
  width: 152px;
  height: 14px;
  background-color: #29415A;
  border-radius: 4px 4px 0 0;
  transform-origin: left center;
  transform: rotate(2deg);
}

.splicer-box .splicer-lid::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 4px;
  width: 6px;
  height: 5px;
  background-color: #E3C93E;
  border-radius: 2px;
}

.splicer-screen {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 46px;
  height: 24px;
  background-color: #243040;
  border-radius: 3px;
  color: #E3C93E;
  font-size: 9px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.splicer-arc {
  position: absolute;
  left: 66px;
  top: 26px;
  width: 26px;
  height: 12px;
}

.splicer-arc .arc-flash {
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 5px;
  background-color: #E4572E;
  border-radius: 6px;
  box-shadow: 0 0 10px #E4572E;
}

.splicer-arc .arc-flash-2 {
  position: absolute;
  right: 0;
  top: 5px;
  width: 10px;
  height: 3px;
  background-color: #E4572E;
  border-radius: 4px;
}

.splicer-tips {
  position: absolute;
  left: 60px;
  top: 38px;
  width: 40px;
  height: 3px;
}

.splicer-tips .tip {
  position: absolute;
  top: 0;
  width: 3px;
  height: 14px;
  background-color: #DCE8EA;
}

.splicer-tips .tip1 { left: -2px; transform: rotate(14deg); }
.splicer-tips .tip2 { right: -2px; transform: rotate(-14deg); }

/* Splice tray */
.splice-tray {
  position: absolute;
  right: 14px;
  bottom: 40px;
  width: 118px;
  height: 96px;
  background-color: #DCE8EA;
  border: 2px solid #3D5470;
  border-radius: 6px;
  padding: 8px;
}

.splice-tray .tray-coil {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 5px solid #E3C93E;
  border-radius: 50%;
  transform: rotate(0deg);
}

.splice-tray .coil-1 { left: 10px; top: 8px; }
.splice-tray .coil-2 { left: 10px; top: 34px; border-color: #DCE8EA; border: 5px solid #3D5470; }
.splice-tray .coil-3 { left: 10px; top: 60px; border-color: #E3C93E; }

.splice-tray .tray-tick {
  position: absolute;
  left: 44px;
  top: 18px;
  width: 3px;
  height: 10px;
  background-color: #E4572E;
  border-radius: 2px;
}

.splice-tray .heat-sleeve {
  position: absolute;
  right: 10px;
  bottom: 14px;
  width: 16px;
  height: 4px;
  background-color: #8A8E85;
  border-radius: 2px;
}

.splice-tray .heat-sleeve::after {
  content: '';
  position: absolute;
  left: 5px;
  top: -1px;
  width: 6px;
  height: 6px;
  background-color: #FFFFFF;
  border-radius: 1px;
}

/* Cable drum on stand */
.cable-drum {
  position: absolute;
  top: 6px;
  right: 4px;
  width: 120px;
  height: 108px;
}

.drum-stand-leg {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 16px;
  background-color: #8A8E85;
}

.drum-stand-leg .l1 { left: 18px; }
.drum-stand-leg .l2 { right: 18px; }

.drum-hub {
  position: absolute;
  bottom: 14px;
  left: 18px;
  width: 64px;
  height: 64px;
  background-color: #DCE8EA;
  border: 2px solid #3D5470;
  border-radius: 4px;
}

.drum-wind {
  position: absolute;
  bottom: 20px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 8px solid #3D5470;
  box-shadow: inset 0 0 0 4px #F8F7F2, inset 0 0 0 5px #DCE8EA;
}

.drum-center {
  position: absolute;
  bottom: 38px;
  left: 42px;
  width: 16px;
  height: 16px;
  background-color: #8A8E85;
  border-radius: 50%;
}

.drum-tail {
  position: absolute;
  bottom: 46px;
  left: 64px;
  width: 60px;
  height: 2px;
  background-color: #3D5470;
  transform: rotate(8deg);
}

/* Fan-out block on bench edge */
.fanout-block {
  position: absolute;
  left: 40px;
  bottom: 34px;
  width: 130px;
  height: 14px;
}

.fanout-block .fo-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 10px;
  background-color: #243040;
  border-radius: 2px;
}

.fanout-block .fo-strand {
  position: absolute;
  bottom: 10px;
  width: 2px;
  height: 22px;
  transform-origin: bottom center;
}

.fanout-block .f1 { left: 8px;  background-color: #E3C93E; transform: rotate(-8deg); }
.fanout-block .f2 { left: 20px; background-color: #DCE8EA; transform: rotate(-8deg); }
.fanout-block .f3 { left: 32px; background-color: #3D5470; transform: rotate(-3deg); }
.fanout-block .f4 { left: 44px; background-color: #E3C93E; transform: rotate(-3deg); }
.fanout-block .f5 { left: 56px; background-color: #DCE8EA; transform: rotate(3deg); }
.fanout-block .f6 { left: 68px; background-color: #3D5470; transform: rotate(3deg); }

/* Cleaver */
.cleaver {
  position: absolute;
  left: 260px;
  bottom: 38px;
  width: 52px;
  height: 34px;
  background-color: #F8F7F2;
  border: 2px solid #8A8E85;
  border-radius: 4px;
}

.cleaver .blade-wheel {
  position: absolute;
  right: 6px;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #E4572E;
  box-shadow: inset 0 0 0 3px #FFFFFF;
}

.cleaver .blade-notch {
  position: absolute;
  left: 4px;
  top: 12px;
  width: 16px;
  height: 4px;
  background-color: #3D5470;
  border-radius: 2px;
}

/* Patch panel on wall strip above */
.patch-panel {
  position: absolute;
  top: -16px;
  left: 10px;
  width: 250px;
  height: 22px;
  background-color: #243040;
  border-radius: 3px;
  padding: 2px 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.patch-panel .adapter {
  width: 10px;
  height: 16px;
  background-color: #DCE8EA;
  border-radius: 2px;
}

.patch-panel .pigtail-plugged {
  position: relative;
  width: 22px;
  height: 8px;
  background-color: #E3C93E;
  border-radius: 2px;
  margin-top: 8px;
}

.patch-panel .pigtail-plugged.p2 {
  background-color: #3D5470;
}

.patch-panel .pigtail-end {
  position: absolute;
  right: -10px;
  top: 1px;
  width: 10px;
  height: 2px;
  background-color: #8A8E85;
}

/* Spare fiber coil + cable pulling sock on hook */
.bench-hook {
  position: absolute;
  left: 160px;
  top: 12px;
  width: 34px;
  height: 30px;
}

.bench-hook .hook-pin {
  position: absolute;
  top: 0;
  left: 14px;
  width: 3px;
  height: 12px;
  background-color: #8A8E85;
}

.bench-hook .spare-coil {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 22px;
  height: 22px;
  border: 4px solid #DCE8EA;
  border-radius: 50%;
}

.bench-hook .sock {
  position: absolute;
  top: 20px;
  left: 12px;
  width: 10px;
  height: 14px;
  background-color: #E4572E;
  border-radius: 2px 2px 6px 6px;
}

/* Fiber meter */
.fiber-meter {
  position: absolute;
  left: 200px;
  bottom: 40px;
  width: 46px;
  height: 40px;
  background-color: #2A3A4E;
  border-radius: 4px;
  padding: 4px;
}

.fiber-meter .meter-readout {
  width: 100%;
  height: 16px;
  background-color: #243040;
  color: #E4572E;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
  border-radius: 2px;
}

.fiber-meter .meter-mode {
  margin-top: 3px;
  width: 14px;
  height: 8px;
  background-color: #DCE8EA;
  border-radius: 2px;
}

/* Floating phase tags */
.bench-tag {
  position: absolute;
  background-color: #FFFFFF;
  border: 1px solid #E2E2D8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3D5470;
  padding: 4px 8px;
  border-radius: 3px;
}

.bench-tag.t1 { top: -6px; right: -10px; }
.bench-tag.t2 { bottom: 4px; left: -12px; color: #8A8E85; }

/* ==================================================================
   LOOP-TRAY ROWS SECTION
   ================================================================== */
.looptray-section {
  background-color: #F8F7F2;
  padding: 90px 0;
}

.looptray-section .section-head {
  margin-bottom: 38px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: #E4572E;
  margin-bottom: 12px;
}

.looptray-section .section-title {
  color: #3D5470;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.looptray-section .section-intro {
  color: #8A8E85;
  font-size: 18px;
  max-width: 720px;
}

.looptray-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loop-row {
  display: grid;
  grid-template-columns: 120px 1fr 130px;
  gap: 26px;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #E2E2D8;
  border-radius: 6px;
  padding: 24px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.loop-row:hover {
  box-shadow: 0 12px 28px rgba(61, 84, 112, 0.12);
  transform: translateY(-2px);
}

.fiber-loop {
  position: relative;
  width: 96px;
  height: 78px;
  background-color: #DCE8EA;
  border: 1px solid #E2E2D8;
  border-radius: 6px;
}

.fiber-loop .coil-ring {
  position: absolute;
  border-radius: 50%;
}

.fiber-loop .ring-a {
  width: 40px;
  height: 40px;
  border: 6px solid #E3C93E;
  top: 6px;
  left: 28px;
}

.fiber-loop .ring-b {
  width: 30px;
  height: 30px;
  border: 5px solid #3D5470;
  top: 24px;
  left: 10px;
}

.fiber-loop .fusion-tick {
  position: absolute;
  width: 4px;
  height: 12px;
  background-color: #E4572E;
  border-radius: 2px;
}

.loop-row .loop-title {
  color: #2A2A24;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.loop-row .loop-desc {
  color: #8A8E85;
  font-size: 15.5px;
}

.dbloss-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background-color: #DCE8EA;
  color: #3D5470;
  font-family: "SFMono-Regular", Consolas, Menlo, monospace;
  font-size: 20px;
  font-weight: 800;
  border-radius: 4px;
  white-space: nowrap;
}

/* rotation of fusion tick per row */
.loop-row.r1 .fusion-tick { top: 10px; left: 70px; transform: rotate(20deg); }
.loop-row.r2 .fusion-tick { top: 40px; left: 30px; transform: rotate(-15deg); }
.loop-row.r3 .fusion-tick { top: 16px; left: 26px; transform: rotate(45deg); }
.loop-row.r4 .fusion-tick { top: 50px; left: 62px; transform: rotate(-30deg); }
.loop-row.r5 .fusion-tick { top: 22px; left: 52px; transform: rotate(10deg); }

.loop-row.r2 .ring-a { left: 8px; }
.loop-row.r3 .coil-ring { border-color: #DCE8EA; }
.loop-row.r3 .ring-a { border-color: #3D5470; }
.loop-row.r3 .ring-b { border-color: #E3C93E; }

/* ==================================================================
   FIBER METRIC BAND
   ================================================================== */
.fiber-metric-band {
  background-color: #3D5470;
  padding: 72px 0;
}

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

.metric-item {
  text-align: center;
  padding: 0 20px;
}

.metric-item .metric-num {
  color: #FFFFFF;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.metric-item .metric-label {
  color: #DCE8EA;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.metric-separator {
  width: 1px;
  background-color: #E3C93E;
  margin: 6px 0;
}

/* ==================================================================
   STATEMENT BAND
   ================================================================== */
.statement-band {
  background-color: #FFFFFF;
  padding: 84px 0;
  border-top: 1px solid #E2E2D8;
  border-bottom: 1px solid #E2E2D8;
}

.statement-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.statement-inner .manifesto {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.45;
  color: #2A2A24;
  margin-bottom: 26px;
  border-left: 4px solid #E4572E;
  padding-left: 28px;
  text-align: left;
}

.statement-inner .statement-attrib {
  color: #8A8E85;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ==================================================================
   CTA BAND
   ================================================================== */
.cta-band {
  background-color: #F8F7F2;
  padding: 84px 0;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  color: #3D5470;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.cta-inner .cta-sub {
  color: #8A8E85;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 30px auto;
}

/* ==================================================================
   FOOTER — PATCH-PANEL FOOTER
   ================================================================== */
.patchpanel-footer {
  background-color: #243040;
  color: #E8ECEE;
}

.adapter-port-strip {
  height: 16px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    #DCE8EA 0 14px,
    #243040 14px 17px,
    #DCE8EA 17px 31px,
    #3D5470 31px 34px,
    #DCE8EA 34px 48px,
    #243040 48px 51px,
    #DCE8EA 51px 65px
  );
  position: relative;
  overflow: hidden;
}

.adapter-port-strip .strip-pigtail {
  position: absolute;
  top: 1px;
  width: 26px;
  height: 14px;
  border-radius: 2px;
}

.adapter-port-strip .strip-pigtail.p1 { left: 46px; background-color: #E3C93E; }
.adapter-port-strip .strip-pigtail.p2 { right: 80px; background-color: #E3C93E; }

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-brand .spliter-glyph {
  width: 30px;
  height: 22px;
}

.footer-brand .spliter-glyph .glyph-body {
  width: 26px;
  height: 15px;
  background-color: #DCE8EA;
  border-radius: 3px;
  position: relative;
}

.footer-brand .spliter-glyph .glyph-arc {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 9px;
  height: 6px;
  background-color: #E4572E;
  border-radius: 4px;
}

.footer-brand .brand-fiber {
  color: #E3C93E;
}

.footer-company {
  color: #C7CDD2;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
}

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

.footer-links a {
  color: #E8ECEE;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #E3C93E;
  text-decoration: underline;
}

.footer-links .dot-sep {
  color: #3D5470;
}

.drum-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px 0 26px 0;
}

.drum-divider .cleaver-dot {
  width: 6px;
  height: 6px;
  background-color: #E4572E;
  border-radius: 50%;
}

.drum-divider .mini-drum {
  width: 40px;
  height: 34px;
  position: relative;
  background-color: #DCE8EA;
  border: 2px solid #3D5470;
  border-radius: 4px;
}

.drum-divider .mini-drum .mini-wind {
  position: absolute;
  left: 6px;
  top: 5px;
  width: 24px;
  height: 20px;
  border: 4px solid #3D5470;
  border-radius: 50%;
}

.drum-divider .mini-drum .mini-tail {
  position: absolute;
  right: -8px;
  top: 12px;
  width: 10px;
  height: 2px;
  background-color: #3D5470;
}

.footer-contact {
  color: #C7CDD2;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 22px;
}

.footer-contact a {
  color: #E3C93E;
  font-weight: 600;
}

.footer-contact a:hover {
  color: #FFFFFF;
}

.footer-legal-line {
  border-top: 1px solid #3D5470;
  padding-top: 20px;
  color: #AEB5BA;
  font-size: 13px;
}

.footer-legal-line a {
  color: #AEB5BA;
}

.footer-legal-line a:hover {
  color: #E3C93E;
}

/* ==================================================================
   SCROLL REVEAL (safe without JS)
   ================================================================== */
.fade-up {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-fade .fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.js-fade .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================================
   SERVICES PAGE
   ================================================================== */
.page-hero {
  background-color: #F8F7F2;
  padding: 70px 0 36px 0;
}

.page-hero .page-eyebrow {
  color: #E4572E;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
}

.page-hero h1 {
  color: #2A2A24;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.page-hero h1 span {
  color: #3D5470;
}

.page-hero .page-lead {
  color: #8A8E85;
  font-size: 19px;
  max-width: 760px;
}

.svc-section {
  background-color: #FFFFFF;
  padding: 74px 0;
}

.svc-section.alt {
  background-color: #F8F7F2;
}

.svc-head {
  max-width: 780px;
  margin-bottom: 40px;
}

.svc-head h2 {
  color: #3D5470;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
}

.svc-head .svc-intro {
  color: #8A8E85;
  font-size: 18px;
}

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

.service-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E2D8;
  border-top: 4px solid #3D5470;
  border-radius: 6px;
  padding: 30px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 14px 30px rgba(61, 84, 112, 0.14);
  transform: translateY(-3px);
}

.service-card .svc-index {
  font-family: "SFMono-Regular", Consolas, Menlo, monospace;
  color: #E4572E;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-card h3 {
  color: #2A2A24;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  color: #8A8E85;
  font-size: 15px;
}

/* Process overview */
.process-band {
  background-color: #243040;
  padding: 74px 0;
}

.process-band .svc-head h2 {
  color: #FFFFFF;
}

.process-band .svc-head .svc-intro {
  color: #C7CDD2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-step {
  background-color: #2F4054;
  border: 1px solid #3D5470;
  border-radius: 6px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
}

.process-step .step-num {
  font-family: "SFMono-Regular", Consolas, Menlo, monospace;
  font-size: 26px;
  font-weight: 900;
  color: #E3C93E;
  margin-bottom: 10px;
}

.process-step .step-title {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step .step-desc {
  color: #C7CDD2;
  font-size: 13.5px;
}

/* Svc CTA */
.svc-cta-band {
  background-color: #F8F7F2;
  padding: 64px 0;
}

.svc-cta-inner {
  text-align: center;
}

.svc-cta-inner h2 {
  color: #3D5470;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}

.svc-cta-inner p {
  color: #8A8E85;
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 26px auto;
}

/* Full-width detail rows (the 6 service sections) */
.svc-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 20px 0;
}

.svc-detail-row .detail-text h3 {
  color: #3D5470;
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 14px;
}

.svc-detail-row .detail-text p {
  color: #3E3E36;
  margin-bottom: 14px;
  font-size: 16px;
}

.svc-detail-row .detail-text ul {
  margin: 10px 0 0 22px;
  color: #3E3E36;
}

.svc-detail-row .detail-text li {
  margin-bottom: 7px;
}

.svc-detail-row .detail-metric {
  background-color: #FFFFFF;
  border: 1px solid #E2E2D8;
  border-radius: 6px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(61, 84, 112, 0.10);
}

.detail-metric .dm-kicker {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E4572E;
  font-weight: 800;
  margin-bottom: 10px;
}

.detail-metric .dm-value {
  font-family: "SFMono-Regular", Consolas, Menlo, monospace;
  font-size: 40px;
  font-weight: 900;
  color: #3D5470;
  margin-bottom: 8px;
}

.detail-metric .dm-note {
  color: #8A8E85;
  font-size: 14px;
}

/* ==================================================================
   CONTACT PAGE
   ================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-panel {
  margin-bottom: 10px;
}

.contact-panel h2 {
  color: #3D5470;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-panel p {
  color: #3E3E36;
  margin-bottom: 14px;
}

.contact-block {
  background-color: #FFFFFF;
  border: 1px solid #E2E2D8;
  border-radius: 6px;
  padding: 24px 26px;
  margin-bottom: 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-block .cb-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #3D5470;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 18px;
}

.contact-block .cb-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E4572E;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-block .cb-value {
  color: #2A2A24;
  font-size: 18px;
  font-weight: 700;
}

.contact-block .cb-value a {
  color: #3D5470;
}

.contact-form-wrap {
  background-color: #FFFFFF;
  border: 1px solid #E2E2D8;
  border-radius: 8px;
  padding: 34px 30px;
  box-shadow: 0 18px 40px rgba(61, 84, 112, 0.10);
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2A2A24;
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #E2E2D8;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  color: #2A2A24;
  background-color: #F8F7F2;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #3D5470;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(61, 84, 112, 0.15);
}

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

.form-feedback {
  display: none;
  margin: 0 0 18px 0;
  padding: 13px 16px;
  border-radius: 4px;
  font-size: 14.5px;
  font-weight: 600;
  background-color: #DCE8EA;
  color: #3D5470;
  border-left: 4px solid #3D5470;
}

.form-feedback.error {
  background-color: #E4572E;
  color: #FFFFFF;
  border-left-color: #2A3A4E;
}

/* FAQ */
.faq-wrap {
  margin-top: 30px;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E2E2D8;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

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

.faq-question:hover {
  color: #3D5470;
}

.faq-question .faq-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #3D5470;
  color: #FFFFFF;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: #E4572E;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px 24px;
  color: #8A8E85;
  font-size: 15.5px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .splice-bench {
    max-width: 560px;
  }

  .bench-stage {
    min-height: 430px;
  }

  .contact-grid,
  .svc-detail-row {
    grid-template-columns: 1fr;
  }

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

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 8px;
  }

  .metric-separator {
    display: none;
  }

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

  .loop-row {
    grid-template-columns: 100px 1fr;
  }

  .dbloss-chip {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-top: 3px solid #3D5470;
    border-bottom: 1px solid #E2E2D8;
    padding: 18px 24px;
    gap: 4px;
  }

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

  .nav-links li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 6px 0;
  }

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

  .nav-links a {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .nav-links a::after {
    display: none;
  }

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

  .brand {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .hero-text h1 {
    font-size: 36px;
  }

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

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

  .metric-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .loop-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dbloss-chip {
    grid-column: 1;
  }

  .fiber-loop {
    margin: 0 auto;
  }

  .banner-toggle {
    flex-direction: column;
    gap: 10px;
  }
}

/* Ensure dead simple, no fixed bottom elements on any page */
@media print {
  .bufferstrand-nav,
  .patchpanel-footer {
    display: none;
  }
}
