/* HomeLinkPro — shared stylesheet
   Primary: #1a4fa0  Accent: #3b82f6
   8px grid, 12px radii, fade-up on scroll
*/

:root {
  --navy: #1a4fa0;
  --navy-deep: #0f3275;
  --navy-darker: #0a2455;
  --sky: #3b82f6;
  --sky-light: #60a5fa;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --muted: #475569;
  --muted-2: #64748b;
  --line: #e2e8f0;
  --line-2: #cbd5e1;
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --success: #16a34a;
  --error: #dc2626;
  --star: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 4px 12px rgba(15, 23, 42, 0.06), 0 24px 48px rgba(15, 23, 42, 0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--sky); }

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; }
h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.3; }
p  { margin: 0 0 16px; color: var(--muted); text-wrap: pretty; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-bg { background: var(--bg-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  background: rgba(26, 79, 160, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--sky);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 79, 160, 0.25);
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 79, 160, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-on-dark {
  background: #fff;
  color: var(--navy);
}
.btn-on-dark:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}
.btn-ghost-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo .logo-text { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  position: relative;
}
.nav-links a:hover { color: var(--navy); background: var(--bg-3); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; padding: 10px 18px; font-size: 14px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a { padding: 12px 14px; }
  .nav-links a.active::after { left: 14px; right: auto; width: 18px; bottom: 6px; }
  .nav-cta { margin: 4px 0 0; }
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(59, 130, 246, 0.35), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(96, 165, 250, 0.18), transparent 60%),
    linear-gradient(135deg, #0a2455 0%, #1a4fa0 60%, #0f3275 100%);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #0f3275, #1a4fa0);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo .badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.hero-photo .badge .dot {
  width: 10px; height: 10px;
  background: #16a34a;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
  flex: none;
}
.hero-photo .badge strong { display: block; color: var(--ink); font-size: 13px; }
.hero-photo .badge span { color: var(--muted); font-size: 12px; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.5) 1.2px, transparent 1.4px);
  background-size: 56px 56px;
  background-position: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 820px; }
.hero p { color: rgba(255, 255, 255, 0.82); max-width: 640px; font-size: 18px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* Page header (interior pages) */
.page-header {
  position: relative;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(59, 130, 246, 0.3), transparent 60%),
    linear-gradient(135deg, #0a2455 0%, #1a4fa0 100%);
  color: #fff;
  padding: 80px 0 64px;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 40%, transparent 80%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; }
.page-header p { color: rgba(255, 255, 255, 0.85); max-width: 640px; font-size: 18px; }
.crumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.crumb a { color: rgba(255, 255, 255, 0.7); }
.crumb a:hover { color: #fff; }

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-top-color: var(--navy);
}
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 16px; font-size: 15px; }
.card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 79, 160, 0.1), rgba(59, 130, 246, 0.15));
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card .icon-wrap svg { width: 26px; height: 26px; }
.card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.card .arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .arrow svg { transform: translateX(3px); }

/* Service tiles row */
.tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tile:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.tile .icon-wrap {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26, 79, 160, 0.1), rgba(59, 130, 246, 0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.tile .icon-wrap svg { width: 22px; height: 22px; }
.tile .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
@media (max-width: 980px) {
  .tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Three-up cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

/* Trust points */
.trust {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust .icon-wrap {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(26, 79, 160, 0.08);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust .icon-wrap svg { width: 22px; height: 22px; }
.trust h4 { margin-bottom: 4px; }
.trust p { margin: 0; font-size: 14px; }

/* Before / After */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ba {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.ba-vis {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ba-vis img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-before {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.18) 0 6px, transparent 6px 12px),
    radial-gradient(circle at 30% 60%, #c2410c 0%, #7c2d12 60%, #431407 100%);
}
.ba-before::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(0,0,0,0.4) 0 14px, transparent 15px),
    radial-gradient(circle at 70% 50%, rgba(0,0,0,0.4) 0 18px, transparent 19px),
    radial-gradient(circle at 45% 78%, rgba(0,0,0,0.4) 0 12px, transparent 13px);
  mix-blend-mode: multiply;
}
.ba-before svg.cables { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.7; }
.ba-after {
  background:
    linear-gradient(135deg, #0f3275 0%, #1a4fa0 50%, #2563eb 100%);
}
.ba-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.ba-after svg.lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.85; }
.ba-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 6px;
  color: #fff;
  z-index: 2;
}
.ba-cap {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}
.ba-cap strong { display: block; color: var(--ink); margin-bottom: 4px; }
.ba-cap span { font-size: 14px; color: var(--muted); }
@media (max-width: 720px) {
  .ba-wrap { grid-template-columns: 1fr; }
}

/* Testimonials */
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--star); display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.tcard blockquote {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
.tcard .who {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.tcard .avatar {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.tcard .who span { font-weight: 600; color: var(--ink); font-size: 14px; }
.tcard .who small { display: block; color: var(--muted); font-size: 12px; }

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 48px;
  background:
    radial-gradient(800px 300px at 90% 50%, rgba(59, 130, 246, 0.35), transparent 60%),
    linear-gradient(135deg, #0a2455 0%, #1a4fa0 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 80% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 50%, #000 30%, transparent 75%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin: 0 0 6px; }
.cta-banner p { color: rgba(255, 255, 255, 0.8); margin: 0; }
@media (max-width: 600px) {
  .cta-banner { padding: 32px 24px; }
}

/* Lists with checks */
.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checks li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(26, 79, 160, 0.1);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a4fa0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Photo block */
.photo-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #0f3275, #1a4fa0);
}
.photo-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-stack {
  position: relative;
  aspect-ratio: 1 / 1;
}
.photo-stack .photo-block {
  position: absolute;
  inset: 0;
}
.photo-stack .p1 { top: 0; left: 0; width: 70%; height: 70%; }
.photo-stack .p2 { bottom: 0; right: 0; width: 60%; height: 60%; border: 6px solid #fff; aspect-ratio: auto; }

/* Two column content */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}
.split .visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0a2455, #1a4fa0);
}
.split .visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.problem {
  background: linear-gradient(180deg, #fef3c7 0%, #fffbeb 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 28px;
}
.problem h3 { color: #78350f; margin-bottom: 8px; }
.problem p { color: #92400e; margin: 0; }

/* Footer */
.footer {
  background: #0a2455;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 24px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 20% 0%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 20% 0%, #000 30%, transparent 70%);
}
.footer .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-brand img { height: 44px; width: auto; background: #fff; padding: 6px 8px; border-radius: 8px; }
.footer-brand .name { color: #fff; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 22px; margin-top: 14px; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); margin-top: 6px; max-width: 320px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a { color: rgba(255, 255, 255, 0.78); font-size: 14px; }
.footer ul a:hover { color: #fff; }
.footer .contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer .contact-row svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--sky-light); }
.footer .contact-row a { color: rgba(255, 255, 255, 0.85); }
.footer .contact-row a:hover { color: #fff; }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Sticky mobile call button */
.mcall {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(10, 36, 85, 0.4);
  z-index: 40;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mcall svg { width: 18px; height: 18px; }
@media (max-width: 760px) {
  .mcall { display: flex; }
  body { padding-bottom: 72px; }
}

/* Forms */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.field label .req { color: var(--error); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(26, 79, 160, 0.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 12px; color: var(--muted); }
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--error);
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-msg {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
.form-msg.show { display: block; }
.form-msg.ok { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.form-msg.err { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 999px;
  animation: spin .7s linear infinite;
  display: none;
}
button[disabled] .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Contact sidebar */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.info-block h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}
.info-block p, .info-block a {
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}
.info-block .row { display: flex; gap: 12px; align-items: flex-start; }
.info-block .icon-wrap {
  width: 36px; height: 36px; flex: none;
  border-radius: 8px;
  background: rgba(26, 79, 160, 0.1);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.info-block .icon-wrap svg { width: 18px; height: 18px; }
.area-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-list li {
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 4px 10px;
  border-radius: 999px;
}

.map-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 79, 160, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 79, 160, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-placeholder .pin {
  position: relative;
  z-index: 1;
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--navy);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}
.map-placeholder .pin strong { color: var(--navy); display: block; font-size: 13px; }

/* Fade-up on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Misc */
.muted { color: var(--muted); }
.text-center { text-align: center; }
.center-narrow { max-width: 720px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 17px; max-width: 620px; margin-left: auto; margin-right: auto; }

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.kpi {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 16px 18px;
}
.kpi strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.kpi span { font-size: 13px; color: rgba(255, 255, 255, 0.78); }
@media (max-width: 720px) {
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
}
