/* ─────────────────────────────────────────────
   SyncBridge AI — Corporate Minimal Cyber Theme
   Fonts: Syne (display), DM Sans (body), DM Mono (code/labels)
───────────────────────────────────────────── */

/* ── Tokens ── */
:root {
  --bg:          #080c12;
  --bg-alt:      #0a0f18;
  --surface:     #0d1220;
  --surface-2:   #111827;
  --fg:          #e8edf8;
  --muted:       #8a95b0;
  --muted-dim:   #525e78;
  --accent:      #00e5cc;
  --accent-dim:  rgba(0, 229, 204, 0.12);
  --accent-glow: rgba(0, 229, 204, 0.22);
  --border:      rgba(255,255,255,0.07);
  --border-med:  rgba(255,255,255,0.11);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --radius:       6px;
  --radius-lg:    10px;
  --max-w:        1100px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Ambient canvas ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── Skip link ── */
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  left: 1rem; top: 1rem;
  background: var(--fg); color: var(--bg);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  z-index: 200;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* ── Container ── */
.container {
  width: min(var(--max-w), 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 2rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}
.logo-mark { color: var(--accent); display: flex; }
.logo-ai { color: var(--accent); }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-list a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}
.nav-list a:hover,
.nav-list a:focus-visible { color: var(--fg); background: rgba(255,255,255,0.05); }
.nav-cta {
  color: var(--accent) !important;
  border: 1px solid rgba(0,229,204,0.3) !important;
}
.nav-cta:hover {
  background: rgba(0,229,204,0.08) !important;
  border-color: rgba(0,229,204,0.5) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--muted);
  border-radius: 2px;
  transition: 0.2s;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero-network {
  position: absolute;
  inset: 0;
  background-image: url("hero-cyber-bg.svg?v=2");
  background-repeat: no-repeat;
  background-position: 76% center;
  background-size: min(1200px, 74vw) auto;
  opacity: 0.62;
  filter: saturate(1.1) contrast(1.03);
  z-index: 0;
  pointer-events: none;
}

/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,204,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,204,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 60% 40%, black 30%, transparent 80%);
  pointer-events: none;
}

/* Glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(0,229,204,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(320px, 440px);
  justify-content: space-between;
  gap: 2.75rem;
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

/* Headline reveal animation */
.hero-text h1 {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4.4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0.8rem 0 1.1rem;
  max-width: 12ch;
}

.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: revealLine 0.7s var(--ease) forwards;
}
.reveal-line:nth-child(1) { animation-delay: 0.1s; }
.reveal-line:nth-child(2) { animation-delay: 0.22s; }
.reveal-line:nth-child(3) { animation-delay: 0.34s; }

.accent-word { color: var(--accent); }

@keyframes revealLine {
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 0.72rem 1.4rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent);
  color: #050c10;
  border-color: var(--accent);
  font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #19f0d8;
  box-shadow: 0 0 0 3px var(--accent-glow), 0 4px 16px rgba(0,229,204,0.25);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-med);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.btn-large { padding: 0.95rem 2rem; font-size: 0.95rem; }

/* Hero aside */
.hero-aside {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  opacity: 0;
  animation: fadeUp 0.6s 0.5s var(--ease) forwards;
  max-width: 360px;
  justify-self: end;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.metric-stack { display: flex; flex-direction: column; gap: 0.65rem; }
.metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  background: rgba(8, 14, 28, 0.52);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.metric-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}
.metric-divider {
  display: none;
}
.aside-badge {
  margin-top: 0.85rem;
  padding: 0.65rem 0.9rem;
  background: rgba(0, 229, 204, 0.12);
  border: 1px solid rgba(0,229,204,0.34);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Hero rule */
.hero-rule {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rule-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted-dim);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.rule-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─────────────────────────────────────────────
   SECTIONS — General
───────────────────────────────────────────── */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 3rem;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}
.section-intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 56ch;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────── */
.section-trust { padding: 3rem 0; border-bottom: 1px solid var(--border); }
.trust-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.trust-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 2rem;
}
.trust-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.credibility-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.credibility-card:hover {
  border-color: rgba(0, 229, 204, 0.18);
  box-shadow: 0 0 0 1px rgba(0, 229, 204, 0.08);
}
.credibility-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.credibility-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .credibility-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card {
  background: var(--surface);
  padding: 1.75rem;
  position: relative;
  transition: background 0.2s;
}
.card:hover { background: var(--surface-2); }
.card-index {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.card-cta {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.82rem;
}
.card-cta a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 204, 0.35);
  font-weight: 600;
}
.card-cta a:hover,
.card-cta a:focus-visible {
  border-bottom-color: var(--accent);
}
.section-follow {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.section-follow a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 204, 0.35);
  font-weight: 600;
}
.section-follow a:hover,
.section-follow a:focus-visible {
  border-bottom-color: var(--accent);
}

/* ─────────────────────────────────────────────
   INDUSTRIES
───────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cloud-grid {
  margin-top: 1rem;
}

.cloud-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.cloud-brand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-med);
  background: rgba(255, 255, 255, 0.02);
  min-height: 3.25rem;
}

.cloud-brand img {
  display: block;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.cloud-brand-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--fg);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .industry-grid:has(.industry-card:nth-child(3):last-child) .industry-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }

  .cloud-logos:has(.cloud-brand:nth-child(3):last-child) .cloud-brand:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .cloud-logos {
    grid-template-columns: 1fr;
  }

  .cloud-logos .cloud-brand:nth-child(3) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.industry-card:hover {
  border-color: rgba(0,229,204,0.2);
  box-shadow: 0 0 0 1px rgba(0,229,204,0.1);
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.industry-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────────
   PROBLEMS
───────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.problem-card {
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  transition: background 0.2s;
}
.problem-card:hover { background: rgba(255,255,255,0.02); }
.problem-card:nth-child(even) { border-right: none; }
.problem-card:nth-last-child(-n+2) { border-bottom: none; }
.problem-arrow {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
  transition: transform 0.2s;
}
.problem-card:hover .problem-arrow { transform: translateX(3px); }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.problem-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────────
   PROCESS / APPROACH
───────────────────────────────────────────── */
.process-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 0.5rem;
}
.process-connector {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-med), var(--border));
  position: relative;
}
.process-connector::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: var(--accent);
  background: var(--bg-alt);
  padding: 0 0.4rem;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.process-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.process-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.process-content p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────────
   LOCAL / REGION
───────────────────────────────────────────── */
.section-local { background: var(--bg); }
.local-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.local-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.local-text p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}
.local-text a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 204, 0.35);
  font-weight: 600;
}
.local-text a:hover,
.local-text a:focus-visible {
  border-bottom-color: var(--accent);
}
.local-map { width: 240px; flex-shrink: 0; }
.region-svg { width: 100%; height: auto; }

@keyframes pulseRing {
  0%   { opacity: 0.4; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.5); }
  100% { opacity: 0; transform: scale(1.5); }
}
.pulse-ring { transform-origin: 130px 145px; animation: pulseRing 2.5s ease-out infinite; }
.pulse-ring-2 { animation-delay: 0.8s; }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.faq-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-med); }
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.faq-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.section-contact {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 3rem;
  background: var(--surface);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.contact-text .section-tag { margin-bottom: 0.5rem; }
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.contact-text p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
}
.contact-facts {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  max-width: 52ch;
}
.contact-facts li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}
.contact-facts strong {
  color: var(--fg);
  font-weight: 600;
}
.contact-facts a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 204, 0.35);
}
.contact-facts a:hover,
.contact-facts a:focus-visible {
  border-bottom-color: var(--accent);
}
.contact-panel { width: 100%; min-width: 0; position: relative; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dim);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted-dim);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(0, 229, 204, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 229, 204, 0.12);
}
.form-field-full textarea { resize: vertical; min-height: 6rem; }
.btn-full { width: 100%; }
.contact-form-note {
  font-size: 0.78rem;
  color: var(--muted-dim);
  line-height: 1.5;
  margin: 0.25rem 0 0;
}
.contact-form-note a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 204, 0.35);
}
.contact-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ─────────────────────────────────────────────
   INNER PAGES (services / locations / blog)
───────────────────────────────────────────── */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--muted-dim);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--accent);
  border-bottom-color: rgba(0, 229, 204, 0.35);
}
.article-prose {
  max-width: 68ch;
}
.article-prose p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.article-prose h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.6rem;
  color: var(--fg);
}
.article-prose h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--fg);
}
.article-callout {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  background: rgba(0, 229, 204, 0.06);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.article-callout p {
  margin-bottom: 0;
}
.article-callout p + p {
  margin-top: 0.65rem;
}
.blog-article-preview {
  margin-top: 1.5rem;
}
.blog-article-preview .faq-item + .faq-item {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.blog-article-preview .faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.blog-article-preview .faq-item h3 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.blog-article-preview .faq-item h3 a:hover,
.blog-article-preview .faq-item h3 a:focus-visible {
  color: var(--accent);
  border-bottom-color: rgba(0, 229, 204, 0.35);
}
.blog-article-meta {
  font-size: 0.82rem;
  color: var(--muted-dim);
  margin: 0 0 0.5rem;
}
.article-prose ul,
.article-prose ol {
  margin: 0 0 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.article-prose ol {
  list-style: decimal;
  padding-left: 1.25rem;
}
.article-prose a:not(.btn) {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 204, 0.35);
}
.article-prose a:not(.btn):hover,
.article-prose a:not(.btn):focus-visible {
  border-bottom-color: var(--accent);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}
.footer-nav a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent);
  border-bottom-color: rgba(0, 229, 204, 0.35);
}
.footer-social {
  display: flex;
  align-items: center;
}
.footer-x-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.footer-x-link:hover,
.footer-x-link:focus-visible {
  color: var(--accent);
  border-bottom-color: rgba(0, 229, 204, 0.35);
}
.footer-x-icon {
  flex-shrink: 0;
  display: block;
  color: var(--fg);
}
.footer-copy, .footer-location {
  font-size: 0.82rem;
  color: var(--muted-dim);
  margin: 0;
}
.footer-location a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-location a:hover,
.footer-location a:focus-visible {
  color: var(--accent);
  border-bottom-color: rgba(0, 229, 204, 0.35);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .trust-sep { display: none; }
  .trust-item { padding: 0; }
  .process-track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .process-connector { display: none; }
}

@media (max-width: 900px) {
  .hero-network {
    background-position: center top;
    background-size: 1250px auto;
    opacity: 0.45;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-aside { max-width: 480px; justify-self: start; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-list { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card:nth-child(even) { border-right: 1px solid var(--border); }
  .problem-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .problem-card:last-child { border-bottom: none; }
  .local-inner { grid-template-columns: 1fr; }
  .local-map { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 5rem 0 3.5rem; }
  .hero-network {
    background-position: 60% top;
    background-size: 1000px auto;
    opacity: 0.34;
  }
  .nav-list { display: none; }
  .mobile-toggle { display: flex; }
  .card-grid, .industry-grid, .faq-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.2rem; }
  .metric-num { font-size: 1.8rem; }
}

/* Mobile nav open state */
.nav-open .nav-list {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 4rem 0 0;
  background: rgba(8,12,18,0.97);
  backdrop-filter: blur(16px);
  padding: 2rem 1.5rem;
  gap: 0.4rem;
  z-index: 99;
}
.nav-open .nav-list a {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  display: block;
}