/* ===========================================================
   PLAYHOUSE MOVING — Core Stylesheet
   Brand: Cobalt blue, deep navy, paper off-white, gold accent
   =========================================================== */

:root {
  --blue:        #524CF2;
  --blue-dark:   #3F39D4;
  --navy:        #0B0D28;
  --navy-2:      #15183A;
  --paper:       #F7F7F8;
  --paper-2:     #E2E2FF;
  --charcoal:    #0B0D28;
  --gold:        #E2E2FF;
  --coral:       #8A82FF;
  --coral-soft:  #B9AEFF;
  --white:       #FFFFFF;
  --gray:        #5C6470;
  --gray-light:  #8A919C;
  --line:        #E5E4EC;

  --maxw: 1180px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(11,13,40,0.12);
  --shadow-sm: 0 6px 20px rgba(11,13,40,0.08);

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

html { overflow-x: hidden; }

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 800;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); font-stretch: condensed; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }

p { margin-bottom: 1rem; }
section p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(30,80,229,.34); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(253,185,19,.4); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost.on-dark:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 19px 38px; font-size: 1.15rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,247,248,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 138px;
}
.brand { display: flex; align-items: center; }
.brand img { display: block; height: 130px; width: auto; }
.footer-wordmark {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
  display: inline-block;
  margin-bottom: 2px;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: var(--navy); font-weight: 600; font-size: 0.96rem; padding: 9px 13px; border-radius: 7px; transition: background .15s; }
.nav-links a:hover { background: var(--paper-2); }

.has-drop { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
  box-shadow: var(--shadow); padding: 8px; min-width: 250px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease; z-index: 50;
  max-height: 70vh; overflow-y: auto;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items:center; gap:9px; padding: 9px 13px; font-size: 0.92rem; border-radius: 7px; }
.drop-ico { color: var(--blue); display:inline-flex; flex:none; }
.dropdown a:hover { background: var(--paper); }
.dropdown .col-label { font-family: var(--font-display); font-weight:700; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.14em; color: var(--gray-light); padding: 10px 13px 4px; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.05rem; white-space: nowrap; }
.nav-phone:hover { color: var(--blue); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; margin: 5px 0; transition: .25s; }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; background: var(--navy); z-index: 200;
  transform: translateX(100%); transition: transform .3s ease;
  padding: 26px; overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .close { position: absolute; top: 22px; right: 22px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.mobile-drawer a { color: #fff; display: block; padding: 13px 0; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-drawer .sub a { font-size: 1rem; font-family: var(--font-body); font-weight: 500; padding: 9px 0 9px 16px; opacity: .85; border: none; }
.mobile-drawer .grp-label { color: var(--gold); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; margin-top: 22px; }
.mobile-drawer .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
}
.hero::before {
  content:""; position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(circle at 80% 20%, rgba(82,76,242,.30), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(82,76,242,.18), transparent 50%);
}
.hero::after {
  content:""; position:absolute; inset:-15%; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 55% 50% at 78% 22%, rgba(82,76,242,.22) 0%, transparent 68%),
    radial-gradient(ellipse 50% 55% at 8% 80%,  rgba(100,90,255,.17) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(138,130,255,.13) 0%, transparent 60%);
  filter: blur(72px);
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; padding-top: 70px; padding-bottom: 70px; }
.hero h1 { color: #fff; line-height: 1.08; }
.hero h1 .hl { color: var(--gold); }
.hero .sub { font-size: 1.2rem; color: rgba(255,255,255,.82); max-width: 38ch; margin: 22px 0 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); }
.hero-trust .t span { font-size: .85rem; color: rgba(255,255,255,.7); }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: auto; max-height: clamp(420px, 68vh, 640px); object-fit: cover; object-position: center 48%; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,.4); display: block; }
.page-hero-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.hero-pills {
  position: absolute; inset: 0; pointer-events: none;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.hero-media .float-pill, .page-hero-img .float-pill {
  position: absolute; pointer-events: auto;
  white-space: nowrap;
  background: rgba(255,255,255,0.95); color: var(--navy);
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  padding: 10px 18px; border-radius: 999px;
  box-shadow: 0 6px 20px rgba(11,13,40,.20);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  will-change: transform;
}
.hero-media .float-pill:nth-child(1), .page-hero-img .float-pill:nth-child(1) { top: 12%;    left:  4%; }
.hero-media .float-pill:nth-child(2), .page-hero-img .float-pill:nth-child(2) { top: 38%;    right: 3%; }
.hero-media .float-pill:nth-child(3), .page-hero-img .float-pill:nth-child(3) { bottom: 28%; left:  3%; }
.hero-media .float-pill:nth-child(4), .page-hero-img .float-pill:nth-child(4) { bottom: 10%; right: 5%; }
@media (prefers-reduced-motion: no-preference) {
  .hero-media .float-pill:nth-child(1), .page-hero-img .float-pill:nth-child(1) { animation: floatBadge 5s ease-in-out infinite 0s; }
  .hero-media .float-pill:nth-child(2), .page-hero-img .float-pill:nth-child(2) { animation: floatBadge 5s ease-in-out infinite 1.2s; }
  .hero-media .float-pill:nth-child(3), .page-hero-img .float-pill:nth-child(3) { animation: floatBadge 5s ease-in-out infinite 0.6s; }
  .hero-media .float-pill:nth-child(4), .page-hero-img .float-pill:nth-child(4) { animation: floatBadge 5s ease-in-out infinite 1.8s; }
}
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--gold); color: var(--navy); padding: 14px 20px;
  border-radius: 11px; font-family: var(--font-display); font-weight: 800;
  box-shadow: var(--shadow); line-height: 1.1;
}
.hero-badge small { display:block; font-family: var(--font-body); font-weight:600; font-size:.72rem; }

/* star row */
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
section.tight { padding: 60px 0; }
.section-head { max-width: 660px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--gray); font-size: 1.12rem; margin-top: 12px; }

.bg-paper2 { background: var(--paper-2); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,.8); }
.bg-blue { background: var(--blue); color: #fff; }
.bg-blue h2 { color:#fff; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card > p { flex: 1; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico { width: 50px; height: 50px; background: var(--paper); border-radius: 11px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--gray); font-size: .98rem; }
.card .more { font-family: var(--font-display); font-weight: 700; font-size: .9rem; margin-top: 14px; display: inline-block; }

.feature-card { background:#fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .18s, box-shadow .18s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.feature-card .body { padding: 22px; display: flex; flex-direction: column; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.feature-card p { color: var(--gray); font-size: .95rem; flex: 1; }

/* trust strip */
.trust-strip { background: var(--navy); color:#fff; }
.trust-strip .wrap { display:flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 30px 22px; }
.trust-strip .item { display:flex; align-items:center; gap:11px; font-weight:600; font-size:.98rem; }
.trust-strip .item b { font-family: var(--font-display); }

/* ---------- Cost estimator ---------- */
.estimator { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.est-options { display:grid; grid-template-columns: repeat(4,1fr); gap:12px; margin: 20px 0; }
.est-opt { border:2px solid var(--line); border-radius: 11px; padding:16px 12px; text-align:center; cursor:pointer; transition:.15s; background:var(--paper); }
.est-opt:hover { border-color: var(--blue); background: rgba(82,76,242,.05); }
.est-opt.active { border-color: var(--blue); background: rgba(82,76,242,.09); }
.est-opt .big { font-family:var(--font-display); font-weight:800; font-size:1.3rem; color:var(--navy); }
.est-opt .small { font-size:.8rem; color:var(--gray); }
.est-result { background: var(--navy); color:#fff; border-radius:11px; padding: 22px 26px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; margin-top: 18px; }
.est-result .price { font-family:var(--font-display); font-weight:800; font-size:2.2rem; color: var(--gold); }
.est-result .note { font-size:.82rem; color:rgba(255,255,255,.65); margin-top:4px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom:1px solid var(--line); }
.faq-q {
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  font-family:var(--font-display); font-weight:700; font-size:1.18rem; color:var(--navy);
  padding: 22px 44px 22px 0; position:relative;
  display:flex; align-items:center;
}
.faq-q::after { content:"+"; position:absolute; right:6px; font-size:1.8rem; font-weight:400; color:var(--blue); transition:.2s; }
.faq-q[aria-expanded="true"]::after { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .28s ease; }
.faq-a .inner { padding: 0 44px 22px 0; color:var(--gray); }

/* ---------- Reviews ---------- */
.review-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px; }
.review-card .stars { margin-bottom:12px; }
.review-card p { font-size:1.02rem; color:var(--charcoal); font-style: italic; }
.review-card .who { margin-top:14px; font-weight:700; color:var(--navy); font-style:normal; font-size:.95rem; }

/* ---------- Areas ---------- */
.area-links { display:flex; flex-wrap:wrap; gap:10px; }
.area-links a { background:#fff; border:1px solid var(--line); padding:11px 18px; border-radius:30px; font-weight:600; color:var(--navy); font-size:.95rem; transition:.15s; }
.area-links a:hover { background:var(--blue); color:#fff; border-color:var(--blue); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue); color:#fff; text-align:center; }
.cta-band h2 { color:#fff; }
.cta-band p { color:rgba(255,255,255,.9); font-size:1.15rem; max-width:50ch; margin:14px auto 28px; }
.cta-band .btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Quote form area ---------- */
.quote-embed { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow-sm); min-height:480px; max-width:800px; margin:0 auto; }
.embed-placeholder { border:2px dashed var(--line); border-radius:11px; padding:48px 24px; text-align:center; color:var(--gray); }
.embed-placeholder code { background:var(--paper-2); padding:3px 8px; border-radius:5px; font-size:.85rem; }
.quote-info-strip { display:grid; grid-template-columns: 1fr 1fr 1fr; gap:40px; align-items:start; }
.quote-bullets { display:flex; flex-direction:column; gap:20px; }
.quote-bullet { display:flex; gap:14px; align-items:flex-start; }
.qb-icon { font-size:1.4rem; line-height:1; flex-shrink:0; margin-top:2px; }
.quote-bullet strong { font-family:var(--font-display); font-size:1.05rem; color:var(--navy); display:block; margin-bottom:3px; }
.quote-bullet p { margin:0; color:var(--gray); font-size:.95rem; }
#smartmoving-form { background:#fff; border-radius:var(--radius); box-shadow:var(--shadow-sm); border:1px solid var(--line); overflow:hidden; }
.callout { background:#fff; border-left:4px solid var(--blue); border-radius:8px; padding:18px 22px; box-shadow:var(--shadow-sm); }
.callout a { color:var(--blue); font-weight:600; }
@media (max-width: 860px) {
  .quote-info-strip { grid-template-columns: 1fr; gap:24px; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero { background:var(--navy); color:#fff; position:relative; overflow:hidden; padding: 64px 0 58px; }
.page-hero .wrap { position:relative; }
.page-hero h1 { color:#fff; }
.page-hero .lead { color:rgba(255,255,255,.82); font-size:1.2rem; margin-top:16px; }
.page-hero-split { display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center; }
.page-hero-split > div:first-child { max-width: 560px; }
.page-hero-img { border-radius: var(--radius); overflow:hidden; }
.page-hero-img img { width:100%; height:400px; object-fit:cover; object-position:center 20%; border-radius:var(--radius); display:block; box-shadow:0 20px 50px rgba(0,0,0,.45); }
.breadcrumb { font-size:.85rem; color:rgba(255,255,255,.6); margin-bottom:18px; }
.breadcrumb a { color:rgba(255,255,255,.8); }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { margin: 36px 0 14px; }
.prose h3 { margin: 28px 0 10px; }
.prose p { color: var(--charcoal); }
.prose ul { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose .callout { background:#fff; border-left:4px solid var(--blue); border-radius:8px; padding:18px 22px; margin:22px 0; box-shadow:var(--shadow-sm); }

/* why-list */
.why-list { list-style:none; padding:0; margin:20px 0 0; }
.why-list li { padding:10px 0 10px 28px; position:relative; border-bottom:1px solid var(--line); font-size:1rem; }
.why-list li:last-child { border-bottom:none; }
.why-list li::before { content:"✓"; position:absolute; left:0; color:var(--blue); font-weight:800; }

/* split content */
.split { display:grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap:50px; align-items:center; }
.split img { width:100%; height:auto; max-height:520px; object-fit:cover; object-position:center 40%; border-radius:var(--radius); box-shadow:var(--shadow-sm); display:block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 60px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color:#fff; font-size:1.05rem; margin-bottom:16px; text-transform:uppercase; letter-spacing:.1em; }
.site-footer a { color:rgba(255,255,255,.72); display:block; padding:5px 0; font-size:.94rem; }
.site-footer a:hover { color:var(--gold); }
.footer-brand .brand { color:#fff; margin-bottom:14px; }
.footer-brand p { font-size:.94rem; max-width:32ch; }
.footer-phone { font-family:var(--font-display); font-weight:800; font-size:1.5rem; color:#fff; margin:14px 0 6px; display:inline-block; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:40px; padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.85rem; }

/* utility */
.text-center { text-align:center; }
.mt-0 { margin-top:0; }
.mono { font-family: ui-monospace, monospace; }

/* ---------- Process timeline (Seamless Moving) ---------- */
.process { background: var(--navy); color:#fff; position:relative; overflow:hidden; }
.process::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 85% 12%, rgba(30,80,229,.32), transparent 55%);
}
.process .wrap { position:relative; }
.process .eyebrow { color: var(--gold); }
.process h2 { color:#fff; max-width: 16ch; }
.process .lead { color: rgba(255,255,255,.82); font-size:1.15rem; max-width:54ch; margin:16px 0 28px; }
.process .badge-circle {
  position:absolute; top:0; right:0; width:128px; height:128px; border-radius:50%;
  background: var(--coral); color: var(--navy); display:grid; place-items:center; text-align:center;
  font-family: var(--font-display); font-weight:800; font-size:.74rem; letter-spacing:.04em;
  line-height:1.15; padding:14px; transform: rotate(-6deg);
}
.process .script {
  font-family: "Caveat", cursive; color: var(--coral-soft);
  font-size:1.8rem; line-height:1; display:inline-block; transform: rotate(-4deg);
}
.steps {
  display:grid; grid-template-columns: repeat(4,1fr); gap:24px; margin-top:54px;
  position:relative;
}
.steps::before {
  content:""; position:absolute; top:30px; left:6%; right:6%; height:0;
  border-top:2px dashed rgba(255,255,255,.28); z-index:0;
}
.step { position:relative; z-index:1; text-align:center; }
.step .ico {
  width:62px; height:62px; margin:0 auto 18px; border-radius:14px;
  background: var(--blue); display:grid; place-items:center; font-size:1.7rem;
  box-shadow: 0 8px 22px rgba(30,80,229,.35);
}
.step .num {
  font-family: var(--font-display); font-weight:800; letter-spacing:.12em;
  font-size:.82rem; color: var(--gold); text-transform:uppercase; margin-bottom:6px;
}
.step h3 { color:#fff; font-size:1.18rem; margin-bottom:8px; }
.step p { color: rgba(255,255,255,.74); font-size:.95rem; }
.process .btns { margin-top:8px; }

/* ---------- Big services intro (Peace of mind) ---------- */
.svc-intro { background: var(--paper); }
.svc-intro .top { display:grid; grid-template-columns: 1.5fr .5fr; gap:40px; align-items:start; }
.svc-intro h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); max-width: 16ch; }
.svc-intro .lead { color: var(--gray); font-size:1.18rem; margin-top:22px; max-width:60ch; }
.svc-intro .cta-side { display:flex; justify-content:flex-end; padding-top:10px; }
.svc-cols { display:grid; grid-template-columns: 1fr 1fr; gap:48px; margin-top:54px; }
.svc-col { border-top:3px solid var(--blue); padding-top:20px; }
.svc-col h3 { font-size:1.7rem; text-transform:uppercase; letter-spacing:-.01em; margin-bottom:10px; }
.svc-col p { color: var(--gray); }
.svc-col .more { font-family:var(--font-display); font-weight:700; font-size:.92rem; margin-top:12px; display:inline-block; }

/* ===========================================================
   EDITORIAL UI SYSTEM — texture, icons, photo treatment, stamps
   =========================================================== */

/* paper grain on light surfaces */
body { position:relative; }
body::before {
  content:""; position:fixed; inset:0; z-index:-1; pointer-events:none; opacity:.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

/* ---- SVG icons ---- */
.ico-svg { display:block; }
.icon-tile {
  width:56px; height:56px; border-radius:14px; display:grid; place-items:center;
  background: var(--blue); color:#fff; box-shadow: 0 8px 20px rgba(30,80,229,.28);
  flex:none;
}
.icon-tile.gold { background: var(--gold); color: var(--navy); box-shadow:0 8px 20px rgba(253,185,19,.3); }
.icon-tile.purple { background: var(--coral); color: var(--navy); box-shadow:0 8px 20px rgba(155,140,255,.35); }
.icon-tile.outline { background: transparent; color: var(--blue); border:2px solid var(--blue); box-shadow:none; }
.icon-tile.sm { width:44px; height:44px; border-radius:11px; }
.card .icon-tile { margin-bottom:16px; }

/* ---- circular stamp badge (reusable) ---- */
.stamp {
  width:118px; height:118px; border-radius:50%; display:grid; place-items:center; text-align:center;
  font-family: var(--font-display); font-weight:800; font-size:.7rem; letter-spacing:.05em;
  line-height:1.18; padding:14px; transform: rotate(-7deg); border:2px dashed currentColor;
}
.stamp.gold { background: var(--gold); color: var(--navy); border-color: rgba(20,33,61,.35); }
.stamp.purple { background: var(--coral); color: var(--navy); border-color: rgba(20,33,61,.3); }
.stamp.navy { background: var(--navy); color: #fff; border-color: rgba(255,255,255,.4); }

/* ---- script accent ---- */
.script-accent { font-family:"Caveat",cursive; color: var(--blue); font-size:1.9rem; line-height:1; transform:rotate(-3deg); display:inline-block; }
.process .script-accent, .bg-navy .script-accent { color: var(--coral-soft); }

/* ---- editorial photo treatment ---- */
.editorial { position:relative; }
.editorial-photo {
  position:relative; border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(20,33,61,.28);
}
.editorial-photo.bleed { border-radius:0; }
/* photo overlapping a colored panel */
.photo-overlap { position:relative; }
.photo-overlap .panel {
  position:absolute; border-radius: var(--radius); z-index:0;
}
.photo-overlap img { position:relative; z-index:1; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-stamp { position:absolute; z-index:3; }

/* corner accent rule */
.kicker-rule { display:flex; align-items:center; gap:12px; }
.kicker-rule::before { content:""; width:34px; height:3px; background: var(--gold); border-radius:3px; }

/* ---- Local proof / stats strip ---- */
.stats { background: var(--blue); color:#fff; }
.stats .wrap { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.stat { text-align:center; padding:6px; }
.stat b { font-family:var(--font-display); font-weight:900; font-size: clamp(2.2rem,4vw,3.2rem); display:block; line-height:1; }
.stat span { font-size:.92rem; color: rgba(255,255,255,.85); margin-top:8px; display:block; }
.stat + .stat { border-left:1px solid rgba(255,255,255,.2); }

/* ---- neighborhoods grid ---- */
.hoods { display:flex; flex-wrap:wrap; gap:10px; }
.hood {
  background:#fff; border:1px solid var(--line); border-radius:10px; padding:12px 16px;
  font-weight:600; color:var(--navy); font-size:.93rem; display:flex; align-items:center; gap:8px;
}
.hood .dot { width:7px; height:7px; border-radius:50%; background:var(--gold); flex:none; }

/* ---- "what to expect" checklist ---- */
.expect-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:16px; }
.expect-item {
  display:flex; gap:14px; align-items:flex-start; background:#fff; border:1px solid var(--line);
  border-radius:12px; padding:18px 20px; transition:transform .15s,box-shadow .15s;
}
.expect-item:hover { transform:translateY(-2px); box-shadow: var(--shadow-sm); }
.expect-item .icon-tile { width:40px; height:40px; border-radius:10px; }
.expect-item h4 { font-family:var(--font-display); color:var(--navy); font-size:1.08rem; margin-bottom:3px; }
.expect-item p { color: var(--gray); font-size:.92rem; margin:0; }

/* feature card uses icon now */
.feature-card .body .icon-tile { margin-bottom:14px; }

/* refine card hover with accent edge */
.card { position:relative; }
.card::after { content:""; position:absolute; left:0; top:0; height:100%; width:3px; background:var(--blue); border-radius:3px 0 0 3px; opacity:0; transition:opacity .18s; }
.card:hover::after { opacity:1; }

/* ---------- Quote band + floating form card ---------- */
.quote-band {
  position:relative; overflow:hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1B2E5E 45%, var(--blue) 120%);
  padding: 66px 0 96px;
}
.quote-band::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(circle at 88% 10%, rgba(155,140,255,.32), transparent 42%),
    radial-gradient(circle at 6% 95%, rgba(253,185,19,.14), transparent 40%);
}
.quote-band .wrap { position:relative; z-index:2; }
.quote-band .qb-head { text-align:center; max-width:720px; margin:0 auto 34px; color:#fff; }
.quote-band .qb-head h2 { color:#fff; font-size: clamp(2.1rem,4.6vw,3.4rem); }
.quote-band .qb-head .eyebrow { color: var(--coral-soft); }
.quote-band .qb-head p { color: rgba(255,255,255,.85); font-size:1.12rem; margin-top:12px; }
.quote-band .qb-stamp {
  position:absolute; top:34px; right:max(22px, calc((100vw - var(--maxw))/2 + 8px)); z-index:3;
}
.quote-band .qb-script { font-family:"Caveat",cursive; color: var(--coral-soft); font-size:2rem; transform:rotate(-4deg); display:inline-block; margin-bottom:4px; }

/* floating white card holding the iframe */
.quote-card {
  position:relative; z-index:2; max-width: 760px; margin: 0 auto;
  background:#fff; border-radius: 18px; padding: 14px;
  box-shadow: 0 40px 90px rgba(8,16,38,.45), 0 0 0 1px rgba(255,255,255,.06);
}
.quote-card::before {
  content:""; position:absolute; inset:-3px; z-index:-1; border-radius:21px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  opacity:.9;
}
.quote-card .qc-inner { background:#fff; border-radius: 12px; overflow:hidden; }
.quote-card iframe { display:block; width:100%; min-height:880px; border:0; }
.quote-card .qc-foot { text-align:center; padding:12px 8px 6px; color:var(--gray); font-size:.86rem; }
.quote-card .qc-foot a { font-weight:700; }

/* trust chips under the card */
.qb-trust { display:flex; gap:22px; justify-content:center; flex-wrap:wrap; margin-top:24px; position:relative; z-index:2; }
.qb-trust span { color: rgba(255,255,255,.9); font-weight:600; font-size:.92rem; display:flex; align-items:center; gap:7px; }
.qb-trust .icon-tile { width:30px; height:30px; border-radius:8px; box-shadow:none; }

/* ===========================================================
   BAND TEXTURES — diagonal lines (navy) + chevrons (blue)
   Scoped to dark/colored bands only. Very faint, behind content.
   =========================================================== */

/* Squiggle texture — replaces all triangle/diagonal patterns site-wide.
   Two opacity variants: strong (cta-band/stats) and subtle (dark navy bands). */

/* Subtle squiggles on dark navy sections */
.bg-navy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cg fill='none' stroke='rgba(255,255,255,.07)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28,32 C18,22 13,36 22,42 C31,48 40,38 36,28 C32,18 20,20 20,32'/%3E%3Cpath d='M105,12 L116,28 L127,12 L138,28 L149,12'/%3E%3Cpath d='M8,88 C20,76 33,100 46,88 C59,76 72,100 85,88'/%3E%3Cpath d='M95,65 C76,53 72,78 86,85 C100,92 108,68 95,60'/%3E%3Ccircle cx='32' cy='148' r='4.5'/%3E%3Cpath d='M78,128 C64,115 84,102 70,90'/%3E%3Cpath d='M158,72 C169,85 169,112 158,125'/%3E%3Cpath d='M128,142 L139,156 L150,142 L161,156'/%3E%3Cpath d='M152,44 C158,33 167,38 164,50 C161,62 149,58 148,47 C147,36 156,33 162,42'/%3E%3Ccircle cx='70' cy='18' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.bg-navy .wrap { position:relative; z-index:1; }

.page-hero { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cg fill='none' stroke='rgba(255,255,255,.07)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28,32 C18,22 13,36 22,42 C31,48 40,38 36,28 C32,18 20,20 20,32'/%3E%3Cpath d='M105,12 L116,28 L127,12 L138,28 L149,12'/%3E%3Cpath d='M8,88 C20,76 33,100 46,88 C59,76 72,100 85,88'/%3E%3Cpath d='M95,65 C76,53 72,78 86,85 C100,92 108,68 95,60'/%3E%3Ccircle cx='32' cy='148' r='4.5'/%3E%3Cpath d='M78,128 C64,115 84,102 70,90'/%3E%3Cpath d='M158,72 C169,85 169,112 158,125'/%3E%3Cpath d='M128,142 L139,156 L150,142 L161,156'/%3E%3Cpath d='M152,44 C158,33 167,38 164,50 C161,62 149,58 148,47 C147,36 156,33 162,42'/%3E%3Ccircle cx='70' cy='18' r='3'/%3E%3C/g%3E%3C/svg%3E"); background-size: 180px 180px; }
.process   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cg fill='none' stroke='rgba(255,255,255,.07)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28,32 C18,22 13,36 22,42 C31,48 40,38 36,28 C32,18 20,20 20,32'/%3E%3Cpath d='M105,12 L116,28 L127,12 L138,28 L149,12'/%3E%3Cpath d='M8,88 C20,76 33,100 46,88 C59,76 72,100 85,88'/%3E%3Cpath d='M95,65 C76,53 72,78 86,85 C100,92 108,68 95,60'/%3E%3Ccircle cx='32' cy='148' r='4.5'/%3E%3Cpath d='M78,128 C64,115 84,102 70,90'/%3E%3Cpath d='M158,72 C169,85 169,112 158,125'/%3E%3Cpath d='M128,142 L139,156 L150,142 L161,156'/%3E%3Cpath d='M152,44 C158,33 167,38 164,50 C161,62 149,58 148,47 C147,36 156,33 162,42'/%3E%3Ccircle cx='70' cy='18' r='3'/%3E%3C/g%3E%3C/svg%3E"); background-size: 180px 180px; }
.process::before { z-index:0; }
.page-hero .wrap, .process .wrap { position:relative; z-index:1; }

/* Strong squiggles on blue cta-band and stats */
.cta-band, .stats { position:relative; overflow:hidden; }
.cta-band::before, .stats::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cg fill='none' stroke='rgba(255,255,255,.15)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28,32 C18,22 13,36 22,42 C31,48 40,38 36,28 C32,18 20,20 20,32'/%3E%3Cpath d='M105,12 L116,28 L127,12 L138,28 L149,12'/%3E%3Cpath d='M8,88 C20,76 33,100 46,88 C59,76 72,100 85,88'/%3E%3Cpath d='M95,65 C76,53 72,78 86,85 C100,92 108,68 95,60'/%3E%3Ccircle cx='32' cy='148' r='4.5'/%3E%3Cpath d='M78,128 C64,115 84,102 70,90'/%3E%3Cpath d='M158,72 C169,85 169,112 158,125'/%3E%3Cpath d='M128,142 L139,156 L150,142 L161,156'/%3E%3Cpath d='M152,44 C158,33 167,38 164,50 C161,62 149,58 148,47 C147,36 156,33 162,42'/%3E%3Ccircle cx='70' cy='18' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.cta-band .wrap, .stats .wrap { position:relative; z-index:1; }

/* quote-band: keep gradient only, no overlay */
.quote-band {
  background-image: linear-gradient(135deg, var(--navy) 0%, #1B2E5E 45%, var(--blue) 120%);
}

/* ---------- Zigzag section separators ---------- */
.zigzag-sep {
  display: block;
  height: 20px;
  background-size: 20px 20px;
  background-position: 0 0;
  background-repeat: repeat-x;
  margin-bottom: -1px;
}
/* white → paper-2 */
.zz-w-p2 {
  background-color: #E2E2FF;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polygon points='0,0 20,0 10,20' fill='%23ffffff'/></svg>");
}
/* paper-2 → white */
.zz-p2-w {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polygon points='0,0 20,0 10,20' fill='%23E2E2FF'/></svg>");
}
/* white → navy */
.zz-w-navy {
  background-color: #0B0D28;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polygon points='0,0 20,0 10,20' fill='%23ffffff'/></svg>");
}
/* paper-2 → navy */
.zz-p2-navy {
  background-color: #0B0D28;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polygon points='0,0 20,0 10,20' fill='%23E2E2FF'/></svg>");
}
/* navy → paper-2 */
.zz-navy-p2 {
  background-color: #E2E2FF;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polygon points='0,0 20,0 10,20' fill='%230B0D28'/></svg>");
}
/* white → blue (cta-band) */
.zz-w-blue {
  background-color: #524CF2;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polygon points='0,0 20,0 10,20' fill='%23ffffff'/></svg>");
}
/* paper-2 → blue (cta-band) */
.zz-p2-blue {
  background-color: #524CF2;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polygon points='0,0 20,0 10,20' fill='%23E2E2FF'/></svg>");
}
/* navy → blue (cta-band) */
.zz-navy-blue {
  background-color: #524CF2;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><polygon points='0,0 20,0 10,20' fill='%230B0D28'/></svg>");
}

/* ---------- Client Shoutout Band ---------- */
.shoutout-band {
  background: var(--paper-2);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.shoutout-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shoutout-deco svg {
  position: absolute;
  opacity: .42;
}
.shoutout-head {
  margin-bottom: 36px;
}
.shoutout-head h2 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 10px;
}
.shoutout-head p {
  font-size: 1rem;
  color: rgba(11,13,40,.62);
  margin: 0;
}
.shoutout-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr 1fr 0.72fr;
  gap: 18px;
  align-items: center;
}
.shoutout-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,.32);
}
.shoutout-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 24px;
}
.shoutout-photo.sh-tall  { height: 330px; }
.shoutout-photo.sh-short { height: 250px; }
.shoutout-photo.sh-down  { margin-top: 48px; }
@keyframes sh-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: no-preference) {
  .sh-anim-1 { animation: sh-float 5s   ease-in-out infinite 0s; }
  .sh-anim-2 { animation: sh-float 4.5s ease-in-out infinite 0.7s; }
  .sh-anim-3 { animation: sh-float 6s   ease-in-out infinite 1.4s; }
}
/* ---------- Blog preview cards ---------- */
.blog-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 16px rgba(11,13,40,.08);
  border: 1px solid rgba(11,13,40,.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(11,13,40,.14); transform: translateY(-2px); }
.blog-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
}
.blog-card p { font-size: .95rem; color: var(--gray); margin: 0 0 18px; line-height: 1.6; }
.blog-more { font-size: .9rem; font-weight: 600; color: var(--blue); }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr !important; } }

/* ---------- Blog article / post ---------- */
.blog-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 10px;
}
.blog-post {
  max-width: 720px;
  margin: 0 auto;
}
.blog-intro {
  font-size: 1.13rem;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.blog-post h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--navy);
  margin: 2.5rem 0 .75rem;
  line-height: 1.25;
}
.blog-post h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--indigo);
  margin: 1.75rem 0 .5rem;
}
.blog-post p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #2a2c44;
}
.blog-post ul {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}
.blog-post li {
  margin-bottom: .5rem;
  line-height: 1.65;
  color: #2a2c44;
}
.blog-post strong { color: var(--navy); }
.blog-post a { color: var(--blue); text-decoration: underline; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  margin-top: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
}
.article-author strong { color: #fff; }
.article-date time { color: rgba(255,255,255,.85); }
.article-meta .article-author,
.article-meta .article-date { display: flex; align-items: center; gap: 5px; }
.article-meta .article-date::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.35);
}
@media (max-width: 540px) {
  .article-meta { flex-direction: column; gap: 4px; }
  .article-meta .article-date::before { display: none; }
}
.blog-post .sources-list { margin-top: .5rem; }
.blog-post .sources-list li { font-size: .88rem; color: #555; }
.faq-q {
  margin-top: 1.5rem;
  margin-bottom: .25rem !important;
}
.faq-q strong {
  font-size: 1rem;
  color: var(--navy);
}
.blog-post .callout {
  background: var(--paper-2);
  border-left: 4px solid var(--indigo);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 1.5rem 0;
  font-size: .97rem;
  line-height: 1.65;
}
@media (max-width: 640px) { .blog-post { padding: 0 4px; } }

.shoutout-card {
  background: #0B0D28;
  border-radius: 24px;
  padding: 28px 24px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}
.shoutout-card p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 20px;
}
.shoutout-card a {
  font-size: .88rem;
  color: var(--paper-2);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .01em;
}
.shoutout-card a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .shoutout-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .shoutout-photo.sh-tall,
  .shoutout-photo.sh-short { height: 280px; }
  .shoutout-photo.sh-down  { margin-top: 0; }
  .shoutout-card { min-height: auto; }
  /* Mobile reorder: photo1 → card2(Your recommendation) → photo2 → photo3 → card1(Trust us) */
  .shoutout-grid > :nth-child(1) { order: 1; }
  .shoutout-grid > :nth-child(2) { order: 5; }
  .shoutout-grid > :nth-child(3) { order: 3; }
  .shoutout-grid > :nth-child(4) { order: 4; }
  .shoutout-grid > :nth-child(5) { order: 2; }
}

/* ---------- Photo carousel ---------- */
.carousel-container {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(11,13,40,.16);
}
.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%; flex-shrink: 0;
}
.carousel-slide img {
  width: 100%; display: block;
  height: clamp(240px, 48vw, 500px);
  object-fit: cover; object-position: center 30%;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.78); border: none;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.9rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(11,13,40,.18);
  transition: background 0.2s ease, opacity 0.2s ease;
  z-index: 2; color: var(--navy);
}
.carousel-btn:hover { background: rgba(255,255,255,1); }
.prev-btn { left: 14px; }
.next-btn { right: 14px; }
.carousel-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.carousel-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.50); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dots .dot.active {
  background: #fff; transform: scale(1.35);
}

/* ---------- Scroll reveal (JS-driven, graceful degradation) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
}
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: 1; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps { grid-template-columns: repeat(2,1fr); gap:36px; }
  .steps::before { display:none; }
  .svc-intro .top { grid-template-columns: 1fr; gap:24px; }
  .svc-intro .cta-side { justify-content:flex-start; }
  .svc-cols { gap:32px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-phone.desktop { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: block; }
  .nav { height: 68px; }
  .brand img { height: 46px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .est-options { grid-template-columns: repeat(2,1fr); }
  section { padding: 52px 0; }
  .hero .wrap { padding-top: 48px; padding-bottom: 48px; }
  .hero-trust { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .steps { grid-template-columns: 1fr; gap:28px; }
  .svc-cols { grid-template-columns: 1fr; gap:28px; }
  .process .badge-circle { width:96px; height:96px; font-size:.62rem; position:static; margin:0 0 20px; transform:rotate(-6deg); }
  .stats .wrap { grid-template-columns: repeat(2,1fr); gap:24px; }
  .stat:nth-child(3) { border-left:0; }
  .expect-grid { grid-template-columns: 1fr; }
  .quote-embed { padding: 16px; }
  .quote-band { padding: 44px 0 64px; }
  .quote-band .qb-stamp { display:none; }
  .quote-card iframe { min-height:920px; }
}
@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
}

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