/* ============================================================
   NET-COM  ·  Network Communications, Inc.
   Managed Services · Pensacola, FL
   Shared stylesheet
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800&family=Hanken+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---- Tokens ---- */
:root {
  --orange:        #ea580c;
  --orange-bright: #fb923c;
  --orange-deep:   #c2410c;
  --orange-ink:    #9a3412;

  --navy:        #0b2236;
  --navy-soft:   #13314a;
  --navy-line:   #214563;

  --ink:         #122231;
  --slate:       #5b6f80;
  --slate-light: #8395a3;

  --paper:       #ffffff;
  --mist:        #f3f7fb;
  --mist-2:      #e8f0f7;
  --line:        #e0e8f0;

  --signal:      #35c084;

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(11,34,54,.06), 0 2px 6px rgba(11,34,54,.05);
  --shadow-md: 0 6px 18px rgba(11,34,54,.08), 0 14px 40px rgba(11,34,54,.07);
  --shadow-lg: 0 18px 50px rgba(11,34,54,.16);

  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Schibsted Grotesk', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.tight { max-width: 720px; }

/* ---- Type ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.32rem; letter-spacing: -.01em; }
p { color: var(--slate); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--orange);
}
.eyebrow.center::before { display: none; }

.lead { font-size: 1.18rem; color: var(--slate); line-height: 1.7; }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 16px 0 0; }
.section-head p { margin-top: 18px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 600; font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(234,88,12,.34); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(234,88,12,.42); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-deep); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.07); }

.textlink {
  font-family: var(--font-display); font-weight: 600;
  color: var(--orange-deep); display: inline-flex; align-items: center; gap: 7px;
}
.textlink svg { width: 15px; height: 15px; transition: transform .22s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ============================================================
   UTILITY BAR + HEADER
   ============================================================ */
.utilbar {
  background: var(--navy);
  color: #aebecd;
  font-size: .8rem;
  border-bottom: 1px solid var(--navy-line);
}
.utilbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.utilbar a { color: #cdd9e4; }
.utilbar a:hover { color: #fff; }
.utilbar-left { display: flex; gap: 22px; align-items: center; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .02em; }
.status-dot {
  display: inline-flex; align-items: center; gap: 7px; color: #9fb1c1;
}
.status-dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal); box-shadow: 0 0 0 0 rgba(53,192,132,.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(53,192,132,.55); }
  70% { box-shadow: 0 0 0 7px rgba(53,192,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(53,192,132,0); }
}
.utilbar-right { display: flex; gap: 20px; align-items: center; }

header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
header.site.scrolled { box-shadow: var(--shadow-sm); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(150deg, var(--orange) 0%, var(--orange-deep) 100%);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(234,88,12,.32);
  flex-shrink: 0;
}
.logo-mark svg { width: 21px; height: 21px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text b {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.24rem; letter-spacing: -.02em; color: var(--ink);
}
.logo-text span {
  font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .18em; color: var(--slate); text-transform: uppercase; margin-top: 3px;
}


/* Modern wordmark logo */
.logo-svg { height: 40px; width: auto; display: block; color: var(--ink); flex-shrink: 0; }
.foot-brand .logo-svg { color: #fff; }
@media (max-width: 720px) {
  .logo-svg { height: 36px; }
}

/* Nav */
nav.primary { display: flex; align-items: center; gap: 4px; }
nav.primary a {
  font-family: var(--font-display); font-weight: 500;
  font-size: .96rem; color: var(--ink);
  padding: 9px 15px; border-radius: 8px;
  transition: color .2s, background .2s;
}
nav.primary a:hover { color: var(--orange-deep); background: var(--mist); }
nav.primary a.active { color: var(--orange-deep); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .phone {
  font-family: var(--font-mono); font-weight: 500; font-size: .9rem;
  color: var(--ink); display: flex; align-items: center; gap: 7px;
}
.header-cta .phone svg { width: 15px; height: 15px; color: var(--orange); }

.burger { display: none; width: 42px; height: 42px; border-radius: 9px; border: 1.5px solid var(--line); }
.burger span { display: block; width: 17px; height: 1.8px; background: var(--ink); margin: 3.6px auto; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(5.4px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5.4px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 14px 28px 26px;
}
.mobile-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  padding: 13px 4px; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 16px; justify-content: center; }
.mobile-nav.show { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 112px 0 124px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg svg { width: 100%; height: 100%; }
.hero-glow {
  position: absolute; z-index: 0;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,.34) 0%, transparent 68%);
  top: -180px; right: -140px;
  filter: blur(8px);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center;
}
.hero h1 { color: #fff; margin: 22px 0 0; }
.hero h1 .accent { color: var(--orange-bright); }
.hero-sub { color: #b4c4d2; font-size: 1.16rem; margin-top: 22px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero .eyebrow { color: var(--orange-bright); }
.hero .eyebrow::before { background: var(--orange-bright); }

.hero-trust {
  margin-top: 42px; padding-top: 28px;
  border-top: 1px solid var(--navy-line);
  display: flex; gap: 30px; flex-wrap: wrap;
}
.hero-trust .ht {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-trust .ht b {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; color: #fff;
}
.hero-trust .ht span {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: #8499aa;
}

/* Hero panel — NOC monitor card */
.noc-card {
  background: linear-gradient(160deg, var(--navy-soft) 0%, #0e2840 100%);
  border: 1px solid var(--navy-line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.noc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.noc-head .nt {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: #93a8ba;
}
.noc-live {
  font-family: var(--font-mono); font-size: .68rem; color: var(--signal);
  display: flex; align-items: center; gap: 6px;
}
.noc-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal); animation: pulse 2.4s infinite;
}
.noc-rows { display: flex; flex-direction: column; gap: 9px; }
.noc-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 9px; padding: 12px 14px;
}
.noc-row .nl { display: flex; align-items: center; gap: 10px; }
.noc-row .nl span {
  font-family: var(--font-body); font-size: .92rem; color: #d3dee7; font-weight: 500;
}
.noc-row .nd {
  width: 8px; height: 8px; border-radius: 50%; background: var(--signal); flex-shrink: 0;
}
.noc-row .nd.warn { background: #e6a93c; }
.noc-row .nv {
  font-family: var(--font-mono); font-size: .8rem; color: #8da2b4;
}
.noc-foot {
  margin-top: 16px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: baseline;
}
.noc-foot .uptime {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: #fff;
}
.noc-foot .uptime small { font-size: .8rem; color: var(--signal); font-weight: 600; }
.noc-foot .ulabel {
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em;
  text-transform: uppercase; color: #8499aa;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.stats .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 40px 26px; text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat b {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.5rem; color: var(--ink); display: block; line-height: 1;
  letter-spacing: -.03em;
}
.stat b em { font-style: normal; color: var(--orange); }
.stat span {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--slate); margin-top: 10px; display: block;
}

/* ============================================================
   SERVICE CARDS GRID
   ============================================================ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #cfe0ee;
}
.svc-num {
  font-family: var(--font-mono); font-size: .72rem; color: var(--slate-light);
  letter-spacing: .1em;
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--mist-2);
  display: grid; place-items: center; margin: 14px 0 18px;
  transition: background .3s, transform .3s var(--ease);
}
.svc-icon svg { width: 25px; height: 25px; color: var(--orange-deep); }
.svc-card:hover .svc-icon { background: var(--orange); transform: scale(1.06); }
.svc-card:hover .svc-icon svg { color: #fff; }
.svc-card h3 { margin-bottom: 9px; }
.svc-card p { font-size: .98rem; flex-grow: 1; }
.svc-card .textlink { margin-top: 18px; font-size: .92rem; }

/* feature list inside cards / pages */
.ck { display: flex; flex-direction: column; gap: 11px; margin-top: 6px; }
.ck li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .98rem; color: var(--slate);
}
.ck li::before {
  content: ""; flex-shrink: 0; margin-top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--mist-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f6aa3' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.ck li strong { color: var(--ink); }

/* ============================================================
   DIFFERENTIATOR / IN-HOUSE BAND
   ============================================================ */
.band-dark {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band-dark .eyebrow { color: var(--orange-bright); }
.band-dark .eyebrow::before { background: var(--orange-bright); }
.band-dark h2 { color: #fff; }
.band-dark p { color: #aebecd; }
.dot-tex {
  position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.inhouse-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 14px;
}
.inhouse-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: background .3s, transform .3s var(--ease);
}
.inhouse-item:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.inhouse-item .ico {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(234,88,12,.16); display: grid; place-items: center; margin-bottom: 16px;
}
.inhouse-item .ico svg { width: 23px; height: 23px; color: var(--orange-bright); }
.inhouse-item h3 { color: #fff; font-size: 1.12rem; margin-bottom: 7px; }
.inhouse-item p { font-size: .92rem; color: #9fb1c1; }

/* ============================================================
   FEATURE SPLIT
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split.flip .split-visual { order: -1; }
.split-text h2 { margin: 16px 0 18px; }
.split-text .lead { margin-bottom: 22px; }

/* visual panels */
.panel {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.panel-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 38px;
  color: #fff;
  border: 1px solid var(--navy-line);
}
.panel-light {
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 38px;
}

/* server rack diagram */
.rack { display: flex; flex-direction: column; gap: 8px; }
.rack-unit {
  height: 34px; border-radius: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; padding: 0 14px; gap: 9px;
}
.rack-unit .leds { display: flex; gap: 5px; }
.rack-unit .leds i { width: 6px; height: 6px; border-radius: 50%; display: block; }
.rack-unit .leds i.g { background: var(--signal); }
.rack-unit .leds i.b { background: var(--orange-bright); }
.rack-unit .leds i.d { background: rgba(255,255,255,.18); }
.rack-unit .rl {
  font-family: var(--font-mono); font-size: .72rem; color: #93a8ba; letter-spacing: .04em;
}
.rack-unit .rbar {
  margin-left: auto; height: 5px; border-radius: 3px; width: 64px;
  background: rgba(255,255,255,.09); overflow: hidden;
}
.rack-unit .rbar i { display: block; height: 100%; background: var(--orange); border-radius: 3px; }

/* metric tiles inside panels */
.metric-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mt {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.mt b {
  font-family: var(--font-display); font-weight: 800; font-size: 1.85rem;
  color: var(--ink); display: block; line-height: 1; letter-spacing: -.02em;
}
.mt b em { font-style: normal; color: var(--orange); }
.mt span {
  font-family: var(--font-mono); font-size: .67rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--slate); margin-top: 9px; display: block;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.ind {
  display: flex; align-items: center; gap: 15px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px 22px;
  transition: border-color .25s, transform .25s var(--ease);
}
.ind:hover { border-color: var(--orange); transform: translateX(4px); }
.ind .ii {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--mist-2); display: grid; place-items: center;
}
.ind .ii svg { width: 21px; height: 21px; color: var(--orange-deep); }
.ind b { font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); }
.ind small { display: block; color: var(--slate); font-size: .82rem; font-weight: 400; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step {
  padding: 0 26px; position: relative;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 22px; right: -1px;
  width: 1px; height: calc(100% - 22px); background: var(--line);
}
.step .sn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center; margin-bottom: 20px;
}
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote-band { background: var(--mist); }
.quote {
  max-width: 880px; margin: 0 auto; text-align: center;
}
.quote .qmark {
  font-family: var(--font-display); font-size: 4rem; color: var(--orange);
  line-height: .6; opacity: .35;
}
.quote blockquote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.4;
  color: var(--ink); letter-spacing: -.02em; margin: 18px 0 26px;
}
.quote .qby {
  display: flex; align-items: center; justify-content: center; gap: 13px;
}
.quote .qav {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 700;
}
.quote .qmeta { text-align: left; }
.quote .qmeta b { font-family: var(--font-display); color: var(--ink); }
.quote .qmeta span { font-family: var(--font-mono); font-size: .74rem; color: var(--slate); }

/* logo strip */
.logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
  margin-top: 44px;
}
.logos .lg {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--slate-light); letter-spacing: -.01em;
  display: flex; align-items: center; gap: 8px;
}
.logos .lg::before {
  content: ""; width: 16px; height: 16px; border-radius: 4px;
  background: var(--mist-2);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(150deg, var(--orange-deep) 0%, var(--navy) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; max-width: 620px; }
.cta-inner p { color: #c2d2e0; margin-top: 12px; max-width: 540px; }
.cta-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,146,60,.4) 0%, transparent 70%);
  bottom: -260px; left: 30%;
}

/* ============================================================
   PAGE HERO (sub pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  color: #fff; position: relative; overflow: hidden;
  padding: 78px 0 88px;
}
.page-hero .dot-tex { opacity: .45; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 18px 0 0; max-width: 760px; }
.page-hero p { color: #b4c4d2; margin-top: 20px; max-width: 600px; font-size: 1.12rem; }
.page-hero .eyebrow { color: var(--orange-bright); }
.page-hero .eyebrow::before { background: var(--orange-bright); }
.crumbs {
  font-family: var(--font-mono); font-size: .74rem; color: #7e94a6;
  display: flex; gap: 8px; align-items: center; margin-bottom: 4px;
}
.crumbs a:hover { color: var(--orange-bright); }
.crumbs span { color: #4f6678; }

/* ============================================================
   DETAILED SERVICE BLOCKS
   ============================================================ */
.svc-row {
  display: grid; grid-template-columns: 340px 1fr; gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: none; }
.svc-row-head .big-ico {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--navy); display: grid; place-items: center; margin-bottom: 20px;
}
.svc-row-head .big-ico svg { width: 28px; height: 28px; color: var(--orange-bright); }
.svc-row-head h2 { font-size: 1.7rem; }
.svc-row-head .tag {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange-deep);
}
.svc-row-body p { margin-bottom: 18px; }
.svc-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 13px 30px; margin-top: 4px;
}

/* ============================================================
   FORMS  (contact)
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start;
}
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: .88rem; color: var(--ink); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .98rem;
  padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--mist);
  color: var(--ink); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--slate-light); margin-top: 14px; text-align: center; }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.ci-card {
  background: var(--mist); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
}
.ci-card .cih { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.ci-card .cih .cii {
  width: 40px; height: 40px; border-radius: 10px; background: #fff;
  border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0;
}
.ci-card .cih .cii svg { width: 19px; height: 19px; color: var(--orange-deep); }
.ci-card .cih b { font-family: var(--font-display); font-size: 1.05rem; }
.ci-card p { font-size: .95rem; }
.ci-card a { color: var(--orange-deep); font-weight: 500; }
.map-embed {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  height: 240px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   ABOUT — timeline + values
   ============================================================ */
.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 30px;
  padding: 26px 0; border-bottom: 1px dashed var(--line);
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: var(--orange); letter-spacing: -.02em;
}
.tl-body h3 { font-size: 1.16rem; margin-bottom: 6px; }
.tl-body p { font-size: .97rem; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; background: var(--paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value .vi {
  width: 48px; height: 48px; border-radius: 11px; background: var(--mist-2);
  display: grid; place-items: center; margin-bottom: 16px;
}
.value .vi svg { width: 23px; height: 23px; color: var(--orange-deep); }
.value h3 { font-size: 1.12rem; margin-bottom: 7px; }
.value p { font-size: .94rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site {
  background: var(--navy);
  color: #9fb1c1;
  padding: 68px 0 30px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid var(--navy-line);
}
.foot-brand .logo-text b { color: #fff; }
.foot-brand p { color: #8ea1b3; font-size: .94rem; margin: 18px 0; max-width: 280px; }
.foot-status {
  font-family: var(--font-mono); font-size: .74rem;
  display: inline-flex; align-items: center; gap: 8px; color: #9fb1c1;
}
.foot-status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal); animation: pulse 2.4s infinite;
}
.foot-col h4 {
  color: #fff; font-size: .82rem; font-family: var(--font-mono); font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px;
}
.foot-col a {
  display: block; padding: 6px 0; color: #9fb1c1; font-size: .95rem;
  transition: color .2s;
}
.foot-col a:hover { color: var(--orange-bright); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; gap: 16px; flex-wrap: wrap;
}
.foot-bottom p { font-size: .85rem; color: #76899b; }
.foot-bottom .fb-links { display: flex; gap: 22px; }
.foot-bottom .fb-links a { font-size: .85rem; color: #76899b; }
.foot-bottom .fb-links a:hover { color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.flip .split-visual { order: 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .inhouse-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .step:nth-child(2)::after { display: none; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-row { grid-template-columns: 1fr; gap: 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .wrap { padding: 0 20px; }
  nav.primary, .header-cta .phone, .header-cta .btn { display: none; }
  .burger { display: block; }
  .utilbar-left .util-hide { display: none; }
  .hero { padding: 72px 0 84px; }
  .svc-grid, .inhouse-grid, .ind-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .step { padding: 0; }
  .metric-tiles { grid-template-columns: 1fr 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .hero-trust { gap: 22px; }
  .panel-dark, .panel-light { padding: 26px; }
}
