/* ShiftVault — navy #0f2744 + amber #f0a202 (live polish) */
:root {
  --navy: #0f2744;
  --navy2: #163a63;
  --navy-deep: #0a1a2e;
  --amber: #f0a202;
  --amber2: #ffb703;
  --amber-soft: #fff7e6;
  --bg: #f6f8fb;
  --card: #fff;
  --ink: #0f2744;
  --muted: #5b6b7c;
  --line: #e6ebf2;
  --ok: #0f8a5f;
  --wa: #25d366;
  --radius: 14px;
  --shadow: 0 12px 36px rgba(15,39,68,.12);
  --shadow-lg: 0 18px 48px rgba(15,39,68,.16);
  --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-h: 96px;
  --focus: 0 0 0 3px rgba(240,162,2,.45);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.has-mobile-cta { padding-bottom: 72px; }
img, svg { max-width: 100%; display: block; }
svg.icon { max-width: none !important; flex-shrink: 0; vertical-align: middle; }
a { color: var(--navy2); text-decoration: none; }
a:hover { color: var(--amber); }
.wrap, .container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { max-width: 720px; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--amber); color: var(--navy);
  padding: .5rem 1rem; z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: .5rem; top: .5rem; }

/* Inline icons */
.icon {
  width: 1.1em; height: 1.1em; flex-shrink: 0;
  display: inline-block; vertical-align: middle;
}
.btn .icon { width: 16px; height: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border: 0; cursor: pointer; border-radius: 12px; padding: 12px 18px;
  font-weight: 700; font-size: 14px; font-family: inherit; line-height: 1.2;
  text-decoration: none; transition: background .18s ease, transform .12s ease,
    box-shadow .18s ease, border-color .18s ease, color .18s ease;
  box-shadow: 0 1px 0 rgba(15,39,68,.06);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn:focus-visible { outline: none; box-shadow: var(--focus); }
.btn:disabled, .btn.is-sending, .btn.is-success {
  cursor: default; transform: none; opacity: 1;
}
.btn-sm { padding: 8px 12px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-primary, .btn-amber {
  background: linear-gradient(180deg, var(--amber2) 0%, var(--amber) 100%);
  color: #1a1200;
  box-shadow: 0 6px 16px rgba(240,162,2,.28);
}
.btn-primary:hover, .btn-amber:hover { background: var(--amber2); color: #1a1200; }
.btn-dark, .btn-navy {
  background: var(--navy); color: #fff;
  box-shadow: 0 6px 16px rgba(15,39,68,.22);
}
.btn-dark:hover, .btn-navy:hover { background: var(--navy2); color: #fff; }
.btn-ghost {
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--navy); background: var(--amber-soft); }
.btn-outline {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-call {
  background: #fff; border: 1px solid var(--line); color: var(--navy);
}
.btn-call:hover { border-color: var(--navy2); color: var(--navy); background: #eef4ff; }
.btn-wa {
  background: #e8f8ef; border: 1px solid #b8e6c9; color: #0b6b3a;
}
.btn-wa:hover { background: #d7f3e3; color: #0b6b3a; border-color: #8fd4ad; }
.btn-wa .icon { color: var(--wa); }

/* Submit spinner */
.btn-spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(26,18,0,.22); border-top-color: #1a1200;
  animation: sv-spin .7s linear infinite; flex-shrink: 0;
}
@keyframes sv-spin { to { transform: rotate(360deg); } }
.btn.is-sending { background: #e8c46a; box-shadow: none; }
.btn.is-success { background: var(--ok); color: #fff; box-shadow: none; }
.form-wa-fallback {
  margin-top: 10px; padding: 10px 12px; border-radius: 10px;
  background: #e8f8ef; border: 1px solid #b8e6c9; color: #0b6b3a;
  font-size: 13px; font-weight: 600;
}
.form-wa-fallback a { color: #0b6b3a; text-decoration: underline; }
.form-wa-fallback[hidden] { display: none !important; }

/* Header */
.site-header, header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,39,68,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240,162,2,.28);
}
.nav, .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 16px; padding: 0;
}
/* SV_LOGO_IMG_20260915 — transparent on navy header/footer */
.logo {
  display: flex; align-items: center; gap: 0;
  font-weight: 800; font-size: 20px; color: #fff; text-decoration: none;
  background: transparent; padding: 0; border-radius: 0;
}
.logo:hover { color: #fff; }
.logo picture {
  display: block; line-height: 0; background: transparent;
}
.logo img, .logo svg {
  display: block; height: 72px; width: auto;
  max-width: min(340px, 78vw) !important;
  object-fit: contain; background: transparent; border: 0;
  filter: none;
}
@media (min-width: 768px) {
  .logo img, .logo svg { height: 80px; max-width: 380px !important; }
}
.site-footer .logo img, .site-footer .logo svg {
  height: 56px; max-width: min(300px, 85vw) !important;
  filter: none;
}
.mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), var(--amber2));
  color: var(--navy); display: grid; place-items: center; font-weight: 900; font-size: 13px;
}
.nav-desktop { display: none; align-items: center; gap: 20px; }
.nav-desktop a { color: rgba(255,255,255,.88); font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-desktop a:hover { color: var(--amber); }
.nav-desktop .btn { color: #1a1200; }
.nav-desktop .btn:hover { color: #1a1200; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: .5rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; }
.nav-drawer {
  display: flex; flex-direction: column; gap: .75rem;
  padding: .75rem 0 1.25rem; background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-drawer[hidden] { display: none !important; }
.nav-drawer a { color: #fff; font-weight: 600; padding: .35rem 0; }
.nav-drawer .btn { margin-top: .35rem; color: #1a1200; max-width: 220px; }
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-drawer { display: none !important; }
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-soft); color: #8a5a00; border: 1px solid #ffe2a8;
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600;
}
.badge-dark {
  background: rgba(240,162,2,.15); border-color: rgba(240,162,2,.35); color: #F5D48A;
}

/* Hero variants */
.hero-home {
  padding: 48px 0 28px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center;
}
.hero-page {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy2) 100%);
  color: #fff; padding: 2.5rem 0 2.75rem; position: relative;
}
.hero-page::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.hero-page h1 { color: #fff; margin: 10px 0 12px; font-size: clamp(28px, 4.5vw, 40px); line-height: 1.15; }
.hero-page .lead { color: rgba(255,255,255,.88); margin: 0 0 18px; max-width: 52ch; font-size: 17px; }
.eyebrow {
  margin: 0; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--amber); font-weight: 700;
}
h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.08; margin: 14px 0; color: var(--navy); }
.lead, .hero-home > div > p { color: var(--muted); font-size: 17px; line-height: 1.55; margin: 0 0 22px; max-width: 48ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.trust-inline {
  display: flex; flex-wrap: wrap; gap: 14px 22px; color: var(--muted); font-size: 13px; font-weight: 600;
}
.trust-inline span { display: inline-flex; align-items: center; gap: 6px; }
.trust-inline .icon { width: 14px; height: 14px; color: var(--ok); }
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 10px;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-light { color: var(--muted); margin: 18px 0 0; }
.breadcrumb-light a { color: var(--navy2); }

/* Quote panel */
.panel {
  background: linear-gradient(160deg, var(--navy), var(--navy2));
  color: #fff; border-radius: 24px; padding: 22px; box-shadow: 0 24px 50px rgba(15,39,68,.25);
}
.panel h2, .panel h3 { margin: 0 0 8px; font-size: 18px; color: #fff; }
.panel > p { margin: 0 0 14px; color: #c9d7ea; font-size: 13px; }
.form { display: grid; gap: 10px; }
.form input, .form select, .form textarea {
  width: 100%; border: 0; border-radius: 12px; padding: 12px 14px; font-size: 14px;
  font-family: inherit; background: #fff; color: var(--navy);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; box-shadow: var(--focus);
}
.form textarea { min-height: 100px; resize: vertical; }
.form .btn { width: 100%; padding: 13px; }
.note { margin-top: 10px; font-size: 11px; color: #9db0c9; }
.note a { color: #f5d48a; }
.form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; box-shadow: var(--shadow);
}
.form-card .form input, .form-card .form select, .form-card .form textarea {
  border: 1px solid var(--line);
}
.form-card .form input:focus, .form-card .form select:focus, .form-card .form textarea:focus {
  border-color: rgba(240,162,2,.65);
}

/* Sections */
.section { padding: 28px 0 46px; }
.section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section h2 { margin: 0 0 8px; font-size: 28px; color: var(--navy); }
.section .sub, .section-head p { color: var(--muted); margin: 0 0 22px; }
.section-head { margin-bottom: 1.5rem; max-width: 40rem; }
.prose { max-width: 68ch; }
.prose p { color: var(--muted); margin: 0 0 1rem; }
.prose ul, .prose ol { color: var(--muted); margin: 0 0 1rem; padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose h2 { margin: 1.75rem 0 .75rem; font-size: 22px; }
.prose h3 { margin: 1.35rem 0 .5rem; font-size: 18px; color: var(--navy); }

.strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 10px 0 34px;
}
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px;
  box-shadow: 0 4px 14px rgba(15,39,68,.04);
}
.stat b { display: block; font-size: 20px; margin-bottom: 4px; color: var(--navy); }
.stat span { color: var(--muted); font-size: 13px; }

.grid, .cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 18px;
  min-height: 150px; transition: border-color .15s, box-shadow .15s, transform .15s;
  box-shadow: 0 4px 16px rgba(15,39,68,.05);
}
a.card:hover {
  border-color: rgba(240,162,2,.55); box-shadow: var(--shadow); color: inherit;
  transform: translateY(-2px);
}
.ico {
  position: relative;
  width: 46px; height: 46px; border-radius: 50%; display: block; overflow: hidden; box-sizing: border-box;
  background: linear-gradient(145deg, #eef4ff, #dde8f8); margin-bottom: 12px; font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(15,39,68,.06);
  color: var(--navy);
}
.ico .icon { width: 22px; height: 22px; }
.card h3 { margin: 0 0 8px; font-size: 16px; color: var(--navy); }
.card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.card .more { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--navy2); }
a.card:hover .more { color: #8a5a00; }

.cities { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 12px; font-size: 13px; font-weight: 600; color: var(--navy2);
  text-decoration: none;
}
a.chip:hover { border-color: var(--amber); color: var(--navy); background: var(--amber-soft); }

.why .card { min-height: auto; }
.steps { counter-reset: step; display: grid; gap: 12px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px 16px 64px;
  position: relative; box-shadow: 0 4px 14px rgba(15,39,68,.04);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 16px; top: 16px;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--amber); color: var(--navy); font-weight: 800;
  display: grid; place-items: center; font-size: 14px;
}
.step h3 { margin: 0 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 800px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 0;
  overflow: hidden; box-shadow: 0 2px 10px rgba(15,39,68,.04);
}
.faq-item details { padding: 0; }
.faq-item summary {
  cursor: pointer; font-weight: 700; color: var(--navy); padding: 16px 18px;
  list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--amber); font-size: 20px; font-weight: 700; }
.faq-item details[open] summary::after { content: "−"; }
.faq-item .ans { padding: 0 18px 16px; color: var(--muted); font-size: 14px; margin: 0; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff; padding: 1.75rem 0; margin-top: 10px;
}
.cta-strip-inner {
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
}
@media (min-width: 800px) {
  .cta-strip-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-strip h2 { margin: 0 0 6px; color: #fff; font-size: 22px; }
.cta-strip p { margin: 0; color: #c9d7ea; font-size: 14px; }
.cta-strip .cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Footer */
.site-footer, footer.site-footer {
  background: var(--navy); color: #c9d7ea; padding: 36px 0 28px; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px;
}
.site-footer .logo { color: #fff; margin-bottom: 10px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #c9d7ea; font-size: 14px; }
.site-footer a:hover { color: var(--amber); }
.footer-nap { margin: 12px 0 0; font-size: 13px; line-height: 1.55; }
.footer-nap .nap-address { display: block; margin-top: 6px; max-width: 36ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13px;
}

.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.table-wrap { overflow-x: auto; }
table.simple {
  width: 100%; border-collapse: collapse; background: var(--card);
  border: 1px solid var(--line); border-radius: 12px; font-size: 14px;
}
table.simple th, table.simple td {
  text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line);
}
table.simple th { background: #eef4ff; color: var(--navy); font-weight: 700; }
table.simple tr:last-child td { border-bottom: 0; }

/* Sticky mobile CTA bar */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0));
  box-shadow: 0 -8px 24px rgba(15,39,68,.1);
}
.mobile-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 8px;
  width: min(1120px, 100%); margin: 0 auto;
}
.mobile-cta .btn {
  padding: 11px 8px; font-size: 12px; border-radius: 10px;
  box-shadow: none;
}
.mobile-cta .btn:hover { transform: none; }

@media (max-width: 900px) {
  .hero-home, .grid, .cards-grid, .strip, .grid-3, .grid-2, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .steps .step { padding-left: 64px; }
  .mobile-cta { display: block; }
  body.has-mobile-cta { padding-bottom: 76px; }
}
@media (min-width: 901px) {
  .mobile-cta { display: none !important; }
}

/* Gallery — masonry-ish grid + lightbox */
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1c31;
  border: 1px solid rgba(15, 39, 68, 0.55);
  box-shadow: 0 0 0 1px rgba(240, 162, 2, 0.18), 0 10px 28px rgba(10, 26, 46, 0.12);
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item:nth-child(3n) { aspect-ratio: 3/4; }
@media (min-width: 768px) {
  .gallery-item:nth-child(5n) { aspect-ratio: 1/1; }
  .gallery-item:nth-child(7n) { aspect-ratio: 3/4; }
}
.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .3s ease;
}
.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.045);
  filter: brightness(1.05);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(15, 39, 68, 0.45));
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted, #6b7c93);
}
.gallery-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 8px;
}
.gallery-head .sub { margin-bottom: 0; max-width: 52ch; }
.gallery-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy, #0f2744);
  text-decoration: none;
  border-bottom: 2px solid var(--amber, #f0a202);
  padding-bottom: 2px;
}
.gallery-more:hover { color: var(--navy2, #163a63); }

/* Lightbox */
body.sv-lightbox-open { overflow: hidden; }
.sv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 26, 46, 0.92);
  display: grid;
  place-items: center;
  padding: 56px 48px 72px;
}
.sv-lightbox[hidden] { display: none !important; }
.sv-lightbox-img {
  max-width: min(960px, 100%);
  max-height: min(80vh, 100%);
  border-radius: 12px;
  border: 2px solid rgba(240, 162, 2, 0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  object-fit: contain;
  background: #0b1c31;
}
.sv-lightbox-cap {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  text-align: center;
  color: #dce6f2;
  font-size: 14px;
  margin: 0;
  padding: 0 16px;
}
.sv-lightbox-close,
.sv-lightbox-prev,
.sv-lightbox-next {
  position: absolute;
  background: rgba(240, 162, 2, 0.95);
  color: #0f2744;
  border: 0;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}
.sv-lightbox-close { top: 16px; right: 16px; font-size: 28px; }
.sv-lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.sv-lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .sv-lightbox { padding: 64px 12px 64px; }
  .sv-lightbox-prev, .sv-lightbox-next { width: 36px; height: 36px; font-size: 18px; }
}


/* ===== Home redesign 20260915-home1 (additive; keeps shared classes) ===== */
.hero-home-v2 {
  padding: 0;
  display: block;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(240,162,2,.12), transparent 55%),
    linear-gradient(180deg, #eef3f9 0%, var(--bg) 55%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-home-v2-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0 40px;
}
.hero-home-v2 .hero-copy h1 {
  font-size: clamp(30px, 4.8vw, 46px);
  letter-spacing: -0.02em;
}
.hero-home-v2 .hero-intro {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 48ch;
}
.hero-home-v2 .badge {
  background: linear-gradient(180deg, #fff 0%, var(--amber-soft) 100%);
  border-color: #f0c96a;
  box-shadow: 0 2px 8px rgba(240,162,2,.15);
}
.hero-home-v2 .panel-quote {
  border: 1px solid rgba(240,162,2,.35);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.panel-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: #fff;
  font-weight: 800;
}
/* H2 in panel should not inherit section h2 size */
.panel h2.panel-title { font-size: 18px; color: #fff; margin: 0 0 8px; }

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: none;
}
.process-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 18px 18px;
  position: relative;
  box-shadow: 0 6px 20px rgba(15,39,68,.06);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.process-step:hover {
  border-color: rgba(240,162,2,.5);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.process-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--amber2), var(--amber));
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(240,162,2,.35);
}
.process-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--navy);
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.grid-services-5 {
  grid-template-columns: repeat(5, 1fr);
}
.card-service {
  min-height: 180px;
  border-top: 3px solid transparent;
}
a.card-service:hover {
  border-top-color: var(--amber);
  border-color: rgba(240,162,2,.45);
}
.card-why {
  border-left: 3px solid var(--amber);
  min-height: auto;
  background: linear-gradient(135deg, #fff 0%, #fffbf3 100%);
}

.geo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.chip-static {
  cursor: default;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
}
.chip-static:hover {
  border-color: rgba(240,162,2,.55);
  background: var(--amber-soft);
  color: var(--navy);
}
.chip-primary {
  background: var(--amber-soft);
  border-color: #ffe2a8;
  color: var(--navy);
  font-weight: 700;
}
.geo-ncr-label {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 600;
}
.section-more-links {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
}

#faq .faq-list { max-width: 820px; }
#faq .faq-item summary { font-size: 15px; }
#faq .faq-item[open],
#faq .faq-item:has(details[open]) {
  border-color: rgba(240,162,2,.45);
  box-shadow: 0 6px 18px rgba(15,39,68,.08);
}

@media (max-width: 1100px) {
  .grid-services-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-home-v2-inner {
    grid-template-columns: 1fr;
    padding: 32px 0 28px;
    gap: 24px;
  }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .grid-services-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .grid-services-5 { grid-template-columns: 1fr; }
}

/* ===== Home polish 20260915-home2 (Porter/NoBroker-inspired; ShiftVault brand) ===== */
.hero-home-v2-inner {
  padding: 52px 0 44px;
  gap: 40px;
}
.hero-home-v2 .badge-hero {
  background: linear-gradient(180deg, #fff 0%, var(--amber-soft) 100%);
  border: 1px solid #f0c96a;
  box-shadow: 0 3px 12px rgba(240,162,2,.18);
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: .02em;
}
.hero-home-v2 .hero-copy h1 {
  margin: 12px 0 10px;
  line-height: 1.1;
}
.hero-home-v2 .hero-intro {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 46ch;
}
.hero-home-v2 .trust-inline {
  gap: 10px 16px;
}
.hero-home-v2 .trust-inline span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(15,39,68,.04);
}

/* Quote panel premium */
.panel-quote-v2 {
  border-radius: 28px;
  padding: 26px 24px 22px;
  box-shadow:
    0 28px 60px rgba(15,39,68,.28),
    0 0 0 1px rgba(240,162,2,.28),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.panel-quote-v2 .panel-title {
  font-size: 19px;
  letter-spacing: -0.01em;
}
.panel-quote-v2 > p {
  margin-bottom: 16px;
  font-size: 13.5px;
  line-height: 1.45;
}
.form-quote {
  gap: 12px;
}
.form-quote .field {
  display: grid;
  gap: 5px;
  margin: 0;
}
.form-quote .field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #d4e2f5;
}
.form-quote input,
.form-quote select {
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 14.5px;
}
.route-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: end;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 12px 10px 10px;
}
.route-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 42px;
  color: var(--amber);
  font-weight: 800;
  font-size: 18px;
  padding-bottom: 2px;
}
.btn-quote-submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px 18px !important;
  font-size: 15.5px !important;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(240,162,2,.4);
}

/* Assurance strip under hero */
.assurance-strip {
  background: linear-gradient(180deg, #0f2744 0%, #163a63 100%);
  border-bottom: 1px solid rgba(240,162,2,.22);
  padding: 18px 0;
}
.assurance-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.assurance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e8eef7;
  padding: 6px 4px;
}
.assurance-ico {
  flex-shrink: 0;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: block;
  overflow: hidden;
  background: rgba(255,201,51,.18);
  border: 1px solid rgba(255,201,51,.55);
  color: #ffc933;
  box-shadow: 0 0 0 1px rgba(255,201,51,.12) inset;
  box-sizing: border-box;
}
.assurance-ico > svg,
.assurance-ico > .icon {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 22px !important;
  height: 22px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translate(-50%, -50%) !important;
  display: block !important;
  vertical-align: 0 !important;
  color: #ffc933;
  overflow: visible;
}
.assurance-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.3;
}
.assurance-item span {
  display: block;
  font-size: 12px;
  color: #9db0c9;
  line-height: 1.35;
}

/* How it works — NoBroker-like horizontal + connectors */
.section-how { padding-top: 40px; }
.process-steps-v2 {
  gap: 0;
  position: relative;
}
.process-steps-v2 .process-step {
  border-radius: 20px;
  padding: 24px 20px 20px;
  margin: 0 7px;
  text-align: left;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,39,68,.07);
}
.process-steps-v2 .process-step:first-child { margin-left: 0; }
.process-steps-v2 .process-step:last-child { margin-right: 0; }
.process-steps-v2 .process-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 18px;
  margin-bottom: 14px;
}
.process-steps-v2 .process-step h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.process-steps-v2 .process-step p {
  font-size: 13px;
  line-height: 1.5;
}
@media (min-width: 901px) {
  .process-steps-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .process-steps-v2 .process-step {
    position: relative;
  }
  .process-steps-v2 .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 44px;
    right: -14px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(240,162,2,.75), rgba(240,162,2,.15));
    z-index: 1;
  }
}

/* Services equal height + larger icons */
.grid-services-v2 {
  align-items: stretch;
}
.card-service-v2 {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  border-radius: 20px;
  padding: 22px 18px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.card-service-v2 .ico {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: block;
  overflow: hidden;
  background: var(--amber-soft);
  border: 1px solid rgba(240,162,2,.35);
  color: var(--navy);
  box-sizing: border-box;
}
.card-service-v2 .ico > svg,
.card-service-v2 .ico > .icon {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 26px !important;
  height: 26px !important;
  max-width: none !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
  display: block !important;
}
.card-service-v2 .ico .icon { width: 26px; height: 26px; }
.card-service-v2 h3 { font-size: 16.5px; }
.card-service-v2 p { flex: 1; }
.card-service-v2 .more { margin-top: auto; padding-top: 12px; }
a.card-service-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--amber);
}

/* What you get — checklist grid */
.section-inclusions {
  padding: 40px 0 48px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inclusions-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.inclusion-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px 16px 14px;
  box-shadow: 0 4px 14px rgba(15,39,68,.04);
  transition: border-color .15s, box-shadow .15s;
}
.inclusion-item:hover {
  border-color: rgba(240,162,2,.45);
  box-shadow: 0 8px 22px rgba(15,39,68,.08);
}
.inclusion-check,
.inclusion-ico {
  flex-shrink: 0;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: block;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8e8, #ffe8b0);
  border: 1px solid rgba(240,162,2,.4);
  color: var(--navy);
  box-shadow: 0 3px 10px rgba(240,162,2,.22);
  box-sizing: border-box;
}
.inclusion-ico > svg,
.inclusion-ico > .icon,
.inclusion-check > svg,
.inclusion-check > .icon {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 22px !important;
  height: 22px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translate(-50%, -50%) !important;
  display: block !important;
  vertical-align: 0 !important;
  color: var(--navy);
}
.inclusion-ico-wa {
  background: linear-gradient(180deg, #e8fff0, #c8f5d8);
  border-color: rgba(37,211,102,.45);
  color: var(--wa);
}
.inclusion-ico-wa > svg,
.inclusion-ico-wa > .icon {
  color: var(--wa) !important;
  width: 22px !important;
  height: 22px !important;
}
.inclusion-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 3px;
}
.inclusion-item span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* GEO chips polished pills */
.geo-chips-v2 { gap: 10px; }
.chip-pill {
  padding: 10px 16px;
  font-size: 13.5px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15,39,68,.04);
  transition: border-color .15s, box-shadow .15s, background .15s, transform .12s;
}
.chip-pill:hover,
a.chip-pill:hover,
.chip-static.chip-pill:hover {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(240,162,2,.22), 0 4px 12px rgba(15,39,68,.06);
  background: var(--amber-soft);
  color: var(--navy);
  transform: translateY(-1px);
}
.cities-v2 { gap: 10px; }

/* Gallery polish */
.section-gallery-v2 .gallery-item {
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(240,162,2,.2),
    0 14px 36px rgba(10,26,46,.14);
}
.section-gallery-v2 .gallery-note {
  margin-top: 14px;
}

/* FAQ cleaner accordion */
.faq-list-v2 { gap: 12px; }
.faq-list-v2 .faq-item {
  border-radius: 16px;
}
.faq-list-v2 .faq-item summary {
  padding: 18px 20px;
  font-size: 15.5px;
  min-height: 56px;
  gap: 16px;
}
.faq-list-v2 .faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--amber-soft);
  border: 1px solid #ffe2a8;
  color: #8a5a00;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.faq-list-v2 .faq-item details[open] summary::after {
  content: "−";
}
.faq-list-v2 .faq-item .ans {
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.55;
}

/* Whitespace / air */
.section-air,
.section-how,
#cities.section-alt {
  padding-top: 40px;
  padding-bottom: 52px;
}
#cities.section-alt { padding-top: 44px; padding-bottom: 48px; }

@media (max-width: 900px) {
  .assurance-inner { grid-template-columns: 1fr 1fr; gap: 12px 10px; }
  .inclusions-grid { grid-template-columns: 1fr 1fr; }
  .route-fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .route-arrow {
    display: none;
  }
  .hero-home-v2-inner {
    padding: 28px 0 24px;
    gap: 20px;
  }
  .panel-quote-v2 {
    border-radius: 22px;
    padding: 22px 18px 18px;
  }
  .hero-home-v2 .cta-row .btn { flex: 1 1 auto; min-width: 0; }
  .process-steps-v2 .process-step { margin: 0; }
  .process-steps-v2 .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .assurance-inner { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .assurance-strip { padding: 16px 0; }
  .inclusion-item {
    padding: 14px 14px 14px 12px;
    gap: 12px;
    align-items: center;
  }
  .inclusion-ico,
  .inclusion-check {
    width: 42px;
    height: 42px;
  }
  .section-inclusions { padding: 28px 0 36px; }
  .section-inclusions h2 { font-size: 24px; }
  .gallery-note { font-size: 12.5px; margin-top: 12px; }
  .assurance-item { gap: 10px; padding: 4px 0; }
  .hero-home-v2 .hero-copy h1 { font-size: clamp(26px, 7.5vw, 34px); }
  .panel-quote-v2 { padding: 18px 14px 16px; }
  .geo-chips { gap: 8px; }
  .chip-pill { font-size: 12.5px; padding: 8px 12px; }
}
