/* =============================================================================
   FULL SPECTRUM SERVICES — DESIGN SYSTEM
   Premium commercial-cleaning website. Mobile-first, accessible, no framework.
   ========================================================================== */

/* ---- Tokens ---------------------------------------------------------- */
:root {
  /* Brand */
  --navy-900: #081627;
  --navy-800: #0b2138;   /* primary */
  --navy-700: #123151;
  --navy-600: #1b466f;
  --teal-600: #0e9a92;
  --teal-500: #14b8ad;   /* accent */
  --teal-400: #37d0c5;
  --teal-100: #dff6f3;
  --blue-500: #1f7ae0;
  --blue-600: #175fbb;

  /* Neutrals */
  --ink: #16202e;
  --slate-700: #33475b;
  --slate-600: #4a5a6e;
  --slate-500: #6b7c8f;
  --slate-400: #93a2b3;
  --line: #e6ecf3;
  --line-2: #eef3f9;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-tint: #eaf2fb;
  --star: #f6a623;

  /* Effects */
  --grad-hero: linear-gradient(135deg, #0b2138 0%, #0e2b48 45%, #0d5f66 100%);
  --grad-cta: linear-gradient(120deg, #0b2138 0%, #123151 55%, #0e9a92 130%);
  --grad-accent: linear-gradient(120deg, var(--teal-500), var(--blue-500));
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);

  --shadow-sm: 0 1px 2px rgba(11,33,56,.06), 0 1px 3px rgba(11,33,56,.05);
  --shadow-md: 0 6px 18px -6px rgba(11,33,56,.14), 0 2px 6px rgba(11,33,56,.06);
  --shadow-lg: 0 24px 48px -18px rgba(11,33,56,.28), 0 8px 20px -12px rgba(11,33,56,.16);
  --shadow-teal: 0 14px 30px -12px rgba(20,184,173,.45);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(56px, 9vw, 112px);

  --ff-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue-600); text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--navy-800);
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

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

/* ---- Layout ---------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1340px; }
.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-tint), #fff); }
.section--navy { background: var(--grad-cta); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---- Section headers ------------------------------------------------- */
.section-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--teal-500); border-radius: 2px; }
.section--navy .eyebrow { color: var(--teal-400); }
.section-head p { color: var(--slate-600); font-size: 1.08rem; margin-top: 14px; }
.section--navy .section-head p { color: rgba(255,255,255,.82); }

/* ---- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: var(--r-full); border: 1.5px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal-500); color: #06211f; box-shadow: var(--shadow-teal); }
.btn-primary:hover { background: var(--teal-400); transform: translateY(-2px); box-shadow: 0 20px 36px -12px rgba(20,184,173,.6); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--navy-800); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--teal-500); color: var(--teal-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-head); font-weight: 700; color: var(--teal-600); font-size: .96rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---- Header ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s, padding .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); border-color: var(--line); background: rgba(255,255,255,.96); }
.header-inner { display: flex; align-items: center; gap: 20px; padding-block: 16px; transition: padding .3s var(--ease); }
.site-header.scrolled .header-inner { padding-block: 10px; }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: var(--grad-hero); display: grid; place-items: center;
  box-shadow: var(--shadow-teal);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { font-family: var(--ff-head); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; color: var(--navy-800); line-height: 1; }
.brand-text span { color: var(--teal-600); }
.brand-text small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--slate-500); margin-top: 4px; }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem; color: var(--slate-700);
  padding: 9px 13px; border-radius: 9px; transition: color .18s, background .18s;
}
.nav-desktop a:hover { color: var(--navy-800); background: var(--bg-soft); }
.nav-desktop a.active { color: var(--teal-600); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-head);
  font-weight: 700; color: var(--navy-800); font-size: .96rem;
}
.header-phone svg { width: 17px; height: 17px; color: var(--teal-600); }
.header-phone:hover { color: var(--teal-600); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--navy-800); }

@media (max-width: 1080px) {
  .nav-desktop, .header-cta .btn, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn.header-quote-mobile { display: inline-flex; padding: 11px 18px; }
}
.header-quote-mobile { display: none; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; visibility: hidden; pointer-events: none;
}
.mobile-drawer.open { visibility: visible; pointer-events: auto; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(8,22,39,.5); opacity: 0; transition: opacity .3s; }
.mobile-drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: #fff; box-shadow: var(--shadow-lg); padding: 22px;
  transform: translateX(100%); transition: transform .32s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer-close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; display: grid; place-items: center; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer-nav a { display: block; font-family: var(--ff-head); font-weight: 600; font-size: 1.1rem; color: var(--navy-800); padding: 14px 6px; border-bottom: 1px solid var(--line-2); }
.drawer-nav a:hover { color: var(--teal-600); }
.drawer-foot { margin-top: auto; padding-top: 22px; display: grid; gap: 12px; }

/* ---- Hero ------------------------------------------------------------ */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--navy-900); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(8,22,39,.94) 0%, rgba(8,22,39,.8) 40%, rgba(9,35,55,.5) 72%, rgba(13,95,102,.42) 100%),
    linear-gradient(180deg, rgba(8,22,39,.2), rgba(8,22,39,.55));
}
.hero-scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.hero-inner { position: relative; z-index: 2; padding-block: clamp(72px, 12vw, 150px); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(44px, 7vw, 104px); align-items: center; }
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-full); font-size: .85rem; font-weight: 600; margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-badge .stars { color: var(--star); letter-spacing: 1px; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 .hl { position: relative; white-space: nowrap; color: var(--teal-400); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: rgba(255,255,255,.85); max-width: 52ch; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.9); }
.hero-trust svg { width: 18px; height: 18px; color: var(--teal-400); flex-shrink: 0; }

/* Hero side card */
.hero-card {
  background: rgba(255,255,255,.97); color: var(--ink); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
}
.hero-card h3 { color: var(--navy-800); }
.hero-card .muted { color: var(--slate-600); font-size: .95rem; margin-top: 4px; }
.hero-card form { margin-top: 18px; display: grid; gap: 12px; }
.hero-card .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-trust { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .82rem; color: var(--slate-500); }
.mini-trust svg { width: 15px; height: 15px; color: var(--teal-600); }

/* ---- Marquee / logo strip ------------------------------------------- */
.trust-strip { background: var(--navy-800); color: #fff; padding-block: 20px; }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; }
.trust-strip .ts-item { display: flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.9); }
.trust-strip svg { width: 20px; height: 20px; color: var(--teal-400); flex-shrink: 0; }
.trust-strip .divider { width: 1px; height: 20px; background: rgba(255,255,255,.16); }
@media (max-width: 720px) { .trust-strip .divider { display: none; } }

/* ---- Cards ----------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-100); }

.icon-badge {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--teal-100), #eef6ff);
  color: var(--teal-600); margin-bottom: 18px; border: 1px solid rgba(20,184,173,.18);
}
.icon-badge svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate-600); font-size: .98rem; }
.card .link-arrow { margin-top: 16px; }

/* Service card variant with accent header bar */
.service-card { padding: 0; }
.service-card .sc-media {
  height: 190px; position: relative; overflow: hidden;
  background: var(--grad-hero); display: grid; place-items: end start;
}
.service-card .sc-media .sc-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .sc-media .sc-photo { transform: scale(1.07); }
.service-card .sc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,22,39,.15) 0%, rgba(8,22,39,.05) 40%, rgba(8,22,39,.55) 100%); }
.service-card .sc-media svg.art { width: 100%; height: 100%; position: absolute; inset: 0; opacity: .9; }
.service-card .sc-media .sc-icon {
  position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 14px; margin: 14px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  display: grid; place-items: center; color: #fff; backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(8,22,39,.3);
}
.service-card .sc-icon svg { width: 30px; height: 30px; }
.service-card .sc-body { padding: 24px 26px 28px; }
.service-card .sc-body h3 { margin-bottom: 8px; }
.service-card .sc-body p { color: var(--slate-600); font-size: .97rem; }

/* Numbered / process */
.step-card { text-align: left; }
.step-num {
  font-family: var(--ff-head); font-weight: 800; font-size: 1rem; color: var(--teal-600);
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--teal-100); margin-bottom: 18px;
}
.process-grid { position: relative; }
.process-grid .connector { position: absolute; top: 50px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--teal-400) 0 8px, transparent 8px 16px); z-index: 0; }
@media (max-width: 620px) { .process-grid .connector { display: none; } }
.process-grid .card { z-index: 1; }

/* ---- Stats ----------------------------------------------------------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 720px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.1rem); color: #fff; line-height: 1; letter-spacing: -.03em; }
.stat .num .suffix { color: var(--teal-400); }
.stat .lbl { color: rgba(255,255,255,.8); font-size: .92rem; margin-top: 10px; font-weight: 500; }

/* ---- Promo ----------------------------------------------------------- */
.promo {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--grad-cta); color: #fff; padding: clamp(34px, 5vw, 60px);
  box-shadow: var(--shadow-lg);
}
.promo::before { content: ""; position: absolute; top: -40%; right: -10%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(20,184,173,.35), transparent 65%); z-index: 0; }
.promo-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr .9fr; gap: 34px; align-items: center; }
@media (max-width: 820px) { .promo-inner { grid-template-columns: 1fr; } }
.promo .eyebrow { color: var(--teal-400); }
.promo h2 { color: #fff; }
.promo p { color: rgba(255,255,255,.86); margin-top: 14px; }
.promo .terms { font-size: .82rem; color: rgba(255,255,255,.62); margin-top: 18px; }
.promo-tag {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: var(--r-lg);
  padding: 26px; text-align: center; backdrop-filter: blur(6px);
}
.promo-tag .big { font-family: var(--ff-head); font-weight: 800; font-size: clamp(3rem, 8vw, 4.4rem); line-height: 1; color: var(--teal-400); }
.promo-tag .cap { font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; color: rgba(255,255,255,.75); margin-top: 8px; }

/* ---- Split / why-choose --------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split.reverse .split-media { order: 0; } }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-item { display: flex; gap: 16px; }
.feature-item .fi-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--teal-100); color: var(--teal-600); }
.feature-item .fi-icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem; color: var(--navy-800); margin-bottom: 3px; }
.feature-item p { color: var(--slate-600); font-size: .95rem; margin: 0; }

/* Media panels (photo placeholders that look designed, not broken) */
.media-panel {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--grad-hero); min-height: 380px; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; color: #fff;
}
.media-panel .mp-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.media-panel .mp-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.media-panel::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,22,39,.1), rgba(8,22,39,.35)); pointer-events: none; }
.media-panel.tall { min-height: 460px; }
.media-panel .mp-label {
  position: relative; z-index: 2; text-align: center; padding: 24px;
}
.media-panel .mp-badge {
  position: absolute; bottom: 18px; left: 18px; z-index: 3;
  background: rgba(255,255,255,.95); color: var(--navy-800); border-radius: var(--r-full);
  padding: 9px 16px; font-family: var(--ff-head); font-weight: 700; font-size: .84rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px;
}
.media-panel .mp-badge svg { width: 16px; height: 16px; color: var(--teal-600); }
.media-panel .float-stat {
  position: absolute; top: 18px; right: 18px; z-index: 3; background: #fff; color: var(--navy-800);
  border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-lg); text-align: center;
}
.media-panel .float-stat b { font-family: var(--ff-head); font-size: 1.5rem; display: block; color: var(--teal-600); line-height: 1; }
.media-panel .float-stat span { font-size: .72rem; color: var(--slate-500); font-weight: 600; }

/* ---- Industries ------------------------------------------------------ */
.industry-card { display: flex; flex-direction: column; }
.industry-card .icon-badge { background: linear-gradient(140deg, #eaf2fb, #eef6ff); }

/* ---- Reviews --------------------------------------------------------- */
.review-card { display: flex; flex-direction: column; height: 100%; }
.review-card .stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 14px; }
.review-card blockquote { font-size: 1.02rem; color: var(--slate-700); line-height: 1.6; flex-grow: 1; }
.review-card blockquote::before { content: "\201C"; font-family: Georgia, serif; font-size: 2.6rem; color: var(--teal-400); line-height: 0; vertical-align: -.35em; margin-right: 4px; }
.review-meta { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 800; color: #fff; background: var(--grad-accent); }
.review-meta .rm-name { font-family: var(--ff-head); font-weight: 700; color: var(--navy-800); font-size: .96rem; }
.review-meta .rm-role { font-size: .82rem; color: var(--slate-500); }
.review-summary-badge {
  display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-full); padding: 12px 22px; box-shadow: var(--shadow-md); margin-top: 8px;
}
.review-summary-badge .rsb-rating { font-family: var(--ff-head); font-weight: 800; font-size: 1.6rem; color: var(--navy-800); }
.review-summary-badge .stars { color: var(--star); }
.review-summary-badge .rsb-count { font-size: .86rem; color: var(--slate-500); }

/* ---- Gallery --------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.gallery-item .gi-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-item .gi-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; background: linear-gradient(180deg, transparent 40%, rgba(8,22,39,.82));
  color: #fff; opacity: 1; transition: opacity .25s;
}
.gallery-item .gi-cat { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-400); }
.gallery-item .gi-title { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; }
.gallery-item .gi-zoom { position: absolute; top: 14px; right: 14px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: .25s; }
.gallery-item:hover .gi-zoom { opacity: 1; transform: scale(1); }
.gallery-item .gi-zoom svg { width: 18px; height: 18px; color: var(--navy-800); }
.gallery-item:hover .gi-art { transform: scale(1.06); transition: transform .5s var(--ease); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,22,39,.9); display: none; place-items: center; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox-inner { max-width: 900px; width: 100%; }
.lightbox-stage { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; position: relative; box-shadow: var(--shadow-lg); }
.lightbox-caption { color: #fff; text-align: center; margin-top: 16px; font-family: var(--ff-head); font-weight: 600; }
.lightbox-close { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff; display: grid; place-items: center; }
.lightbox-close svg { width: 24px; height: 24px; }

/* ---- FAQ accordion --------------------------------------------------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: var(--teal-100); box-shadow: var(--shadow-md); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem; color: var(--navy-800); }
.faq-q .faq-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; background: var(--teal-100); color: var(--teal-600); display: grid; place-items: center; transition: transform .3s var(--ease), background .2s; }
.faq-q .faq-icon svg { width: 18px; height: 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal-500); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--slate-600); }

/* ---- Service areas --------------------------------------------------- */
.area-card { text-align: left; }
.area-card .cities { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.area-card .chip { font-size: .8rem; font-weight: 600; color: var(--slate-600); background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-full); padding: 5px 12px; }
.map-wrap { position: relative; }
.map-wrap svg { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(11,33,56,.18)); }

/* ---- CTA band -------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -30%; left: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(20,184,173,.28), transparent 65%); }
.cta-band::after { content: ""; position: absolute; bottom: -40%; right: -5%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(31,122,224,.22), transparent 65%); }
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 56ch; margin: 16px auto 0; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ---- Forms ----------------------------------------------------------- */
.field { display: grid; gap: 7px; }
.field label { font-family: var(--ff-head); font-weight: 600; font-size: .88rem; color: var(--slate-700); }
.field label .req { color: #d64545; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(20,184,173,.16); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #d64545; box-shadow: 0 0 0 3px rgba(214,69,69,.12); }
.field .err { color: #d64545; font-size: .8rem; display: none; }
.field.show-err .err { display: block; }
.field textarea { resize: vertical; min-height: 110px; }
.hero-card input, .hero-card select { padding: 12px 14px; }

.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px) { .checkbox-grid { grid-template-columns: 1fr; } }
.check-tile {
  display: flex; align-items: center; gap: 11px; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer; transition: border-color .18s, background .18s;
  font-weight: 600; font-size: .94rem; color: var(--slate-700);
}
.check-tile:hover { border-color: var(--teal-400); }
.check-tile input { width: 20px; height: 20px; accent-color: var(--teal-500); flex-shrink: 0; }
.check-tile:has(input:checked) { border-color: var(--teal-500); background: var(--teal-100); color: var(--navy-800); }

/* Multi-step quote form */
.quote-shell { max-width: 780px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.quote-progress { display: flex; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.qp-step { flex: 1; padding: 16px 10px; text-align: center; position: relative; }
.qp-step .qp-dot { width: 32px; height: 32px; border-radius: 50%; margin: 0 auto 8px; display: grid; place-items: center; background: #fff; border: 2px solid var(--line); font-family: var(--ff-head); font-weight: 800; font-size: .9rem; color: var(--slate-400); transition: .25s; }
.qp-step .qp-lbl { font-size: .78rem; font-weight: 600; color: var(--slate-500); }
.qp-step.active .qp-dot { background: var(--teal-500); border-color: var(--teal-500); color: #06211f; box-shadow: var(--shadow-teal); }
.qp-step.active .qp-lbl { color: var(--navy-800); }
.qp-step.done .qp-dot { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
@media (max-width: 620px) { .qp-step .qp-lbl { display: none; } }
.quote-body { padding: clamp(24px, 4vw, 40px); }
.quote-step { display: none; animation: fadeUp .4s var(--ease); }
.quote-step.active { display: block; }
.quote-step h3 { margin-bottom: 6px; }
.quote-step .step-sub { color: var(--slate-600); margin-bottom: 22px; font-size: .96rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-row.single { grid-template-columns: 1fr; }
.quote-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-2); }
.quote-success { text-align: center; padding: 30px 10px; display: none; }
.quote-success.show { display: block; animation: fadeUp .4s var(--ease); }
.quote-success .qs-icon { width: 78px; height: 78px; border-radius: 50%; background: var(--teal-100); color: var(--teal-600); display: grid; place-items: center; margin: 0 auto 22px; }
.quote-success .qs-icon svg { width: 42px; height: 42px; }
.form-privacy { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--slate-500); margin-top: 18px; }
.form-privacy svg { width: 16px; height: 16px; color: var(--teal-600); flex-shrink: 0; }

/* ---- Page hero (interior pages) -------------------------------------- */
.page-hero { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; padding-block: clamp(50px, 8vw, 92px); }
.page-hero::before { content: ""; position: absolute; top: -30%; right: -8%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(20,184,173,.3), transparent 65%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 60ch; margin-top: 16px; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: 8px; font-size: .86rem; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--teal-400); }

/* ---- Footer ---------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding-top: clamp(50px, 7vw, 80px); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 34px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text span { color: var(--teal-400); }
.footer-about { font-size: .94rem; margin-top: 16px; max-width: 34ch; }
.footer-contact { display: grid; gap: 10px; margin-top: 18px; }
.footer-contact a, .footer-contact span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: .94rem; }
.footer-contact a:hover { color: var(--teal-400); }
.footer-contact svg { width: 17px; height: 17px; color: var(--teal-400); flex-shrink: 0; }
.footer-col h4 { color: #fff; font-size: .95rem; font-family: var(--ff-head); font-weight: 700; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .93rem; }
.footer-col a:hover { color: var(--teal-400); }
.footer-cta-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 24px; }
.footer-cta-card h4 { color: #fff; margin-bottom: 8px; }
.footer-cta-card p { font-size: .9rem; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--teal-500); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-block: 24px; font-size: .86rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--teal-400); }

/* ---- Sticky mobile action bar --------------------------------------- */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(11,33,56,.1); }
.sticky-bar .btn { flex: 1; padding: 14px; font-size: .96rem; }
@media (max-width: 1080px) { .sticky-bar { display: flex; } body { padding-bottom: 72px; } }

/* ---- Utilities & prose ---------------------------------------------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 34px; }
.mt-md { margin-top: 22px; }
.stack-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.stack-actions.center { justify-content: center; }
.pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-head); font-weight: 700; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-600); background: var(--teal-100); border-radius: var(--r-full); padding: 6px 14px; }
.divider-soft { height: 1px; background: var(--line); border: 0; margin-block: var(--section-y); }

.prose { max-width: 760px; }
.prose p { color: var(--slate-600); margin-bottom: 18px; }
.prose h2 { margin-top: 40px; margin-bottom: 14px; }
.prose h3 { margin-top: 28px; margin-bottom: 10px; }
.prose ul.bullets { display: grid; gap: 10px; margin: 18px 0; }
.prose ul.bullets li { display: flex; gap: 12px; color: var(--slate-600); }
.prose ul.bullets li::before { content: ""; width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; border-radius: 50%; background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e9a92' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ---- Reveal-on-scroll animations ------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .card:hover, .btn:hover, .gallery-item:hover .gi-art { transform: none; }
  * { animation-duration: .001ms !important; }
}

/* Editor-only note (never shown in production UI) */
.editor-note { display: none !important; }
