/* =====================================================================
   LOCKSMITH MOUNTAIN VIEW — Silicon Valley Tech Dark Theme
   Palette: Near-black + Sky Blue + Soft Indigo + Slate
   Font: Inter only (no serifs, no Fraunces, no Urbanist)
   Version: 20260526-dark
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === TOKENS ========================================================= */
:root {
  /* Base surfaces */
  --bg:           #0d1117;
  --bg-alt:       #111827;
  --card:         #1e293b;
  --card-hover:   #263347;
  --border:       rgba(148,163,184,0.10);
  --border-bright:rgba(56,189,248,0.30);

  /* Brand */
  --cyan:         #38bdf8;
  --cyan-dark:    #0ea5e9;
  --cyan-glow:    rgba(56,189,248,0.18);
  --indigo:       #818cf8;
  --indigo-dim:   rgba(129,140,248,0.15);

  /* Text */
  --text:         #f1f5f9;
  --text-muted:   #94a3b8;
  --text-dim:     #64748b;
  --white:        #ffffff;

  /* Semantic */
  --green:        #4ade80;
  --yellow:       #fbbf24;
  --red:          #f87171;
  --red-bg:       rgba(248,113,113,0.10);

  /* Font */
  --font:         'Inter', system-ui, -apple-system, sans-serif;

  /* Shape */
  --radius:       6px;
  --radius-lg:    12px;
  --radius-xl:    18px;
  --radius-full:  9999px;

  /* Shadow */
  --shadow:       0 1px 6px rgba(0,0,0,.35);
  --shadow-md:    0 4px 20px rgba(0,0,0,.45);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.55);
  --glow-cyan:    0 0 24px rgba(56,189,248,0.18);

  /* Misc */
  --ease:         cubic-bezier(.22,.61,.36,1);
  --section-pad:  88px 0;
}

/* === RESET ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--cyan); text-decoration: none; transition: color .15s; }
a:hover { color: #7dd3fc; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); line-height: 1.15; color: var(--text); }
ul, ol { padding-left: 1.4em; }

/* === LAYOUT ========================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.section { padding: var(--section-pad); }
.section--dark  { background: var(--bg); }
.section--alt   { background: var(--bg-alt); }
.section--card  { background: var(--card); }

/* Dark section overrides — prevent global element rules bleeding in */
.section--dark  h1,.section--dark  h2,.section--dark  h3,.section--dark  h4,
.section--alt   h1,.section--alt   h2,.section--alt   h3,.section--alt   h4,
.section--card  h1,.section--card  h2,.section--card  h3 { color: var(--text); }
.section--dark  p,.section--dark  li,.section--dark  span,
.section--alt   p,.section--alt   li,.section--alt   span,
.section--card  p,.section--card  li,.section--card  span { color: var(--text-muted); }

/* === TYPOGRAPHY ===================================================== */
.section-label {
  display: inline-block;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.section-lead--center { text-align: center; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* === BUTTONS ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: #0d1117;
  border-color: var(--cyan);
}
.btn-primary:hover {
  background: #7dd3fc;
  border-color: #7dd3fc;
  color: #0d1117;
  box-shadow: 0 6px 20px rgba(56,189,248,.30);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border-color: rgba(56,189,248,.4);
}
.btn-outline:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-ghost {
  background: rgba(248,250,252,.06);
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(248,250,252,.10);
  color: var(--text);
  border-color: rgba(148,163,184,.3);
}

/* === HEADER ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo-icon {
  width: 32px; height: 32px;
  background: var(--cyan);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #0d1117;
  flex-shrink: 0;
}
.site-header__logo-text {
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.site-header__logo-text span {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.site-header__nav { display: flex; align-items: center; gap: 2px; }
.site-header__nav a {
  font-family: var(--font);
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all .15s;
  position: relative;
}
.site-header__nav a:hover {
  color: var(--text);
  background: rgba(248,250,252,.05);
}
.site-header__nav a.active {
  color: var(--cyan);
}
.site-header__nav a.active::after {
  content: '';
  position: absolute; bottom: -1px; left: 12px; right: 12px;
  height: 2px; background: var(--cyan); border-radius: 2px 2px 0 0;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
  background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }
.mobile-nav {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: #111827;
  border-bottom: 1px solid var(--border);
  padding: 18px 24px; z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font);
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--cyan); }

/* === HERO — SPLIT GRID ============================================= */
.home-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 660px;
  background: var(--bg);
  overflow: hidden;
}
.home-hero__left {
  display: flex;
  align-items: center;
  padding: 80px 0 80px 24px;
}
.home-hero__left-inner {
  max-width: 600px;
  margin-left: auto;
  padding-right: 60px;
}
.home-hero__location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.home-hero__location-tag svg { color: var(--indigo); }
.home-hero h1 {
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.home-hero h1 em { color: var(--cyan); font-style: normal; }
.home-hero__lead {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}
.home-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.home-hero__stats {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border-bright);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
}
.stat-pill svg { color: var(--cyan); }
.home-hero__right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.home-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.home-hero__right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(270deg, rgba(13,17,23,0) 60%, rgba(13,17,23,0.35) 100%);
  z-index: 1;
}

/* === PAGE HERO ====================================================== */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: var(--bg-alt);
  overflow: hidden;
}
.page-hero--tall { min-height: 440px; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,.35) 0%, rgba(13,17,23,.70) 60%, rgba(13,17,23,.88) 100%);
  z-index: 1;
}
.page-hero__content { position: relative; z-index: 2; padding: 60px 0 52px; }
.page-hero__breadcrumb {
  font-family: var(--font);
  font-size: .76rem;
  color: rgba(241,245,249,.5);
  margin-bottom: 12px;
}
.page-hero__breadcrumb a { color: var(--cyan); }
.page-hero h1 { color: var(--text); font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em; }
.page-hero__lead { color: rgba(241,245,249,.75); font-size: .97rem; max-width: 560px; }

/* === TRUST STRIP ==================================================== */
.trust-strip {
  background: var(--bg-alt);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s;
}
.trust-chip:hover { border-color: var(--border-bright); }
.trust-chip__icon {
  width: 40px; height: 40px;
  background: var(--cyan-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.trust-chip__label {
  font-family: var(--font);
  font-size: .86rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.trust-chip__sub {
  font-size: .77rem;
  color: var(--text-dim);
  line-height: 1.3;
}

/* === SERVICE CARDS (DARK) =========================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.svc-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}
.svc-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); display: block; }
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--card);
  color: var(--cyan);
  font-family: var(--font);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-full);
  border: 1px solid var(--border-bright);
}
.svc-card__body { padding: 24px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.svc-card__service-label {
  font-family: var(--font);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.svc-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 9px; }
.svc-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; flex: 1; margin-bottom: 16px; }
.svc-card__link {
  font-family: var(--font); font-size: .84rem; font-weight: 700;
  color: var(--cyan);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .15s;
}
.svc-card__link:hover { gap: 10px; color: #7dd3fc; }

/* === FEATURE ROW — BSIS VERIFY ====================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-row__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.feature-row__content h2 { color: var(--text); margin-bottom: 14px; }
.feature-row__content p { color: var(--text-muted); margin-bottom: 16px; font-size: .95rem; }

/* Checklist two-column inside feature row */
.feature-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 20px 0;
}
.feature-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
}
.feature-checklist__item svg { color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.feature-callout {
  background: var(--card);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin: 18px 0;
}
.feature-callout p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* === DEPTH ITEMS — NUMBERED ========================================= */
.depth-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.depth-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}
.depth-item:last-child { border-right: none; }
.depth-item__num {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
  opacity: .25;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}
.depth-item h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 14px; }
.depth-item ul { list-style: none; padding: 0; }
.depth-item ul li {
  color: var(--text-muted);
  font-size: .86rem;
  padding: 5px 0;
  display: flex; align-items: flex-start; gap: 9px;
  border-bottom: 1px solid var(--border);
}
.depth-item ul li:last-child { border-bottom: none; }
.depth-item ul li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  opacity: .6;
}

/* === COST TABLE ===================================================== */
.scorecard-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-alt);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.scorecard-table thead th {
  background: var(--card);
  color: var(--cyan);
  font-family: var(--font);
  font-weight: 700; font-size: .76rem;
  padding: 14px 18px; text-align: left;
  letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.scorecard-table tbody tr { border-bottom: 1px solid var(--border); }
.scorecard-table tbody tr:nth-child(odd) { background: var(--card); }
.scorecard-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.scorecard-table tbody tr:hover { background: rgba(56,189,248,.04); }
.scorecard-table tbody tr:last-child { border-bottom: none; }
.scorecard-table td { padding: 13px 18px; font-size: .9rem; color: var(--text-muted); }
.scorecard-table td:first-child { font-weight: 600; color: var(--text); }
.cost-pill {
  display: inline-block;
  font-family: var(--font); font-size: .74rem; font-weight: 700;
  padding: 3px 10px; border-radius: var(--radius-full);
}
.cost-pill--green { background: rgba(74,222,128,.12); color: var(--green); border: 1px solid rgba(74,222,128,.25); }
.cost-pill--yellow { background: rgba(251,191,36,.12); color: var(--yellow); border: 1px solid rgba(251,191,36,.25); }
.cost-pill--red { background: rgba(248,113,113,.12); color: var(--red); border: 1px solid rgba(248,113,113,.25); }

/* === STEPS — HORIZONTAL TIMELINE ==================================== */
.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-bottom: 0;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0, var(--cyan) 6px, transparent 6px, transparent 14px);
  opacity: .35;
  z-index: 0;
}
.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.step-node__circle {
  width: 48px; height: 48px;
  background: var(--card);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
  font-size: 1rem; font-weight: 900;
  color: var(--cyan);
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px rgba(56,189,248,.06);
}
.step-node h3 { font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.step-node p { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

/* Red flags below steps */
.flag-section {
  margin-top: 52px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--red);
  padding: 28px 32px;
}
.flag-section__title {
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.flag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.flag-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--text-muted);
}
.flag-item__dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* === TIMELINE — SERVICE CALL ======================================== */
.timeline-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.timeline-section--photo-left { }
.timeline-section__media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.timeline-section__media img { width: 100%; object-fit: cover; display: block; }
.timeline-steps { list-style: none; padding: 0; }
.timeline-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-step:last-child { border-bottom: none; }
.timeline-step__num {
  width: 40px; height: 40px;
  background: var(--card);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font); font-size: .95rem; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.timeline-step__body h4 { font-size: .93rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.timeline-step__body p { font-size: .84rem; color: var(--text-muted); line-height: 1.55; }

/* === COMPARE — DARK WITH VS DIVIDER ================================= */
.compare-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-stretch: stretch;
}
.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-card--smart { border-color: rgba(56,189,248,.25); }
.compare-card__head { padding: 22px 24px 16px; border-bottom: 1px solid var(--border); }
.compare-card__head h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.compare-card__head p { font-size: .84rem; color: var(--text-muted); }
.compare-card__body { padding: 18px 24px 22px; }
.compare-list { list-style: none; padding: 0; }
.compare-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0; font-size: .87rem;
  border-bottom: 1px solid var(--border);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list__icon { font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.compare-list__icon--pro { color: var(--green); }
.compare-list__icon--con { color: var(--red); }
.compare-list li span.text { color: var(--text-muted); }
.compare-verdict {
  background: rgba(56,189,248,.06);
  border-radius: var(--radius);
  padding: 10px 14px; margin-top: 14px;
  font-family: var(--font); font-size: .83rem; font-weight: 700;
  color: var(--cyan);
  border: 1px solid rgba(56,189,248,.2);
}
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.vs-divider__text {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dim);
  letter-spacing: .04em;
}

/* === GALLERY — CSS MASONRY ========================================== */
.gallery-masonry {
  columns: 3;
  column-gap: 14px;
}
.gallery-masonry__item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry__item img {
  width: 100%; display: block;
  transition: transform .5s var(--ease);
}
.gallery-masonry__item:hover img { transform: scale(1.04); }
.gallery-masonry__item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,17,23,0);
  transition: background .3s;
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.gallery-masonry__item:hover::after {
  background: rgba(56,189,248,.06);
  box-shadow: inset 0 0 0 2px rgba(56,189,248,.3);
}

/* === REVIEWS — HORIZONTAL SCROLL ==================================== */
.review-scroll-container {
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--card) transparent;
}
.review-scroll-container::-webkit-scrollbar { height: 6px; }
.review-scroll-container::-webkit-scrollbar-track { background: transparent; }
.review-scroll-container::-webkit-scrollbar-thumb { background: var(--card); border-radius: 3px; }
.review-row {
  display: flex;
  gap: 20px;
  width: max-content;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  width: 380px;
  flex-shrink: 0;
  transition: border-color .2s;
}
.review-card:hover { border-color: var(--border-bright); }
.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-card__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(56,189,248,.25);
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
.review-card__name { font-family: var(--font); font-weight: 700; font-size: .9rem; color: var(--text); }
.review-card__location { font-size: .76rem; color: var(--text-dim); }
.review-card__quote {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.65;
  font-style: italic;
}

/* === NEIGHBORHOODS — TAG CLOUD ====================================== */
.neighborhood-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.neighborhood-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .15s;
}
.neighborhood-tag:hover {
  border-color: var(--border-bright);
  color: var(--cyan);
  background: var(--cyan-glow);
}
.neighborhood-tag svg { color: var(--cyan); flex-shrink: 0; opacity: .7; }
.neighborhood-group { margin-bottom: 28px; }
.neighborhood-group__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 12px;
}

/* === FAQ ============================================================ */
.faq-list { list-style: none; padding: 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--card);
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--border-bright); }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); color: var(--cyan); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  cursor: pointer;
  font-family: var(--font);
  font-size: .93rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--cyan); border-bottom: 1px solid var(--border); }
.faq-item__chevron {
  width: 18px; height: 18px;
  color: var(--text-dim);
  transition: transform .25s var(--ease), color .2s;
  flex-shrink: 0;
}
.faq-item__body {
  padding: 16px 22px 20px;
  color: var(--text-muted);
  font-size: .91rem;
  line-height: 1.7;
}

/* === CTA BAND ======================================================= */
.cta-band {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(56,189,248,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(129,140,248,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band h2 { color: var(--text); font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; position: relative; z-index: 1; letter-spacing: -.02em; }
.cta-band p { color: var(--text-muted); font-size: .97rem; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-band .btn-group { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* === METHODOLOGY STRIP ============================================== */
.methodology-strip { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.method-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  font-family: var(--font); font-size: .8rem; font-weight: 600;
  color: var(--text-muted);
}
.method-chip svg { color: var(--cyan); }

/* === CONTACT ======================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-detail__icon {
  width: 38px; height: 38px;
  background: var(--cyan-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); flex-shrink: 0;
}
.contact-detail h4 { font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-detail p, .contact-detail a { font-size: .9rem; color: var(--text-muted); }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--font); font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font); font-size: .9rem;
  color: var(--text);
  background: var(--bg-alt);
  transition: border-color .15s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56,189,248,.10);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-field { display: none; }

/* === FOOTER ========================================================= */
.site-footer { background: var(--bg-alt); padding: 60px 0 0; border-top: 1px solid var(--border); }
.site-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: .87rem; color: var(--text-dim); line-height: 1.65; }
.footer-brand__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand__logo-icon { width: 30px; height: 30px; background: var(--cyan); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: #0d1117; }
.footer-brand__logo-text { font-family: var(--font); font-size: .92rem; font-weight: 800; color: var(--text); }
.footer-brand__designed { font-size: .74rem; color: var(--text-dim); margin-top: 14px; }
.footer-col h4 {
  font-family: var(--font); font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a, .footer-col ul li span { font-size: .84rem; color: var(--text-dim); transition: color .15s; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-hours ul { list-style: none; padding: 0; }
.footer-hours ul li { font-size: .84rem; color: var(--text-dim); margin-bottom: 5px; }
.footer-bottom {
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: .78rem; color: var(--text-dim); transition: color .15s; }
.footer-legal a:hover { color: var(--cyan); }
.footer-declaration {
  background: rgba(56,189,248,.03);
  border: 1px solid rgba(56,189,248,.08);
  border-radius: var(--radius);
  padding: 12px 16px; margin-top: 16px;
}
.footer-declaration h4 {
  font-family: var(--font); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 6px;
}
.footer-declaration p { font-size: .78rem; color: var(--text-dim); line-height: 1.6; }

/* === DIRECT ANSWER ================================================== */
.direct-answer {
  background: var(--card);
  border-left: 3px solid var(--cyan);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 24px;
}
.direct-answer p { color: var(--text-muted); font-weight: 500; font-size: .95rem; margin: 0; }

/* === PROSE ========================================================== */
.prose { max-width: 740px; }
.prose h2 { font-size: 1.4rem; margin: 30px 0 11px; color: var(--text); }
.prose h3 { font-size: 1.05rem; margin: 22px 0 9px; color: var(--text); }
.prose p { margin-bottom: 14px; color: var(--text-muted); }
.prose ul, .prose ol { margin-bottom: 14px; color: var(--text-muted); }
.prose li { margin-bottom: 7px; }

/* === ANIMATIONS ===================================================== */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .fade-up.visible { opacity: 1; transform: none; }
}

/* === RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .depth-section { grid-template-columns: 1fr; }
  .depth-item { border-right: none; border-bottom: 1px solid var(--border); }
  .depth-item:last-child { border-bottom: none; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .steps-timeline { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .steps-timeline::before { display: none; }
}
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero__left { padding: 60px 24px 40px; }
  .home-hero__left-inner { max-width: 100%; padding-right: 0; }
  .home-hero__right { display: none; }
  .compare-wrapper { grid-template-columns: 1fr; }
  .vs-divider { padding: 16px 0; }
}
@media (max-width: 768px) {
  :root { --section-pad: 52px 0; }
  .site-header__nav, .site-header__cta .btn { display: none; }
  .hamburger { display: flex; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row--reverse { direction: ltr; }
  .services-grid, .compare-grid { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .timeline-section { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .flag-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .feature-checklist { grid-template-columns: 1fr; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-timeline { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .home-hero__ctas { flex-direction: column; }
  .review-card { width: 300px; }
}

/* === ENHANCED REVIEW CARDS v2 (May 2026) =========================== */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.review-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s cubic-bezier(.22,.61,.36,1);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.review-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.review-card__stars { color: #FFC107; font-size: 1.3rem; letter-spacing: 3px; line-height: 1; }
.review-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 4px 11px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: .04em; white-space: nowrap;
}
.review-card__quote {
  color: rgba(255,255,255,.9);
  font-size: 1rem; line-height: 1.72; font-style: italic; flex: 1;
  margin-bottom: 24px;
  border-left: 3px solid var(--copper-light,#d4964d);
  padding-left: 18px;
}
.review-card__author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
}
.review-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--copper-light,#d4964d);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  background: rgba(255,255,255,.1);
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white,#fff); line-height: 1.2; }
.review-card__meta, .review-card__location { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 3px; }

/* === MAP + NEIGHBORHOODS LAYOUT ==================================== */
.areas-map-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: start; margin-bottom: 32px;
}
.areas-map-iframe {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border: 1px solid var(--border,#d8eaee);
  line-height: 0;
}
.areas-map-iframe iframe { display: block; border: 0; width: 100%; min-height: 400px; }

@media (max-width: 900px) {
  .areas-map-layout { grid-template-columns: 1fr; }
  .areas-map-iframe iframe { min-height: 320px; }
}
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 20px; }
  .review-card__quote { font-size: .95rem; }
}
