@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400..700;1,9..40,400..700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --brand: #d9531e;
  --brand-dark: #a3380c;
  --brand-light: #fff2ed;
  --accent: #0284c7;
  --accent-dark: #0369a1;
  --accent-light: #e0f2fe;
  
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-dark: #0f172a;
  --surface-card: #ffffff;
  
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --border: #e2e8f0;
  --border-brand: #fdba74;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-glow: 0 12px 28px -4px rgba(217, 83, 30, 0.25);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--surface);
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--brand-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--surface-dark);
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header & Top Bar */
.top-bar {
  background: var(--surface-dark);
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-phone {
  color: var(--brand);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--surface-dark);
}

.brand-logo svg {
  width: 28px;
  height: 28px;
  color: var(--brand);
}

@media (min-width: 768px) {
  .brand-logo {
    gap: 0.75rem;
    font-size: 1.5rem;
  }
  .brand-logo svg {
    width: 38px;
    height: 38px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--brand);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  color: var(--text-white);
  box-shadow: 0 14px 30px -4px rgba(217, 83, 30, 0.35);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #2d1810 100%);
  color: var(--text-white);
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--surface);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 83, 30, 0.15);
  border: 1px solid rgba(217, 83, 30, 0.4);
  color: #fdba74;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-md);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: var(--text-white);
}

.hero-card {
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-card-title {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.hero-list-item svg {
  width: 22px;
  height: 22px;
  color: #38bdf8;
  flex-shrink: 0;
}

/* Stats Band */
.stats-strip {
  padding: 2.5rem 0;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Section Styling */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: var(--surface-alt);
}

.section-dark {
  background-color: var(--surface-dark);
  color: var(--text-white);
}

.section-dark h2, .section-dark h3 {
  color: var(--text-white);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--brand);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Cards & Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-brand);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Unfolded FAQ Section */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 1.15rem;
  color: var(--surface-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.faq-question svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.98rem;
  padding-left: 2rem;
  line-height: 1.65;
}

/* Mid CTA Box */
.mid-cta-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.mid-cta-box h2 {
  color: var(--text-white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.mid-cta-box p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.mid-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--brand);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
}

.mid-cta-phone:hover {
  color: var(--text-white);
  background: var(--brand-dark);
  transform: scale(1.03);
}

/* Location Cloud */
.location-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.location-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

/* Footer */
.site-footer {
  background: var(--surface-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
  }
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sticky Mobile Call Bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--surface-dark);
  padding: 0.75rem 1rem;
  border-top: 2px solid var(--brand);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

@media (min-width: 769px) {
  .mobile-call-bar {
    display: none;
  }
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  text-align: center;
  width: 100%;
}

/* Prose Styling for Long-Form SEO Content */
.prose {
  color: var(--text);
  line-height: 1.75;
  font-size: 1.05rem;
}

.prose h2 {
  font-size: 1.85rem;
  margin: 2rem 0 1rem;
  color: var(--surface-dark);
}

.prose h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--surface-dark);
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.prose th, .prose td {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  text-align: left;
}

.prose th {
  background: var(--surface-alt);
  font-family: var(--font-heading);
  font-weight: 700;
}

/* ============================================================
   OUR PROCESS / COMPARISON TABLE / BEFORE-AFTER — Phase 6 Add
   ============================================================ */





/* ============================================================

   OUR PROCESS SECTION

   ============================================================ */

.process-section {

  background: var(--surface-dark);

  padding: 5rem 0;

  position: relative;

  overflow: hidden;

}

.process-section::before {

  content: '';

  position: absolute;

  inset: 0;

  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(217,83,30,0.12) 0%, transparent 70%);

  pointer-events: none;

}

.process-section .section-tag { color: var(--brand); background: rgba(217,83,30,0.12); }

.process-section .section-title { color: #f1f5f9; }

.process-section .section-desc  { color: #94a3b8; }



.process-steps {

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 0;

  position: relative;

  margin-top: 3.5rem;

}

.process-steps::before {

  content: '';

  position: absolute;

  top: 2.25rem;

  left: 10%; right: 10%;

  height: 2px;

  background: linear-gradient(90deg, transparent, rgba(217,83,30,0.4) 20%, rgba(217,83,30,0.4) 80%, transparent);

  pointer-events: none;

  z-index: 0;

}

.process-step {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  padding: 0 1rem 2.5rem;

  position: relative;

}

.step-circle {

  width: 4.5rem; height: 4.5rem;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);

  display: flex; align-items: center; justify-content: center;

  box-shadow: 0 0 0 5px rgba(217,83,30,0.18), 0 8px 24px rgba(217,83,30,0.28);

  flex-shrink: 0;

  margin-bottom: 1.4rem;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  z-index: 1;

  position: relative;

}

.step-circle svg { width: 1.6rem; height: 1.6rem; color: #fff; stroke-width: 2.5; }

.step-num-badge {

  position: absolute;

  top: -0.5rem; right: -0.5rem;

  width: 1.4rem; height: 1.4rem;

  border-radius: 50%;

  background: var(--surface-dark);

  border: 2px solid var(--brand);

  font-size: 0.6rem; font-weight: 800;

  color: var(--brand);

  display: flex; align-items: center; justify-content: center;

  font-family: var(--font-heading);

}

.process-step:hover .step-circle {

  transform: translateY(-5px) scale(1.1);

  box-shadow: 0 0 0 7px rgba(217,83,30,0.22), 0 16px 32px rgba(217,83,30,0.38);

}

.step-title {

  font-family: var(--font-heading);

  font-size: 0.9rem; font-weight: 700;

  color: #f1f5f9; margin-bottom: 0.5rem;

}

.step-desc { font-size: 0.82rem; color: #94a3b8; line-height: 1.6; }



@media (max-width: 900px) {

  .process-steps { grid-template-columns: repeat(3, 1fr); }

  .process-steps::before { display: none; }

}

@media (max-width: 560px) {

  .process-steps { grid-template-columns: 1fr 1fr; gap: 1rem 0; }

}



/* ============================================================

   COMPARISON TABLE SECTION

   ============================================================ */

.compare-section { background: var(--surface-alt); padding: 5rem 0; }

.compare-wrap {

  overflow-x: auto;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);

  border: 1px solid var(--border);

  margin-top: 3rem;

}

.compare-table {

  width: 100%; border-collapse: collapse;

  font-size: 0.9rem; min-width: 700px;

}

.compare-table thead tr { background: var(--surface-dark); }

.compare-table thead th {

  padding: 1.1rem 1.25rem;

  font-family: var(--font-heading);

  font-size: 0.75rem; font-weight: 700;

  letter-spacing: 0.07em; text-transform: uppercase;

  color: #64748b; text-align: left; border: none;

}

.compare-table thead th:first-child { color: #f1f5f9; font-size: 0.85rem; text-transform: none; letter-spacing: 0; }

.compare-table thead th.ct-highlight { color: #fdba74; position: relative; }

.compare-table thead th.ct-highlight::after {

  content: 'MOST POPULAR';

  position: absolute; top: 0.4rem; right: 0.6rem;

  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.07em;

  color: var(--brand); background: rgba(217,83,30,0.16);

  padding: 0.15rem 0.45rem; border-radius: 4px;

}

.compare-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }

.compare-table tbody tr:last-child { border-bottom: none; }

.compare-table tbody tr:nth-child(even) { background: #f8fafc; }

.compare-table tbody tr:hover { background: var(--brand-light); }

.compare-table tbody td { padding: 1rem 1.25rem; color: var(--text); vertical-align: middle; border: none; }

.compare-table tbody td:first-child { font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem; color: var(--surface-dark); }

.ct-highlight { background: rgba(217,83,30,0.05); font-weight: 600; color: var(--brand-dark); }

.ct-check { color: #16a34a; }

.ct-x     { color: #dc2626; }

.ct-badge {

  display: inline-block; font-size: 0.7rem; font-weight: 700;

  padding: 0.18rem 0.5rem; border-radius: 4px; letter-spacing: 0.04em;

}

.cb-green  { background: #dcfce7; color: #15803d; }

.cb-amber  { background: #fff7ed; color: #c2410c; }

.cb-blue   { background: #dbeafe; color: #1d4ed8; }

.cb-purple { background: #ede9fe; color: #6d28d9; }

.cb-gray   { background: #f1f5f9; color: #475569; }



/* ============================================================

   BEFORE / AFTER SECTION

   ============================================================ */

.ba-section { padding: 5rem 0; background: var(--surface); }

.ba-grid {

  display: grid; grid-template-columns: 1fr 1fr;

  gap: 2rem; margin-top: 3rem;

}

@media (max-width: 768px) { .ba-grid { grid-template-columns: 1fr; gap: 1.5rem; } }



.ba-panel {

  border-radius: var(--radius-lg); overflow: hidden;

  box-shadow: var(--shadow-lg); border: 1px solid var(--border);

  display: flex; flex-direction: column;

}

.ba-header {

  display: flex; align-items: center; gap: 0.75rem;

  padding: 1.15rem 1.5rem;

  font-family: var(--font-heading); font-weight: 800;

  font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase;

}

.ba-header svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

.ba-before .ba-header { background: #fef2f2; color: #b91c1c; border-bottom: 2px solid #fecaca; }

.ba-after  .ba-header { background: #f0fdf4; color: #15803d;  border-bottom: 2px solid #bbf7d0; }



.ba-body { padding: 1.25rem 1.5rem; flex: 1; background: #fff; }

.ba-item {

  display: flex; align-items: flex-start; gap: 0.875rem;

  padding: 0.875rem 0; border-bottom: 1px solid var(--border);

  font-size: 0.88rem; line-height: 1.55;

}

.ba-item:last-child { border-bottom: none; }

.ba-item-icon {

  width: 1.75rem; height: 1.75rem; border-radius: 50%; flex-shrink: 0;

  display: flex; align-items: center; justify-content: center; margin-top: 0.05rem;

}

.ba-before .ba-item-icon { background: #fee2e2; color: #dc2626; }

.ba-after  .ba-item-icon { background: #dcfce7; color: #16a34a; }

.ba-item-icon svg { width: 0.9rem; height: 0.9rem; }

.ba-item-text strong {

  display: block; font-family: var(--font-heading); font-weight: 700;

  color: var(--surface-dark); font-size: 0.875rem; margin-bottom: 0.2rem;

}

.ba-item-text span { color: var(--text-muted); font-size: 0.845rem; }



.ba-footer {

  padding: 1.1rem 1.5rem;

  display: flex; align-items: center; gap: 0.5rem;

  font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;

  border-top: 1px solid var(--border);

}

.ba-before .ba-footer { background: #fef2f2; color: #b91c1c; }

.ba-after  .ba-footer { background: #f0fdf4; color: #15803d; }

.ba-footer svg { width: 1rem; height: 1rem; flex-shrink: 0; }



/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--surface-dark);
  cursor: pointer;
  padding: 0.25rem;
}
.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .header-inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 70px;
    padding: 0 1rem;
    position: relative;
  }
  .mobile-menu-toggle {
    display: block;
  }
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
    gap: 0;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-menu .nav-link {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .nav-menu li:last-child .nav-link {
    border-bottom: none;
  }
  .btn-header-cta {
    display: none;
  }
}


/* SVG sizing fixes */
.ct-check svg, .ct-x svg { width: 1.1rem; height: 1.1rem; margin-right: 0.25rem; vertical-align: text-bottom; }
.compare-section p svg { width: 1rem; height: 1rem; vertical-align: text-bottom; margin: 0 0.15rem; }

/* Service-Page Technical Guide Topics */
.guide-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.guide-topic {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem 2.25rem;
}

.guide-topic-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.guide-topic-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.guide-topic-head h3 {
  color: var(--surface-dark);
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0.25rem 0 0;
}

.guide-topic-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.guide-topic-body p:last-child { margin-bottom: 0; }

/* Service-Page Inclusions Checklist */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
  }
}

.svc-check-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.75rem;
}

.svc-check {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(217,83,30,0.25);
}

.svc-check svg { width: 22px; height: 22px; }

.svc-check-title {
  font-size: 1.1rem;
  color: var(--surface-dark);
  margin: 0 0 0.35rem;
}

.svc-check-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* Service-Page Intro Quick-Rail (Template B) */
.intro-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.quick-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .quick-rail {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.quick-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.75rem;
}

.quick-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #0369a1);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(2,132,199,0.28);
}

.quick-title {
  font-size: 1.12rem;
  color: var(--surface-dark);
  margin: 0 0 0.3rem;
}

.quick-text {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

.quick-cta {
  text-align: center;
  max-width: 720px;
  margin: 2.25rem auto 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Service-Page Inclusions Accordion (Template B) */
.acc-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}

.acc-item {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.acc-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--surface-dark);
}

.acc-item summary::-webkit-details-marker { display: none; }

.acc-item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brand);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}

.acc-item[open] summary::after { transform: rotate(45deg); }

.acc-item p {
  padding: 0 1.5rem 1.4rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.97rem;
}

/* Service-Page Guide Two-Column Cards (Template B) */
.guide-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .guide-cols {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.guide-topic-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px var(--brand-light);
}

.guide-cols .guide-topic { height: 100%; }

/* Service-Page Icon Tiles (Template C) */
.tile-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tile-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .tile-row { grid-template-columns: repeat(4, 1fr); }
}

.tile {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.tile-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-title {
  font-size: 1.12rem;
  color: var(--surface-dark);
  margin: 0 0 0.45rem;
}

.tile-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Service-Page Split Band (Template C) */
.split-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 992px) {
  .split-band { grid-template-columns: 1fr 1fr; }
}

.split-note {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem 2.25rem;
}

.split-note h3 {
  color: var(--surface-dark);
  font-size: 1.35rem;
  margin: 0 0 0.9rem;
}

.split-note p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.split-note p:last-child { margin-bottom: 0; }

.split-chips {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.15rem 1.5rem;
}

.chip-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(22,163,74,0.12);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-check svg { width: 18px; height: 18px; }

.chip-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--surface-dark);
}

/* Service-Page Guide Numbered Rows (Template C) */
.guide-rows {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 860px;
  margin: 0 auto;
}

.guide-rows .guide-topic {
  border-left: 4px solid var(--accent);
}

/* Actual guide-topic-num rule lives in the Template B block (shared by B and C) */

/* --- Image Split Layout ----------------------------------- */
.img-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.ba-visual { height:250px; position:relative; overflow:hidden; background:#e8eef0; }
.ba-visual::before, .ba-visual::after { content:''; position:absolute; }
.ba-visual-before { background:linear-gradient(180deg,#a6bdc8 0 45%,#537887 46% 61%,#345967 62% 100%); }
.ba-visual-before::before { width:38%; height:68%; left:16%; top:0; background:linear-gradient(90deg,#dce6e9,#aebfc4); border-right:12px solid #71909a; box-shadow:32px 0 0 rgba(61,104,118,.7); }
.ba-visual-before::after { width:130%; height:28%; left:-12%; bottom:-12%; background:repeating-radial-gradient(ellipse at 40% 20%,rgba(219,244,246,.7) 0 4px,transparent 5px 20px),linear-gradient(180deg,#4b899f,#1f586b); transform:rotate(-3deg); }
.ba-visual-after { background:linear-gradient(180deg,#d8f1ed 0 60%,#e7d7b8 61% 100%); }
.ba-visual-after::before { width:40%; height:62%; left:17%; top:0; background:linear-gradient(90deg,#f7fcfa,#c6e2da); border-right:12px solid #75ae9f; box-shadow:34px 0 0 rgba(44,125,111,.22); }
.ba-visual-after::after { width:84px; height:76px; right:16%; bottom:22%; border-radius:10px 10px 18px 18px; background:linear-gradient(135deg,#0a7f7b,#00a6a6); box-shadow:-125px 34px 0 -16px #f1e5c9, -125px 34px 0 -10px #b59968; }
.img-split-reverse {
  direction: rtl;
}
.img-split-reverse > * {
  direction: ltr;
}
.img-split-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .img-split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .img-split-reverse {
    direction: ltr;
  }
}

/* --- Photo Card Layout (Image 1) --------------------------- */
.photo-card-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.photo-card-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.photo-card-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.photo-card-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(217,83,30,0.35);
  min-width: 110px;
}
.photo-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.photo-badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 0.25rem;
}
.photo-card-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.pc-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--surface-dark);
}
.pc-check::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* --- Proof Strip (Image 2) -------------------------------- */
.proof-strip {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.proof-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
}
.proof-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,20,40,0.88) 0%, rgba(10,20,40,0.55) 60%, rgba(10,20,40,0.15) 100%);
}
.proof-strip-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}
.proof-strip-card {
  max-width: 520px;
}

@media (max-width: 768px) {
  .photo-card-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .photo-card-img-wrap img { height: 260px; }
  .photo-card-badge { right: 1rem; bottom: -1rem; }
  .photo-card-checks { grid-template-columns: 1fr; }
  .proof-strip-bg { background-attachment: scroll; }
  .proof-strip-card { max-width: 100%; }
}

/* --- Service Cards Section ------------------------------ */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.svc-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.svc-card--accent {
  border-top: 4px solid var(--brand);
}
.svc-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(217,83,30,0.1);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.svc-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--surface-dark);
  margin-bottom: 0.75rem;
}
.svc-card-desc {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.2s;
}
.svc-card-cta:hover {
  gap: 0.75rem;
}

@media (max-width: 992px) {
  .svc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .svc-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- Location Page Unique Layouts ---------------------- */

/* Asymmetric Split Layout */
.asymmetric-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.asymmetric-content {
  padding-right: 2rem;
}
.asymmetric-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
}
.asymmetric-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 30px;
  left: 30px;
  background-color: rgba(217,83,30,0.1);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.asymmetric-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.asymmetric-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.asymmetric-checks .pc-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--surface-dark);
}
.asymmetric-checks .pc-check::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" stroke="%23d9531e" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat center center;
}

@media (max-width: 992px) {
  .asymmetric-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .asymmetric-content {
    padding-right: 0;
  }
}

/* Inline Image Breaker */
.inline-image-breaker {
  float: right;
  width: 40%;
  margin: 0.5rem 0 2rem 2.5rem;
  background: var(--surface);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.inline-image-breaker img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: 0.75rem;
}
.inline-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .inline-image-breaker {
    float: none;
    width: 100%;
    margin: 1.5rem 0;
  }
}

/* 2026 emergency-response refresh — shared by all service-area pages. */
:root { --brand:#e65a27; --brand-dark:#ad3512; --brand-light:#fff1eb; --accent:#00a6a6; --accent-dark:#007a7a; --surface-alt:#f4f7f8; --text:#172b3a; --text-muted:#536574; --border:#d9e1e5; --radius-md:14px; --radius-lg:24px; --shadow-lg:0 20px 50px -24px rgba(7,28,43,.35); }
html { scroll-padding-top:100px; }
.container { max-width:1240px; }
.top-bar { background:#071c2b; border-bottom-color:rgba(255,255,255,.12); }
.top-bar-phone { color:#ffb093; }
.site-header { background:rgba(255,255,255,.94); backdrop-filter:blur(18px); }
.header-inner { height:88px; }
.brand-logo { letter-spacing:-.035em; }
.brand-logo svg { color:var(--accent); }
.nav-link { position:relative; padding:.55rem 0; }
.nav-link::after { content:''; position:absolute; right:0; bottom:.15rem; left:0; height:2px; background:var(--brand); transform:scaleX(0); transform-origin:right; transition:transform .2s ease; }
.nav-link:hover::after, .nav-link:focus-visible::after { transform:scaleX(1); transform-origin:left; }
.btn-header-cta, .btn-primary, .mid-cta-phone { border-radius:999px; background:linear-gradient(135deg,#ef6b3d,#c9441a); box-shadow:0 12px 24px -13px rgba(196,68,26,.8); }
.btn-header-cta:hover, .btn-primary:hover, .mid-cta-phone:hover { box-shadow:0 16px 28px -12px rgba(196,68,26,.68); transform:translateY(-2px); }
.hero { padding:6.5rem 0 7rem; background:radial-gradient(circle at 83% 18%,rgba(0,166,166,.31),transparent 25%),radial-gradient(circle at 3% 85%,rgba(230,90,39,.28),transparent 31%),linear-gradient(130deg,#061925 0%,#0b2a39 58%,#164555 100%); }
.hero::before { content:''; position:absolute; inset:0; opacity:.34; background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size:52px 52px; mask-image:linear-gradient(to bottom,black,transparent); }
.hero-grid { position:relative; z-index:1; gap:4rem; }
.hero-badge { color:#a9f4ee; border-color:rgba(169,244,238,.35); background:rgba(0,166,166,.16); text-transform:uppercase; letter-spacing:.08em; font-size:.72rem; }
.hero-title { max-width:760px; font-size:clamp(2.75rem,5.2vw,5rem); line-height:1.02; letter-spacing:-.055em; margin-bottom:1.4rem; }
.hero-subtitle { max-width:680px; color:#d3e0e4; font-size:clamp(1.05rem,1.6vw,1.22rem); line-height:1.7; }
.hero-card { position:relative; overflow:hidden; padding:2.25rem; background:rgba(8,34,47,.7); border-color:rgba(169,244,238,.2); box-shadow:0 30px 70px -34px #02070c; }
.hero-card::before { content:'24/7'; position:absolute; top:-2.5rem; right:-1rem; font:800 7rem/1 var(--font-heading); color:rgba(169,244,238,.07); }
.hero-card-title { position:relative; font-size:1.55rem; }
.hero-list-item { position:relative; color:#d8e5e8; }
.hero-list-item svg { color:#65dcd1; }
.stats-strip { position:relative; z-index:2; margin-top:-1.9rem; padding:0 0 3.5rem; background:transparent; border:0; }
.stats-grid { gap:.9rem; }
.stat-card { min-height:118px; display:grid; align-content:center; border:1px solid #e1e8ea; border-radius:14px; box-shadow:0 14px 30px -24px rgba(7,28,43,.6); }
.stat-number { color:var(--accent-dark); font-size:clamp(1.6rem,3vw,2.15rem); }
.section { padding:clamp(4.25rem,8vw,7rem) 0; }
.section-alt { background:linear-gradient(180deg,#f5f8f9 0%,#fff 100%); }
.section-tag { color:var(--accent-dark); font-size:.72rem; letter-spacing:.15em; }
.section-title { font-size:clamp(2rem,4vw,3.45rem); letter-spacing:-.045em; }
.section-desc { max-width:620px; margin-inline:auto; }
.card { border-radius:var(--radius-lg); padding:2.2rem; box-shadow:0 12px 30px -24px rgba(7,28,43,.75); }
.card:hover { transform:translateY(-7px); border-color:rgba(0,166,166,.5); box-shadow:0 25px 45px -28px rgba(7,28,43,.65); }
.card-icon { background:linear-gradient(135deg,#e7f8f7,#fff1eb); color:var(--accent-dark); border-radius:16px; }
.card-title { letter-spacing:-.025em; }
.card-link { color:var(--brand-dark); text-transform:uppercase; letter-spacing:.07em; font-size:.76rem; }
.prose { max-width:900px; margin-inline:auto; font-size:1.08rem; }
.prose h2 { letter-spacing:-.035em; }
.prose h3 { color:var(--accent-dark); }
.prose li::marker { color:var(--brand); }
.location-pill { border-radius:999px; box-shadow:0 6px 15px -14px rgba(7,28,43,.6); }
.location-pill:hover { transform:translateY(-2px); color:var(--accent-dark); border-color:var(--accent); background:#e8f8f7; }
.faq-grid { gap:.85rem; }
.faq-card { border-radius:16px; padding:1.45rem 1.6rem; transition:border-color .2s ease,box-shadow .2s ease; }
.faq-card:hover { border-color:rgba(0,166,166,.45); box-shadow:0 12px 26px -21px rgba(7,28,43,.7); }
.faq-question svg { color:var(--accent-dark); }
.mid-cta-box { background:radial-gradient(circle at 82% 15%,rgba(0,166,166,.32),transparent 25%),linear-gradient(125deg,#071c2b,#0d3d4a); padding:clamp(3rem,6vw,5rem) 2rem; }
.mid-cta-box p { color:#d1e1e5; }
.site-footer { background:#061925 !important; }
.mobile-call-bar { background:#061925; border-top-color:var(--accent); }
.mobile-call-btn { border-radius:999px; }
a:focus-visible, button:focus-visible { outline:3px solid #00a6a6; outline-offset:4px; }
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { scroll-behavior:auto !important; transition-duration:.01ms !important; animation-duration:.01ms !important; } }
@media (max-width:768px) { .header-inner { height:72px; } nav { top:72px; } .hero { padding:4.5rem 0 5.5rem; } .hero-grid { gap:2.25rem; } .hero-title { font-size:2.75rem; } .hero-card { padding:1.6rem; } .stats-strip { margin-top:-1.3rem; padding-bottom:2rem; } .top-bar-info { display:none; } }

/* ─── IMPROVED FOOTER ────────────────────────────────────────── */
.site-footer { font-family: var(--font-body); }

.footer-top {
  background: var(--surface-dark);
  color: #94a3b8;
  padding: 4rem 0 3rem;
}

.footer-grid-main {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .footer-grid-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid-main { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Brand col */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.9rem;
}
.footer-logo svg { color: var(--brand); }

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ftrust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.45rem 0.85rem;
  border-radius: 30px;
  width: fit-content;
}
.ftrust-badge svg { color: var(--brand); flex-shrink: 0; }

/* Headings */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
.footer-contact-list li svg { flex-shrink: 0; color: var(--brand); margin-top: 2px; }
.footer-contact-list a { color: #fff; font-weight: 700; font-size: 1.05rem; }
.footer-contact-list a:hover { color: var(--brand); }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(217,83,30,0.35);
}
.footer-cta-btn:hover { transform: translateY(-2px); color: #fff; }

/* Nav list */
.footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav-list a {
  color: #94a3b8;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--brand); }

/* Service areas */
.footer-areas-col .location-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.location-pill {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.location-pill:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  background: #0a0f1e;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #475569;
}

/* ── IMAGE FEATURE SECTIONS ─────────────────────────────── */
.img-feature-section { padding: 3rem 0; }
.img-feature-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.img-feature-grid--left  { grid-template-columns: 1.1fr 1fr; }
.img-feature-grid--right { grid-template-columns: 1fr 1.1fr; }
@media (max-width: 768px) {
  .img-feature-grid--left,
  .img-feature-grid--right { grid-template-columns: 1fr; }
  .img-feature-grid--right .img-feature-content { order: 1; }
  .img-feature-grid--right .img-feature-visual  { order: 2; }
}
.img-feature-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  aspect-ratio: 16/10;
}
.img-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.img-feature-visual:hover img { transform: scale(1.03); }
.img-feature-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.img-feature-badge--green { background: #16a34a; }
.img-feature-content .section-title { margin-top: 0.5rem; line-height: 1.4; }
