/* =====================================================================
   Habitat Multi Services — Design System
   Premium, trustworthy, mobile-first. Navy + orange urgency accent.
   ===================================================================== */

:root {
  /* Palette */
  --navy-900: #0a1628;
  --navy-800: #0f2240;
  --navy-700: #16315a;
  --navy-600: #1e3f73;
  --navy-500: #2a5298;
  --ink: #0d1b2a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --orange: #ff6b1a;
  --orange-600: #ed5e0e;
  --orange-700: #c44a06;
  --orange-soft: #fff3ea;

  --green: #16a34a;
  --green-soft: #ecfdf5;

  --gold: #f5b301;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);

  /* Spacing scale (8px base) */
  --s-1: 0.25rem;   /* 4 */
  --s-2: 0.5rem;    /* 8 */
  --s-3: 0.75rem;   /* 12 */
  --s-4: 1rem;      /* 16 */
  --s-5: 1.5rem;    /* 24 */
  --s-6: 2rem;      /* 32 */
  --s-7: 3rem;      /* 48 */
  --s-8: 4rem;      /* 64 */
  --s-9: 6rem;      /* 96 */
  --s-10: 8rem;     /* 128 */

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(10, 22, 40, .06), 0 1px 3px rgba(10, 22, 40, .08);
  --sh-md: 0 4px 12px rgba(10, 22, 40, .08), 0 2px 6px rgba(10, 22, 40, .06);
  --sh-lg: 0 18px 40px -12px rgba(10, 22, 40, .22), 0 8px 18px -10px rgba(10, 22, 40, .14);
  --sh-xl: 0 40px 80px -20px rgba(10, 22, 40, .30);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .35s;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
.container.narrow { max-width: var(--container-narrow); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.02em; color: var(--navy-900); font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--slate-600); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--slate-600); line-height: 1.55; }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.eyebrow.center::before { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: .95rem 1.6rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(255, 107, 26, .6);
}
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 14px 30px -8px rgba(255, 107, 26, .7); transform: translateY(-2px); }
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--sh-md);
}
.btn-dark:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn-light {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--sh-md);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.08rem; }

/* Phone link (urgent) */
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  padding: .55rem 1.1rem;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 20px -6px rgba(255,107,26,.55);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.phone-pill:hover { background: var(--orange-600); transform: translateY(-2px); }
.phone-pill svg { width: 18px; height: 18px; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  height: 84px;
}
.brand { display: flex; align-items: center; gap: var(--s-3); }
.brand-logo { width: 56px; height: 56px; border-radius: 16px; object-fit: cover; background: var(--white); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; color: var(--white); font-size: 1.15rem; letter-spacing: -.01em; }
.brand-tag { font-size: .72rem; color: var(--slate-300); letter-spacing: .04em; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: var(--s-2); }
.nav a {
  color: var(--slate-200);
  font-weight: 600;
  font-size: .95rem;
  padding: .5rem .85rem;
  border-radius: var(--r-sm);
  transition: color var(--dur), background var(--dur);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.08); }
.nav .nav-cta { margin-left: var(--s-2); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  color: var(--white);
  border-radius: var(--r-sm);
}
.nav-toggle svg { width: 24px; height: 24px; margin: auto; }

@media (max-width: 920px) {
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    padding: var(--s-4) var(--s-5) var(--s-6);
    gap: var(--s-1);
    transform: translateY(-120%);
    transition: transform var(--dur) var(--ease);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--sh-xl);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .9rem 1rem; font-size: 1.05rem; border-radius: var(--r-md); }
  .nav .nav-cta { margin: var(--s-3) 0 0; }
  .nav-toggle { display: inline-flex; }
}

/* Top urgency bar */
.urgency-bar {
  background: var(--navy-900);
  color: var(--slate-300);
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.urgency-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); height: 38px; flex-wrap: wrap;
}
.urgency-inner span { display: inline-flex; align-items: center; gap: .4rem; }
.urgency-inner .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.urgency-inner a { color: var(--orange); font-weight: 700; }
@media (max-width: 640px){ .urgency-inner { justify-content: center; font-size: .78rem; } }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 80% 10%, rgba(255,107,26,.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--s-7);
  align-items: center;
  padding-block: var(--s-9) var(--s-8);
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--orange); }
.hero .lead { color: var(--slate-300); max-width: 46ch; }
.hero-eyebrow { color: var(--orange); }
.hero-eyebrow::before { background: var(--orange); }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust .item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--white); }
.hero-trust .lbl { font-size: .8rem; color: var(--slate-400); }

.hero-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4 / 3.4;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .badge-float {
  position: absolute;
  left: var(--s-4); bottom: var(--s-4);
  background: rgba(255,255,255,.95);
  color: var(--navy-900);
  padding: .7rem 1rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: var(--sh-lg);
}
.hero-media .badge-float .pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,.25); animation: pulse 2s infinite;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-block: var(--s-8) var(--s-7); }
  .hero-media { aspect-ratio: 4/3; order: -1; }
}

/* ===================== SECTION SHELL ===================== */
section { padding-block: var(--s-9); }
section.tight { padding-block: var(--s-8); }
[id] { scroll-margin-top: 88px; }
.section-head { max-width: 60ch; margin-bottom: var(--s-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: var(--s-3); font-size: 1.08rem; }

.alt { background: var(--slate-50); }
.dark { background: var(--navy-900); color: var(--white); }
.dark h2, .dark h3 { color: var(--white); }
.dark p { color: var(--slate-300); }

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px){ .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--slate-300); }
.service-card .media { aspect-ratio: 16/10; overflow: hidden; background: var(--slate-100); }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .media img { transform: scale(1.05); }
.service-card .body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.service-card .icon-chip {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange-soft); color: var(--orange-600);
}
.service-card .icon-chip svg { width: 26px; height: 26px; }
.service-card h3 { margin-top: var(--s-1); }
.service-card p { font-size: .96rem; }
.service-card .card-link {
  margin-top: auto;
  font-weight: 700; color: var(--orange-600);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap var(--dur) var(--ease);
}
.service-card .card-link:hover { gap: .7rem; }
.service-card ul.feat { display: flex; flex-direction: column; gap: .35rem; }
.service-card ul.feat li { display: flex; gap: .5rem; color: var(--slate-600); font-size: .92rem; }
.service-card ul.feat li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ===================== FEATURE LIST (checkmarks) ===================== */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3) var(--s-6); margin-top: var(--s-5); }
.feature-list li { display: flex; gap: var(--s-3); align-items: flex-start; }
.feature-list li svg { width: 24px; height: 24px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.feature-list li span { font-weight: 600; color: var(--navy-900); }
.feature-list li small { color: var(--slate-500); font-weight: 400; }
@media (max-width: 640px){ .feature-list { grid-template-columns: 1fr; } }

/* ===================== SPLIT (image + text) ===================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 900px){
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.split-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-top: var(--s-3); }
.split-body p { margin-top: var(--s-4); }
.split-body .btn { margin-top: var(--s-5); }

/* ===================== STEPS ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  counter-reset: step;
}
@media (max-width: 860px){ .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
  box-shadow: var(--sh-sm);
}
.step .num {
  counter-increment: step;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
}
.step .num::before { content: "0" counter(step); }
.step h3 { margin-top: var(--s-4); }
.step p { margin-top: var(--s-2); font-size: .98rem; }

/* ===================== TESTIMONIALS ===================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px){ .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.testi .stars { display: flex; gap: 2px; color: var(--gold); }
.testi .stars svg { width: 18px; height: 18px; }
.testi blockquote { font-size: 1.02rem; color: var(--slate-700); line-height: 1.6; }
.testi .who { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-700); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.testi .who-meta strong { color: var(--navy-900); display: block; font-size: .95rem; }
.testi .who-meta small { color: var(--slate-500); }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-700) 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-6); flex-wrap: wrap;
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 90% 20%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); max-width: 18ch; }
.cta-banner p { color: rgba(255,255,255,.92); margin-top: var(--s-3); max-width: 50ch; }
.cta-banner .actions { display: flex; flex-direction: column; gap: var(--s-3); align-items: stretch; position: relative; z-index: 1; }
.cta-banner .phone-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  background: rgba(0,0,0,.18);
  padding: .6rem 1.4rem;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: background var(--dur);
}
.cta-banner .phone-big:hover { background: rgba(0,0,0,.3); }

/* ===================== ZONES / COVERAGE ===================== */
.zone-pills { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5); }
.zone-pills span {
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 600;
}

/* ===================== FAQ ===================== */
.faq { display: flex; flex-direction: column; gap: var(--s-3); max-width: var(--container-narrow); margin-inline: auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--dur);
}
.faq details[open] { box-shadow: var(--sh-md); border-color: var(--slate-300); }
.faq summary {
  font-weight: 700; color: var(--navy-900); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--orange); font-weight: 700; transition: transform var(--dur);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: var(--s-3); }

/* ===================== PAGE HERO (sub pages) ===================== */
.page-hero {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 85% 15%, rgba(255,107,26,.16), transparent 65%);
}
.page-hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: var(--s-7); align-items: center;
  padding-block: var(--s-8) var(--s-7);
  position: relative; z-index: 1;
}
.page-hero h1 { color: var(--white); }
.page-hero h1 .accent { color: var(--orange); }
.page-hero .lead { color: var(--slate-300); max-width: 50ch; }
.page-hero .media {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl);
  aspect-ratio: 4/3.2;
}
.page-hero .media img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--slate-400); margin-bottom: var(--s-4); }
.breadcrumb a { color: var(--slate-300); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span.sep { color: var(--slate-500); }
@media (max-width: 900px){
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero .media { aspect-ratio: 4/3; }
}

/* ===================== PRICING / TRANSPARENCY ===================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 900px){ .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--r-lg);
  padding: var(--s-6); box-shadow: var(--sh-sm);
}
.price-card .label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-500); }
.price-card .price { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--navy-900); margin-top: var(--s-2); }
.price-card .price small { font-size: .9rem; color: var(--slate-500); font-weight: 600; }
.price-card p { margin-top: var(--s-3); font-size: .95rem; }
.price-card.featured { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange-soft), var(--sh-md); }

/* ===================== STATS STRIP ===================== */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
@media (max-width: 720px){ .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--orange); line-height: 1; }
.stat .lbl { margin-top: var(--s-2); color: var(--slate-600); font-weight: 600; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy-900);
  color: var(--slate-300);
  padding-block: var(--s-8) var(--s-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s-7);
}
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: var(--s-4); }
.footer-brand p { color: var(--slate-400); font-size: .95rem; max-width: 38ch; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: var(--s-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col a { color: var(--slate-400); font-size: .95rem; transition: color var(--dur); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; color: var(--slate-400); font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap;
  font-size: .85rem; color: var(--slate-500);
}
.footer-bottom a { color: var(--slate-400); }
.footer-bottom a:hover { color: var(--white); }

/* ===================== MOBILE CALL BAR ===================== */
.mobile-call-bar { display: none; }

@media (max-width: 760px) {
  body.has-mobile-call-bar {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-call-bar {
    position: fixed;
    z-index: 200;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom, 12px));
    min-height: 72px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 11px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10,22,40,.98), rgba(22,49,90,.98));
    color: var(--white);
    box-shadow: 0 20px 45px rgba(10,22,40,.42), 0 4px 12px rgba(10,22,40,.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
    transition: opacity .28s var(--ease), transform .38s var(--ease);
  }
  .mobile-call-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-call-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--orange);
    box-shadow: 0 8px 18px rgba(255,107,26,.38);
  }
  .mobile-call-icon svg { width: 23px; height: 23px; }
  .mobile-call-copy { min-width: 0; line-height: 1.15; }
  .mobile-call-kicker {
    display: block;
    margin-bottom: 3px;
    color: #fdba74;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .mobile-call-title { display: block; font-size: .98rem; font-weight: 800; }
  .mobile-call-number {
    display: block;
    margin-top: 3px;
    color: var(--slate-300);
    font-size: .78rem;
    white-space: nowrap;
  }
  .mobile-call-action {
    padding: 9px 12px;
    border-radius: var(--r-pill);
    background: var(--white);
    color: var(--navy-900);
    font-size: .78rem;
    font-weight: 850;
  }
}

@media (max-width: 370px) {
  .mobile-call-bar { grid-template-columns: 44px minmax(0, 1fr) auto; gap: 9px; }
  .mobile-call-icon { width: 44px; height: 44px; }
  .mobile-call-action { padding-inline: 10px; }
}

/* ===================== UTILITIES ===================== */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.maxw-60 { max-width: 60ch; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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