@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* =============================================
   DESIGN TOKENS
   Vibe: Warm Editorial / Construction Premium
   Layout: Alternating light-dark editorial
   ============================================= */
:root {
  /* Backgrounds */
  --bg:       #f8f7f4;   /* warm off-white — main sections */
  --bg-alt:   #eeebe4;   /* slightly darker warm */
  --dark:     #0f0d0b;   /* warm near-black — hero, CTA, footer */
  --dark-2:   #1a1714;   /* surface on dark */
  --dark-3:   #242018;   /* card on dark */

  /* Accent — deep construction orange, NOT AI purple */
  --accent:      #c2410c;
  --accent-lt:   #ea580c;
  --accent-pale: #fff4ee;

  /* Text — warm, not cold gray */
  --text:       #1a1614;
  --text-muted: #7a6d63;
  --text-dim:   #b5aca4;
  --text-inv:   #f8f7f4;
  --text-inv-muted: #9b9089;
  --light:      #f8f7f4;   /* alias used by service-page hero headings */

  /* Borders */
  --border:     rgba(26, 22, 20, 0.1);
  --border-dk:  rgba(248, 247, 244, 0.1);
  --border-dk2: rgba(248, 247, 244, 0.18);

  /* Radii */
  --r-sm:  8px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-pill: 999px;

  /* Motion — real physics, no linear garbage */
  --spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --cinematic: cubic-bezier(0.32, 0.72, 0, 1);
  --smooth:    cubic-bezier(0, 0, 0.2, 1);

  --nav-h: 72px;
  --max-w: 1240px;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =============================================
   SKIP LINK
   ============================================= */
.skip-link {
  position: absolute; top: -60px; left: 20px;
  background: var(--accent); color: #fff;
  padding: 10px 18px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600; z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus { top: 20px; }

/* =============================================
   LAYOUT
   ============================================= */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  border: 1px solid rgba(194, 65, 12, 0.15);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.eyebrow-inv {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}
.display-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.97;
}
.lead {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 540px;
  text-wrap: pretty;
}
.lead-inv { color: var(--text-inv-muted); }

/* =============================================
   BUTTONS — pill shape, nested icon
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--spring), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn .btn-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.1);
  border-radius: var(--r-pill);
  transition: transform 0.3s var(--spring);
  flex-shrink: 0;
}
.btn:hover .btn-icon { transform: translateX(2px) translateY(-1px); }

/* solid orange */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 14px 14px 22px;
}
.btn-primary:hover { background: var(--accent-lt); }
.btn-primary .btn-icon { background: rgba(0,0,0,0.15); }

/* white */
.btn-white {
  background: #fff;
  color: var(--text);
  padding: 14px 14px 14px 22px;
}
.btn-white:hover { background: var(--bg); }
.btn-white .btn-icon { background: rgba(0,0,0,0.06); }

/* ghost dark */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 13px 22px;
}
.btn-outline:hover { border-color: var(--text); }

/* ghost light (on dark bg) */
.btn-outline-inv {
  background: transparent;
  color: var(--text-inv);
  border: 1.5px solid var(--border-dk2);
  padding: 13px 22px;
}
.btn-outline-inv:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.btn-sm { padding: 10px 10px 10px 18px; font-size: 0.8rem; }
.btn-sm .btn-icon { width: 24px; height: 24px; }
.btn-sm.btn-outline, .btn-sm.btn-outline-inv { padding: 9px 18px; }

/* =============================================
   FLOATING PILL NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000; /* float above all page content + overlays so the mega menu is always interactive */
  width: max-content;
  max-width: calc(100vw - 32px);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 13, 11, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 20px;
  transition: background 0.4s var(--smooth), border-color 0.4s, box-shadow 0.4s;
}

/* After hero — becomes a lighter pill on light-bg pages */
.nav.light .nav-pill {
  background: rgba(248, 247, 244, 0.92);
  border-color: rgba(26,22,20,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-logo {
  flex-shrink: 0;
  margin-right: 12px;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
.nav.light .logo-img { filter: brightness(0); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
}
.nav.light .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav.light .nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.05); }
.nav-links a.active { color: #fff; }
.nav.light .nav-links a.active { color: var(--accent); }

.nav-cta { margin-left: 8px; flex-shrink: 0; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 6px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--cinematic), opacity 0.3s, width 0.3s;
}
.nav-toggle span:last-child { width: 65%; margin-left: auto; }
/* Light header (white pill) — hamburger + close icon must be dark to stay visible */
.nav.light .nav-toggle { background: rgba(0,0,0,0.05); }
.nav.light .nav-toggle span { background: var(--text); }
.nav-toggle.open span:first-child  { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:last-child   { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }

/* Full-screen mobile menu */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 13, 11, 0.97);
  backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 92px 28px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--smooth);
}
.nav-mobile-overlay.open { opacity: 1; pointer-events: auto; }

.nav-mobile-links { display: flex; flex-direction: column; gap: 2px; }
/* Top-level links only (Home / About / Contact) get the big editorial type.
   Descendant submenu links keep their compact styles from nav-mega.css. */
.nav-mobile-links > a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transform: translateY(16px);
  opacity: 0;
  transition: color 0.2s, transform 0.4s var(--smooth), opacity 0.4s;
}
.nav-mobile-overlay.open .nav-mobile-links > a {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile-links > a:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile-links > a:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile-links > a:hover,
.nav-mobile-links > a:active { color: #fff; }

.nav-mobile-footer {
  margin-top: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s 0.3s, transform 0.4s 0.3s var(--smooth);
}
.nav-mobile-overlay.open .nav-mobile-footer { opacity: 1; transform: translateY(0); }

/* =============================================
   HERO — Full viewport triptych
   ============================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--dark);
}

.hero-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  /* Smooth column expansion on hover */
  transition: grid-template-columns 0.65s var(--cinematic);
}

/* Expand whichever panel is hovered; shrink the others */
.hero-panels:has(.hero-panel:nth-child(1):hover) { grid-template-columns: 2.6fr 0.7fr 0.7fr; }
.hero-panels:has(.hero-panel:nth-child(2):hover) { grid-template-columns: 0.7fr 2.6fr 0.7fr; }
.hero-panels:has(.hero-panel:nth-child(3):hover) { grid-template-columns: 0.7fr 0.7fr 2.6fr; }

.hero-panel {
  position: relative;
  overflow: hidden;
}
.hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.45);
  transition: filter 0.6s var(--smooth), transform 0.9s var(--cinematic);
}

/* Hovered panel — photo opens up, bright and clear */
.hero-panel:hover img {
  filter: brightness(0.65) saturate(1);
  transform: scale(1.03);
}

/* Non-hovered panels — dim further when a sibling is hovered */
.hero-panels:has(.hero-panel:hover) .hero-panel:not(:hover) img {
  filter: brightness(0.14) saturate(0.2);
}

/* Per-panel gradient darkens toward bottom */
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 35%,
    rgba(15,13,11,0.5) 68%,
    rgba(15,13,11,0.96) 100%
  );
  z-index: 1;
}

/* Orange top-sweep on hover */
.hero-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--cinematic);
  z-index: 3;
}
.hero-panel:hover::after { transform: scaleX(1); }

/* Division info pinned to panel bottom — always stays visible */
.hero-panel-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 24px 28px;
  z-index: 2;
  transition: opacity 0.3s var(--smooth);
}
/* Dim labels on non-hovered panels */
.hero-panels:has(.hero-panel:hover) .hero-panel:not(:hover) .hero-panel-info {
  opacity: 0.45;
}

.hero-panel-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.hero-panel-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* Services list — hidden always on desktop (was expanding on hover, removed) */
.hero-panel-services { display: none; }

/* "Explore →" pill — fades in centered on hover, photo is clear */
.hero-panel-link {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.28s 0.18s var(--smooth), transform 0.28s 0.18s var(--smooth), background 0.2s, gap 0.2s;
}
.hero-panel:hover .hero-panel-link {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hero-panel-link:hover {
  background: rgba(255,255,255,0.22);
  gap: 11px;
}

/* Central content overlay */
.hero-center {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 240px;
  pointer-events: none;
  /* Slides to hovered panel — JS drives transform, CSS animates it */
  transition: transform 0.6s var(--cinematic);
}
/* Text never intercepts mouse — hover always falls through to panels */
.hero-center > * { pointer-events: none; }
/* Buttons still need to be clickable */
.hero-btns .btn { pointer-events: auto; }

/* Radial vignette to make headline legible */
.hero-center::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 50% at 50% 45%, rgba(15,13,11,0.72) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 0.6s var(--smooth) 0.25s forwards;
}
.hero-title {
  color: #fff;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.7s var(--smooth) 0.4s forwards;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(248,247,244,0.55);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.7s var(--smooth) 0.55s forwards;
  text-wrap: pretty;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.7s var(--smooth) 0.7s forwards;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 0.8s var(--smooth) 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* =============================================
   STATS BAR — dark, clean large numbers
   ============================================= */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-number em { color: var(--accent); font-style: normal; }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-inv-muted);
  margin-top: 6px;
  font-weight: 500;
  display: block;
}

/* =============================================
   SECTION — shared spacing
   ============================================= */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* =============================================
   DIVISIONS — editorial split rows
   ============================================= */
.divisions { background: var(--bg); }

.division-row {
  display: grid;
  grid-template-columns: 46% 54%;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.division-row:first-child { border-top: 1px solid var(--border); }

/* Even rows: flip columns + subtle bg tint */
.division-row:nth-child(even) {
  grid-template-columns: 54% 46%;
  background: var(--bg-alt);
}
.division-row:nth-child(even) .division-img { order: 2; }
.division-row:nth-child(even) .division-body { order: 1; }

/* Large faint number — decorative backdrop */
.division-row::after {
  content: attr(data-num);
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 22rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(194,65,12,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.division-row:nth-child(even)::after { right: auto; left: -16px; }

/* Image column — fills its grid cell */
.division-img {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.division-img-shell {
  position: absolute;
  inset: 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
}
.division-img-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  z-index: 2;
  pointer-events: none;
}
.division-img-shell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--cinematic);
}
.division-row:hover .division-img-shell img { transform: scale(1.04); }

/* Body column */
.division-body {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.division-body h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 14px;
  color: var(--text);
}
.division-body > p {
  font-size: 0.91rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 420px;
}

/* Services — flowing pill tags */
.division-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.division-service-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.division-row:nth-child(even) .division-service-item { background: var(--bg); }
.division-service-item:hover {
  border-color: var(--accent);
  color: var(--text);
  background: #fff;
}
.division-service-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.75;
}

/* =============================================
   ABOUT TEASER — asymmetric, light
   ============================================= */
.about-teaser {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.about-left h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}
.about-left p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  transition: border-color 0.2s, color 0.2s;
}
.badge:hover { border-color: var(--accent); color: var(--accent); }

/* Double-bezel photo on right */
.about-photo-shell {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 10px;
  position: relative;
}
.about-photo-inner {
  border-radius: calc(var(--r-xl) - 8px);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  aspect-ratio: 4/3;
}
.about-photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--cinematic);
}
.about-photo-shell:hover .about-photo-inner img { transform: scale(1.04); }

.about-chip {
  position: absolute;
  bottom: -1px;
  right: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r) var(--r) 0 0;
  padding: 14px 24px;
  font-family: 'Outfit', sans-serif;
}
.about-chip-num {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}
.about-chip-text {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.8;
}

/* =============================================
   PROJECTS — dark, full-bleed photo grid
   ============================================= */
.projects { background: var(--dark); padding: 120px 0; }
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.projects-header h2 { color: var(--text-inv); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.proj {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}
.proj:nth-child(1) { grid-column: span 5; }
.proj:nth-child(2) { grid-column: span 7; }
.proj:nth-child(3) { grid-column: span 4; }
.proj:nth-child(4) { grid-column: span 4; }
.proj:nth-child(5) { grid-column: span 4; }

.proj img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--cinematic), filter 0.4s;
  filter: brightness(0.7) saturate(0.8);
}
.proj:hover img { transform: scale(1.06); filter: brightness(0.85) saturate(1); }

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,11,0.88) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.proj:hover .proj-overlay { opacity: 1; }
.proj-cat {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.proj-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

/* =============================================
   TESTIMONIALS — light, editorial cards
   ============================================= */
.testimonials { background: var(--bg); padding: 120px 0; }
.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.testimonials-header h2 { margin-bottom: 0; }
.testimonials-header p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.35s var(--spring), box-shadow 0.35s;
}
.tcard:hover {
  border-color: rgba(194,65,12,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.tcard-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  line-height: 0.9;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 14px;
  user-select: none;
}
.tcard p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
  text-wrap: pretty;
  flex: 1;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.tcard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.tcard-role {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: block;
}
.tcard-stars {
  margin-left: auto;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* =============================================
   PARTNERS — clean logo strip
   ============================================= */
.partners {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.partners-track-wrap {
  position: relative;
  overflow: hidden;
}
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.partners-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }

.partners-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.partner-logo {
  height: 44px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  opacity: 0.35;
  transition: opacity 0.25s;
  flex-shrink: 0;
}
.partner-logo:hover { opacity: 0.75; }
.partner-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
}

/* =============================================
   CTA — orange accent section
   ============================================= */
.cta-section {
  background: var(--accent);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.0) 0px,
    rgba(255,255,255,0.0) 20px,
    rgba(255,255,255,0.025) 20px,
    rgba(255,255,255,0.025) 21px
  );
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.cta-left h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: #fff;
  margin-bottom: 14px;
}
.cta-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 480px;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}
.cta-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.cta-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.cta-check svg { width: 14px; height: 14px; color: rgba(255,255,255,0.9); flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 18px; }
.footer-brand .logo-img { height: 28px; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--text-inv-muted);
  max-width: 280px;
}
.footer-contact-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-inv-muted);
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--accent); }
.footer-contact-list svg { width: 15px; height: 15px; color: var(--accent); opacity: 0.6; flex-shrink: 0; }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-inv-muted);
  opacity: 0.5;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-inv-muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text-inv); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-inv-muted); opacity: 0.45; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: var(--text-inv-muted); opacity: 0.45; transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 0.8; }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  background: var(--dark);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 24px,
    rgba(255,255,255,0.018) 24px,
    rgba(255,255,255,0.018) 25px
  );
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .eyebrow { margin-bottom: 14px; }
.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--text-inv);
  margin-bottom: 16px;
}
.page-hero-content p {
  font-size: 1rem;
  color: var(--text-inv-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* Center hero text on desktop only — mobile keeps its left-aligned layout */
@media (min-width: 769px) {
  .page-hero { align-items: center; }
  .page-hero-content { margin-left: auto; margin-right: auto; text-align: center; }
  .page-hero-content p,
  .page-hero-sub { margin-left: auto; margin-right: auto; }
  .page-hero-content .page-hero-btns { justify-content: center; }
  .page-hero-content .svc-breadcrumb { justify-content: center; }
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.mission-section { padding: 120px 0; background: var(--bg); }
.mission-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.mission-text h2 { margin-bottom: 20px; }
.mission-text p {
  font-size: 0.95rem; line-height: 1.72;
  color: var(--text-muted); margin-bottom: 14px;
}
.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.value-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color 0.25s, transform 0.3s var(--spring);
}
.value-card:hover { border-color: rgba(194,65,12,0.3); transform: translateY(-3px); }
.value-card h4 { font-size: 0.9rem; margin-bottom: 5px; }
.value-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

.mission-photo-shell {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 10px;
}
.mission-photo-inner {
  border-radius: calc(var(--r-xl) - 8px);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.mission-photo-inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--cinematic);
}
.mission-photo-shell:hover .mission-photo-inner img { transform: scale(1.04); }

/* Desktop: image column matches the full height of the text column */
@media (min-width: 1025px) {
  .mission-grid { align-items: stretch; }
  .mission-grid > .reveal-right { display: flex; }
  .mission-photo-shell { flex: 1; display: flex; }
  .mission-photo-inner { aspect-ratio: auto; height: 100%; width: 100%; }
}

/* Why us */
.why-section { background: var(--dark); padding: 120px 0; }
.why-header { text-align: center; max-width: 520px; margin: 0 auto 64px; }
.why-header h2 { color: var(--text-inv); margin-bottom: 14px; }
.why-header p { color: var(--text-inv-muted); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  background: var(--dark-2);
  transition: border-color 0.3s, transform 0.35s var(--spring);
}
.why-card:hover { border-color: rgba(194,65,12,0.35); transform: translateY(-4px); }
.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(194,65,12,0.15);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 { font-size: 1rem; color: var(--text-inv); margin-bottom: 10px; }
.why-card p { font-size: 0.85rem; color: var(--text-inv-muted); line-height: 1.65; }

/* Certs */
.certs-section { padding: 80px 0; background: var(--bg); }
.certs-header { text-align: center; margin-bottom: 40px; }
.certs-header h2 { margin-bottom: 8px; }
.certs-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cert-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 7px;
  transition: border-color 0.2s, color 0.2s;
}
.cert-pill:hover { border-color: var(--accent); color: var(--accent); }
.cert-pill svg { width: 13px; height: 13px; color: var(--accent); }

/* =============================================
   PAGE HERO — inner pages
   ============================================= */
.page-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* =============================================
   CARRIERS BAR — telecom page trust strip
   ============================================= */
.carriers-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.carriers-bar .wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; }
.carriers-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inv-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.carriers-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.carrier-logo {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  opacity: 0.35;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.carrier-logo:hover { opacity: 0.7; }
.carrier-logo:last-child { border-right: none; }
.carrier-logo img { height: 26px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }

/* =============================================
   SERVICE CARDS GRID — full capability grid
   ============================================= */
.service-grid-section { background: var(--dark); padding: 100px 0; }
.service-grid-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.service-grid-header h2 { color: var(--text-inv); margin-top: 10px; }
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.3s var(--spring);
}
.service-card:hover { border-color: rgba(194,65,12,0.4); transform: translateY(-4px); }
.card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: gap .2s var(--smooth);
}
.card-learn-more:hover { gap: 8px; }
.service-card-icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 18px;
}
.service-card-icon svg { width: 100%; height: 100%; }
.service-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-inv);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-inv-muted);
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-detail { padding: 80px 0; background: var(--bg); }
.service-division {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-division:last-child { border-bottom: none; }
.service-division:nth-child(even) .service-div-visual { order: -1; }
.service-div-text h2 { margin-bottom: 16px; }
.service-div-text > p { font-size: 0.95rem; line-height: 1.72; color: var(--text-muted); margin-bottom: 28px; }
.service-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}
.service-pill {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px 16px;
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, color 0.2s, padding-left 0.25s var(--spring);
}
.service-pill:hover { border-color: var(--accent); color: var(--text); padding-left: 20px; }
.service-pill::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-div-visual { position: relative; }
.service-div-shell {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 10px;
}
.service-div-inner {
  border-radius: calc(var(--r-xl) - 8px);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.service-div-inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--cinematic);
}
.service-div-shell:hover .service-div-inner img { transform: scale(1.04); }
.service-div-badge {
  position: absolute;
  bottom: -1px; left: 28px;
  background: var(--dark);
  border-radius: var(--r) var(--r) 0 0;
  padding: 14px 22px;
}
.service-div-badge p { font-size: 0.7rem; color: var(--text-inv-muted); margin-bottom: 2px; }
.service-div-badge span {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

/* Process */
.process-section { padding: 80px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.process-header { text-align: center; max-width: 480px; margin: 0 auto 56px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-step {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 0.2s;
}
.process-step:hover { background: #fff; }
.process-step-num {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 120px 0; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-detail-text h4 { font-size: 0.84rem; font-weight: 600; margin-bottom: 2px; }
.contact-detail-text p { font-size: 0.84rem; color: var(--text-muted); }
.area-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
}
.area-box p:first-child {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px;
}
.area-box p:last-child { font-size: 0.875rem; color: var(--text-muted); }

.form-card {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 48px 40px;
}
.form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-inv);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-inv-muted);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-inv);
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194,65,12,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239b9089' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-group textarea { height: 110px; }
.form-note { font-size: 0.75rem; color: var(--text-inv-muted); opacity: 0.5; text-align: center; margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success h4 { font-family: 'Outfit', sans-serif; color: var(--text-inv); font-size: 1.1rem; margin-bottom: 8px; }
.form-success p { font-size: 0.875rem; color: var(--text-inv-muted); }
.form-success svg { margin: 0 auto 16px; display: block; color: var(--accent); }

/* =============================================
   LIQUID GLASS BAR — mobile hero contact strip
   ============================================= */
.hero-glass-bar {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .hero-glass-bar {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 32px;
    left: 20px;
    right: 20px;
    margin: 0 auto;
    width: fit-content;
    z-index: 8;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(28px) saturate(1.9) brightness(1.05);
    -webkit-backdrop-filter: blur(28px) saturate(1.9) brightness(1.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 8px 4px;
    gap: 0;
    max-width: calc(100vw - 40px);
    box-shadow:
      0 8px 32px rgba(0,0,0,0.3),
      inset 0 1px 0 rgba(255,255,255,0.28),
      inset 0 -1px 0 rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    animation: revealUp 0.6s var(--smooth) 1.2s forwards;
  }

  .glass-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.01em;
    border-radius: 999px;
    transition: background 0.2s, transform 0.15s var(--spring);
    -webkit-tap-highlight-color: transparent;
  }
  .glass-btn:active {
    background: rgba(255,255,255,0.15);
    transform: scale(0.96);
  }
  .glass-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.8;
  }

  .glass-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
  }

  /* Slide indicator dots */
  .hero-slide-dots {
    position: absolute;
    bottom: 106px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 8;
  }
  .hero-slide-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s, transform 0.3s var(--spring);
  }
  .hero-slide-dot.active {
    background: #fff;
    transform: scale(1.4);
  }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--smooth), transform 0.65s var(--smooth);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s var(--smooth), transform 0.65s var(--smooth); }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.65s var(--smooth), transform 0.65s var(--smooth); }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.26s; }
.d4 { transition-delay: 0.34s; }

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   NOISE OVERLAY — fixed, not scrolling
   ============================================= */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  /* Division rows: stack vertically on tablet */
  .division-row         { grid-template-columns: 1fr !important; min-height: auto; }
  .division-row:nth-child(even) .division-img { order: 0; }
  .division-row:nth-child(even) .division-body { order: 0; }
  .division-img         { height: 340px; }
  .division-img-shell   { inset: 16px; }
  .division-body        { padding: 40px 36px; }
  .division-services    { flex-wrap: wrap; }

  .about-inner          { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid         { grid-template-columns: 1fr; gap: 40px; }
  .service-division     { grid-template-columns: 1fr; gap: 40px; }
  .service-division:nth-child(even) .service-div-visual { order: 0; }
  .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .cta-inner            { grid-template-columns: 1fr; gap: 32px; }
  .cta-right            { align-items: flex-start; }
  .testimonials-header  { grid-template-columns: 1fr; gap: 12px; }
  .why-grid             { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-pills        { grid-template-columns: 1fr; }

  /* Reduce heavy section padding on tablet */
  .section, .about-teaser, .projects, .testimonials,
  .mission-section, .why-section, .cta-section,
  .services-detail, .contact-section { padding: 88px 0; }
  .why-section, .projects { padding: 88px 0; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  .wrap { padding: 0 18px; }

  /* ---- Nav ---- */
  .nav { top: 14px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-pill { padding: 8px 8px 8px 14px; gap: 0; }

  /* ---- Hero — stacked vertical triptych on mobile ----
     The headline sits on top, then the THREE division panels are stacked
     vertically (each labelled) so it's clear there are three divisions. */
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  /* Headline block first, in normal flow (not an absolute overlay) */
  .hero-center {
    order: 0;
    position: relative;
    inset: auto;
    z-index: 2;
    align-items: center !important;
    justify-content: center;
    text-align: center;
    padding: 116px 24px 44px;
    transform: none !important;
  }
  .hero-center::before { display: none; }
  .hero-eyebrow { font-size: 0.6rem; text-align: center; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); margin-bottom: 12px; text-align: center; }
  .hero-sub { font-size: 0.9rem; max-width: 320px; margin-bottom: 24px; text-align: center; }
  .hero-btns { flex-direction: column; width: 100%; gap: 10px; align-items: center; justify-content: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* Three division panels — stacked, all visible */
  .hero-panels {
    order: 1;
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: var(--dark);
    transition: none;
  }
  .hero-panel {
    position: relative;
    height: 168px;
    opacity: 1 !important;
    overflow: hidden;
  }
  .hero-panel img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.9);
    transform: none;
  }
  /* Division label — always visible, bottom-left */
  .hero-panel-info {
    display: block;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0 20px 16px;
    z-index: 2;
  }
  .hero-panel-num { font-size: 0.62rem; margin-bottom: 4px; }
  .hero-panel-title { font-size: 1.05rem; }
  /* "Explore" link — always visible on mobile (no hover), pinned top-right */
  .hero-panel-link {
    opacity: 1;
    top: 16px;
    bottom: auto;
    left: auto;
    right: 16px;
    transform: none;
    padding: 7px 14px;
    font-size: 0.7rem;
  }
  .hero-slide-dots { display: none; }
  /* Contact bar flows below the panels instead of floating over them */
  .hero-glass-bar {
    order: 2;
    position: relative;
    inset: auto;
    bottom: auto; left: auto; right: auto;
    margin: 18px auto 26px;
  }

  /* ---- Stats ---- */
  .stats-bar { padding: 28px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 8px 16px; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(4) { border-right: none; }
  .stat-number { font-size: 1.9rem; }
  .stat-label { font-size: 0.72rem; }

  /* ---- Divisions header ---- */
  .divisions .wrap > .eyebrow,
  .divisions .wrap > h2 { padding: 0; }
  .divisions .wrap { padding-top: 56px !important; padding-bottom: 8px !important; }

  /* ---- Division rows ---- */
  .division-row         { grid-template-columns: 1fr !important; min-height: auto; }
  .division-row:nth-child(even) .division-img { order: 0; }
  .division-row:nth-child(even) .division-body { order: 0; }
  .division-img         { height: 260px; }
  .division-img-shell   { inset: 12px; }
  .division-body        { padding: 28px 20px; }
  .division-body h2     { font-size: 1.4rem; margin-bottom: 8px; }
  .division-body > p    { font-size: 0.85rem; margin-bottom: 14px; max-width: 100%; }
  .division-services    { gap: 6px; margin-bottom: 18px; }
  .division-service-item { padding: 6px 12px; font-size: 0.75rem; }

  /* ---- About teaser ---- */
  .about-teaser { padding: 64px 0; }
  .about-inner { gap: 32px; }
  .about-left h2 { font-size: 1.8rem; }
  .about-left p { font-size: 0.875rem; }
  .about-badges { gap: 6px; }
  .badge { font-size: 0.7rem; padding: 5px 11px; }

  /* ---- Projects ---- */
  .projects { padding: 64px 0; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 160px 160px;
    gap: 8px;
  }
  .proj:nth-child(1),
  .proj:nth-child(2),
  .proj:nth-child(3),
  .proj:nth-child(4),
  .proj:nth-child(5) { grid-column: span 1; }
  .proj:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .proj-title { font-size: 0.85rem; }

  /* ---- Testimonials ---- */
  .testimonials { padding: 64px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .tcard { padding: 24px 20px; }

  /* ---- Partners ---- */
  .partners { padding: 36px 0; }
  .partners-track-wrap::before,
  .partners-track-wrap::after { width: 48px; }
  .partner-logo { padding: 0 24px; }
  .partner-logo img { height: 22px; }

  /* ---- CTA ---- */
  .cta-section { padding: 64px 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-right { align-items: flex-start; }
  .cta-left h2 { font-size: 1.9rem; }
  .cta-left p { font-size: 0.875rem; }

  /* ---- Footer ---- */
  .footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal { justify-content: center; }

  /* ---- Page hero ---- */
  .page-hero { min-height: 280px; padding-bottom: 48px; }
  .page-hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* ---- Why grid ---- */
  .why-section { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-card { padding: 24px 20px; }
  .why-num { font-size: 2.4rem; }

  /* ---- Certs ---- */
  .certs-section { padding: 48px 0; }
  .cert-pill { font-size: 0.75rem; padding: 8px 14px; }

  /* ---- Services detail ---- */
  .services-detail { padding: 48px 0; }
  .service-division { gap: 32px; padding: 48px 0; }
  .service-div-shell { border-radius: var(--r-lg); }
  .service-div-inner { border-radius: calc(var(--r-lg) - 8px); }
  .service-pills { grid-template-columns: 1fr; gap: 6px; }
  .service-pill { padding: 10px 14px; font-size: 0.8rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  /* Stack the dual CTA buttons with breathing room (overrides inline margin-left) */
  .service-div-text .btn { width: 100%; justify-content: center; margin-left: 0 !important; }
  .service-div-text .btn + .btn { margin-top: 10px; }

  /* Breadcrumb: allow wrapping so it never overflows the viewport */
  .svc-breadcrumb { flex-wrap: wrap; row-gap: 4px; font-size: .72rem; }

  /* ---- Contact ---- */
  .contact-section { padding: 64px 0; }
  .contact-grid { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; border-radius: var(--r-lg); }
  .form-card h3 { font-size: 1.2rem; margin-bottom: 20px; }

  /* ---- Mission ---- */
  .mission-section { padding: 64px 0; }
  .mission-grid { gap: 32px; }
  .values-list { grid-template-columns: 1fr; gap: 8px; }
  .value-card { padding: 16px; }

  /* ---- Global spacing ---- */
  .about-teaser, .projects, .testimonials,
  .why-section, .cta-section,
  .services-detail, .contact-section,
  .mission-section { padding: 64px 0; }
  .section-sm, .certs-section, .process-section { padding: 40px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .stat-number { font-size: 1.6rem; }
  .division-img { height: 220px; }
  .tcard { padding: 20px 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 2px; }
  .display-title { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .cta-left h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .display-title { font-size: 2.6rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   RESPONSIVE — carriers bar + service cards
   ============================================= */
@media (max-width: 1024px) {
  .service-cards-grid { grid-template-columns: 1fr 1fr; }
  .carriers-bar .wrap { flex-direction: column; gap: 20px; align-items: center; }
}
@media (max-width: 768px) {
  .service-cards-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { padding: 24px 20px; }
  .service-grid-section { padding: 64px 0; }
  .carriers-logos { gap: 0; }
  .carrier-logo { padding: 0 16px; }
  .page-hero-btns { flex-direction: column; }
  .page-hero-btns .btn { width: 100%; justify-content: center; }
}

/* =============================================
   SERVICE DETAIL PAGES
   ============================================= */

/* Page hero variant for service sub-pages */
.page-hero--service {
  min-height: 56vh;
  padding-top: 140px;
  padding-bottom: 80px;
}
.page-hero--service .page-hero-content {
  max-width: 760px;
}
.page-hero--service h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--light);
  margin: 12px 0 20px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(248,247,244,0.7);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 32px;
}

/* Breadcrumb */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(248,247,244,0.5);
  margin-bottom: 16px;
}
.svc-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.svc-breadcrumb a:hover { text-decoration: underline; }
.bc-sep { opacity: 0.4; }

/* ── Features section ── */
.svc-features-section {
  padding: 100px 0;
  background: var(--bg);
}
.svc-features-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: border-color .3s var(--smooth), transform .3s var(--smooth), box-shadow .3s var(--smooth);
}
.svc-feature-card:hover {
  border-color: rgba(194,65,12,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.svc-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: rgba(194,65,12,0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  overflow: hidden;
}
.svc-feature-icon svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  display: block;
}
.svc-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}
.svc-feature-card p {
  font-size: .925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Use cases section (dark) ── */
.use-cases-section {
  padding: 100px 0;
  background: var(--dark);
}
.use-cases-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.use-case-tile {
  background: var(--dark);
  padding: 36px 32px;
  transition: background .25s var(--smooth);
}
.use-case-tile:hover { background: var(--dark-2); }
.use-case-tile h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--light);
  margin: 0 0 10px;
}
.use-case-tile p {
  font-size: .9rem;
  color: rgba(248,247,244,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ── FAQ section ── */
.faq-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.faq-item h4 {
  font-size: .975rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.4;
}
.faq-item p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Responsive for service sub-pages ── */
@media (max-width: 1024px) {
  .svc-features-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero--service { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .svc-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .svc-features-section,
  .use-cases-section,
  .faq-section { padding: 64px 0; }
}


/* ═══════════════════════════════════════════════════════════
   DIVISIONS GRID — modern 3-column card layout
   ═══════════════════════════════════════════════════════════ */

.divisions-intro {
  text-align: center;
  margin-bottom: 64px;
  padding-top: 100px;
}
.divisions-intro .section-title {
  margin: 0 auto 0;
}
.divisions-intro-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.65;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 100px;
}

.div-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.div-card:hover {
  border-color: rgba(194,65,12,0.3);
  box-shadow: 0 16px 56px rgba(0,0,0,0.08);
}

.div-card-img-wrap {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  text-decoration: none;
}
.div-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}
.div-card:hover .div-card-img-wrap img {
  transform: scale(1.04);
}
.div-card-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  background: rgba(194,65,12,0.9);
  border-radius: 6px;
  padding: 3px 9px;
  line-height: 1.5;
}

.div-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.div-card-label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.div-card-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 14px;
}
.div-card-body > p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.div-card-services {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.div-card-services li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s ease, padding-left .15s ease;
}
.div-card-services li a::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .15s ease;
}
.div-card-services li a:hover {
  color: var(--text);
  padding-left: 6px;
}
.div-card-services li a:hover::before {
  opacity: 1;
}

.div-card-btn {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .divisions-grid { grid-template-columns: 1fr 1fr; }
  .div-card:last-child { grid-column: 1 / -1; }
  .div-card-img-wrap { height: 200px; }
}
@media (max-width: 640px) {
  .divisions-grid { grid-template-columns: 1fr; gap: 16px; }
  .div-card:last-child { grid-column: auto; }
  .divisions-intro { padding-top: 64px; margin-bottom: 40px; }
  .div-card-img-wrap { height: 200px; }
}
