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

:root {
  --navy:   #091B3F;
  --navy2:  #0d2454;
  --gold:   #B68737;
  --gold2:  #9A7230;
  --white:  #ffffff;
  --light:  #F7F8FA;
  --text:   #1a2640;
  --muted:  #64748b;
  --border: #e2e8f0;
  --green:  #16a34a;
  --r:      10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Accessibility: visible keyboard focus */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 1000;
  background: var(--navy); color: #fff; font-weight: 700; font-size: .85rem;
  padding: 10px 18px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .badges-track { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 12px 24px; border-radius: var(--r);
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 12px 24px; border-radius: var(--r);
  border: 2px solid rgba(255,255,255,.45);
  transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-google {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--navy);
  font-weight: 700; font-size: .9rem;
  padding: 12px 24px; border-radius: var(--r);
  border: 1.5px solid var(--border);
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.btn-google i { color: #4285F4; font-size: 1rem; }
.btn-google:hover { border-color: #4285F4; box-shadow: 0 6px 18px rgba(66,133,244,.15); transform: translateY(-1px); }

/* Layout */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo img { height: 42px; filter: brightness(0) invert(1); }
.nav { display: flex; gap: 24px; flex: 1; justify-content: center; }
.nav a { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.75); transition: color .2s; }
.nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.hdr-phone { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.hdr-phone:hover { color: var(--gold); }
.burger { display: none; background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; margin-left: auto; padding: 4px; }
.mobile-nav { display: none; flex-direction: column; gap: 2px; padding: 12px 24px 20px; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav a { padding: 10px 0; font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a:last-child { border: none; }
.mobile-nav.open { display: flex; }

/* ── HERO ── */
.hero { position: relative; background: var(--navy); padding: 24px 0 28px; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,27,63,.90) 0%, rgba(9,27,63,.72) 48%, rgba(9,27,63,.42) 100%),
    url('hero-bath.jpg') center/cover no-repeat;
}
.hero-left h1, .hero-left p { text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start;
}
.hero-left { padding-top: 36px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8);
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-tag i { color: var(--gold); }
.hero-left h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  letter-spacing: -.5px; margin-bottom: 12px;
}
.hero-left h1 span { color: var(--gold); }
.hero-left p { font-size: .9rem; color: rgba(255,255,255,.72); max-width: 480px; line-height: 1.6; margin-bottom: 16px; }
.hero-left strong { color: #fff; }
.hero-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.hero-list li { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.85); }
.hero-list li i { color: var(--gold); font-size: .78rem; width: 14px; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-pills span { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.65); }
.hero-pills i { color: var(--gold); }

/* Form tagline */
.form-tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: center;
}
.form-tagline strong {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
}

/* Form card */
.hero-right { scroll-margin-top: 84px; }
.form-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.45); }
.form-card-head { background: var(--navy2); padding: 13px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08); }
.form-card-head h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.form-card-head p { font-size: .72rem; color: rgba(255,255,255,.6); }
.form-card-foot { padding: 10px 20px; background: var(--light); text-align: center; font-size: .7rem; color: var(--muted); border-top: 1px solid var(--border); }
.form-card-foot i { color: var(--green); margin-right: 4px; }

/* ── BADGES BAR ── */
.badges-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
}

/* Desktop: scrolling marquee */
.badges-track {
  display: flex;
  width: max-content;
  animation: badge-scroll 28s linear infinite;
}
.badges-track:hover { animation-play-state: paused; }
.badges-slide {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 64px;
  flex-shrink: 0;
}
/* 4 slides → scroll exactly 1 slide (25%) to loop seamlessly */
@keyframes badge-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.badge-img { height: 80px; width: auto; object-fit: contain; flex-shrink: 0; }
.badge-round { height: 84px; }

/* Mobile: static, 2 rows */
@media (max-width: 768px) {
  .badges-track { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; }
  .badges-slide:not(:first-child) { display: none; }
  .badges-slide { flex-wrap: wrap; justify-content: center; gap: 16px; padding: 4px 16px; }
  .badge-img { height: 46px; }
  .badge-round { height: 50px; }
}

/* ── SECTIONS ── */
.section { padding: 56px 0; }
.bg-light { background: var(--light); }
.sec-head { text-align: center; margin-bottom: 34px; }
.tag {
  display: inline-block;
  background: rgba(182,135,55,.1); color: var(--gold);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 12px;
}
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); letter-spacing: -.4px; line-height: 1.2; margin-bottom: 10px; }
.sec-head p { font-size: .95rem; color: var(--muted); max-width: 500px; margin: 0 auto; }
.sec-cta { text-align: center; margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sec-cta p { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.sec-cta i { color: var(--green); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .2s, box-shadow .2s; position: relative; }
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.svc-img { height: 180px; background-size: cover; background-position: center; }
.svc-badge { position: absolute; top: 10px; right: 10px; background: var(--gold); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; z-index: 1; }
.svc-featured { border-color: var(--gold); border-width: 2px; }
.svc-info { padding: 20px; }
.svc-info i { font-size: 1.2rem; color: var(--gold); margin-bottom: 8px; }
.svc-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.svc-info p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
/* ── EDITORIAL FEATURE ROWS ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-row + .feature-row { margin-top: 52px; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media .ba-wrap { box-shadow: 0 14px 36px rgba(9,27,63,.12); }
.feature-media .ba-hint { text-align: center; font-size: .72rem; font-weight: 600; color: var(--muted); margin-top: 10px; }
.feature-eyebrow { display: inline-block; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.feature-text h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 800; color: var(--navy); line-height: 1.18; letter-spacing: -.4px; margin-bottom: 12px; }
.feature-text > p { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.feature-text .svc-feats { margin-bottom: 16px; }
.feature-text .svc-feats li { font-size: .9rem; }
.feature-meta { display: block; width: fit-content; background: rgba(182,135,55,.1); color: var(--gold2); font-size: .78rem; font-weight: 700; padding: 7px 14px; border-radius: 100px; margin-bottom: 22px; }
.feature-foot { text-align: center; margin-top: 44px; font-size: .95rem; color: var(--muted); }
.feature-foot a { color: var(--gold); font-weight: 700; }
.feature-foot a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; gap: 18px; }
  .feature-row.reverse .feature-media { order: 0; }
  .feature-row + .feature-row { margin-top: 36px; }
}

/* Before/after slider inside service cards */
.svc-card .ba-wrap { border: none; border-radius: 0; aspect-ratio: 4/3; }
.svc-tag { display: inline-block; align-self: flex-start; background: rgba(182,135,55,.12); color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; }
.ba-hint { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .7rem; font-weight: 600; color: var(--muted); margin: -2px 0 12px; }
.ba-hint i { color: var(--gold); }
.svc-feats { list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0 0 14px; }
.svc-feats li { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: var(--text); }
.svc-feats i { color: var(--gold); font-size: .7rem; margin-top: 5px; flex-shrink: 0; }
.svc-info a { font-size: .84rem; font-weight: 700; color: var(--gold); transition: letter-spacing .15s; }
.svc-info a:hover { letter-spacing: .02em; }
.svc-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 36px 28px; background: var(--navy); border-color: var(--navy); }
.svc-cta i { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.svc-cta h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.svc-cta p { font-size: .84rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── BEFORE / AFTER ── */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ba-item {
  margin: 0; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.ba-item:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.ba-item img { width: 100%; height: auto; display: block; }
.ba-item figcaption {
  text-align: center; font-size: .8rem; font-weight: 700; color: var(--navy);
  padding: 12px 14px; letter-spacing: .03em;
}
.ba-wrap { position: relative; aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; user-select: none; border: 1px solid var(--border); }
.ba-back { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-front { position: absolute; inset: 0; overflow: hidden; }
.ba-front img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-pill { position: absolute; top: 10px; border-radius: 100px; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; z-index: 5; pointer-events: none; }
.ba-before-pill { left: 10px; background: rgba(0,0,0,.55); color: #fff; }
.ba-after-pill { right: 10px; background: var(--gold); color: #fff; }
.ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-50%); pointer-events: none; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; background: #fff; border-radius: 50%; border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: 10; font-weight: 700; color: var(--navy); font-size: .9rem; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 20; -webkit-appearance: none; }
.ba-caption { text-align: center; font-size: .75rem; font-weight: 600; color: var(--muted); margin-top: 8px; text-transform: uppercase; letter-spacing: .04em; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 14px; text-align: center; position: relative; }
.step-n { font-size: 1.6rem; font-weight: 900; color: rgba(182,135,55,.15); line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.step-icon { font-size: 1.1rem; color: var(--gold); margin-bottom: 6px; }
.process-step h4 { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.process-step p { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; border-top: 3px solid var(--gold); }
.review-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 10px; letter-spacing: 1px; }
.review-card p { font-size: .85rem; color: var(--text); line-height: 1.72; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-av { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-size: .78rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-author strong { display: block; font-size: .84rem; color: var(--text); }
.review-author small { font-size: .72rem; color: var(--muted); }
.verified { color: var(--green); font-weight: 600; }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; background: none; border: none; font-family: inherit; font-size: .93rem; font-weight: 700; color: var(--navy); cursor: pointer; text-align: left; }
.faq-q i { color: var(--gold); font-size: .75rem; flex-shrink: 0; transition: transform .25s; }
.faq-a { max-height: 0; overflow: hidden; padding: 0 20px; font-size: .88rem; color: var(--muted); line-height: 1.7; transition: max-height .3s, padding .3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 420px; padding: 0 20px 16px; }

/* ── FINANCING (bold promo banner) ── */
.finance-section {
  background: radial-gradient(120% 140% at 80% 0%, var(--navy2) 0%, var(--navy) 55%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.finance-section::before {
  content: "%"; position: absolute; right: -30px; top: -60px;
  font-size: 22rem; font-weight: 900; line-height: 1;
  color: rgba(182,135,55,.07); pointer-events: none; z-index: 0;
}
.finance-promo { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.finance-eyebrow {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 18px;
}
.finance-headline { font-size: clamp(2rem, 5.5vw, 3.3rem); font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 2px; }
.finance-zero { color: var(--gold); }
.finance-months { font-size: clamp(1.15rem, 2.6vw, 1.6rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.finance-months strong { color: var(--gold); }
.finance-promo-sub { font-size: .98rem; color: rgba(255,255,255,.78); line-height: 1.65; max-width: 560px; margin: 0 auto 26px; }
.finance-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.finance-cta-row .btn-primary { font-size: 1rem; padding: 14px 30px; }
.finance-cta-row .btn-outline { font-size: 1rem; padding: 14px 30px; }
.finance-logo-chip { display: inline-flex; background: #fff; border-radius: 12px; padding: 12px 22px; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.finance-logo-chip img { height: 50px; width: auto; display: block; }
.finance-promo-disc { font-size: .66rem; color: rgba(255,255,255,.4); line-height: 1.55; max-width: 600px; margin: 22px auto 0; }
@media (max-width: 768px) {
  .finance-section { padding: 44px 0; }
  .finance-section::before { font-size: 13rem; right: -10px; top: -20px; }
  .finance-cta-row .btn-primary, .finance-cta-row .btn-outline { width: 100%; justify-content: center; }
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.contact-form { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.cinfo-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; }
.cinfo-card h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.cinfo-row { display: flex; gap: 12px; margin-bottom: 14px; }
.cinfo-row:last-child { margin-bottom: 0; }
.cinfo-row > i { color: var(--gold); font-size: .9rem; flex-shrink: 0; margin-top: 3px; }
.cinfo-row div { display: flex; flex-direction: column; gap: 2px; }
.cinfo-row strong { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.cinfo-row a, .cinfo-row span { font-size: .88rem; color: var(--text); transition: color .2s; }
.cinfo-row a:hover { color: var(--gold); }
/* Social cards */
.social-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.social-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 22px;
  transition: box-shadow .2s, transform .2s;
}
.social-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.social-card-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
}
.social-card-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.social-card-text strong { font-size: .95rem; font-weight: 700; color: var(--navy); }
.social-card-text span { font-size: .8rem; color: var(--muted); }
.social-card-arrow { color: var(--border); font-size: .85rem; flex-shrink: 0; transition: color .2s; }
.social-card:hover .social-card-arrow { color: var(--gold); }
.google-stars { color: #f59e0b; font-size: .82rem; }
.google-stars em { font-style: normal; color: var(--muted); }
.section-sm { padding: 40px 0; }
@media (max-width: 600px) { .social-cards { grid-template-columns: 1fr; } }

.call-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--navy); border-radius: var(--r);
  padding: 20px 24px; transition: background .2s;
}
.call-card:hover { background: var(--navy2); }
.call-card i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.call-card div { display: flex; flex-direction: column; gap: 2px; }
.call-card strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); font-weight: 700; }
.call-card span { font-size: 1.2rem; font-weight: 800; color: #fff; }

.social-row { display: flex; flex-wrap: wrap; gap: 8px; }
.social-row a { display: flex; align-items: center; gap: 6px; padding: 7px 12px; border: 1px solid var(--border); border-radius: 8px; font-size: .8rem; font-weight: 600; color: var(--text); transition: all .2s; }
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.guarantee { display: flex; align-items: center; gap: 12px; background: rgba(22,163,74,.06); border: 1px solid rgba(22,163,74,.2); border-radius: var(--r); padding: 14px 16px; }
.guarantee i { color: var(--green); font-size: 1.4rem; flex-shrink: 0; }
.guarantee div { display: flex; flex-direction: column; gap: 3px; }
.guarantee strong { font-size: .84rem; color: var(--navy); }
.guarantee span { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ── FOOTER AREAS (SEO) ── */
.footer-areas { padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); text-align: center; }
.footer-areas strong { display: block; font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: .04em; margin-bottom: 6px; }
.footer-areas span { font-size: .68rem; color: rgba(255,255,255,.32); line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); padding: 44px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -.3px; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: .93rem; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 20px 0; }
.footer-inner { display: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { font-size: .72rem; color: rgba(255,255,255,.35); }
.footer-bottom a { font-size: .72rem; color: rgba(255,255,255,.4); text-decoration: underline; }

/* ── STICKY MOBILE CTA ── */
.sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--navy); border-top: 2px solid var(--gold); padding: 10px 16px; gap: 10px; align-items: center; }
.sticky-est { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; border-radius: 8px; font-weight: 700; font-size: .85rem; background: var(--gold); color: #fff; }
.sticky-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; border-radius: 8px; font-weight: 700; font-size: .85rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; }

/* Mobile-only elements (hidden on desktop) */
.hero-mobile-btn { display: none; }
.hero-form-cta { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .sec-head { margin-bottom: 26px; }
  .nav, .header-actions { display: none; }
  .burger { display: block; }
  .sticky { display: flex; }
  body { padding-bottom: 62px; }
  .ba-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }

  /* Mobile hero: cleaner, no clutter */
  .hero { padding: 36px 0 40px; }
  .hero-inner { gap: 28px; }
  .hero-left { padding-top: 0; }
  .hero-left h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); margin-bottom: 12px; }
  .hero-left p { font-size: .9rem; margin-bottom: 20px; }
  .hero-list { display: none; }
  .hero-pills { display: none; }
  .hero-tag { margin-bottom: 14px; }

  /* Call button below form */
  .hero-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    margin-top: 20px;
    transition: background .2s;
  }
  .hero-mobile-btn:hover { background: var(--gold2); }

  /* Get a Free Estimate below form */
  .hero-form-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: background .2s;
  }
  .hero-form-cta:hover { background: var(--gold2); }

  /* Form card on mobile — tighter */
  .form-card-head { padding: 14px 20px; }
  .form-card-head h3 { font-size: 1rem; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-sep { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ba-grid { grid-template-columns: 1fr; }
}

/* ── MULTI-STEP FORM ── */
.ms-form { padding: 14px 18px 16px; }

/* Progress bar */
.ms-bar-wrap { height: 3px; background: var(--border); border-radius: 3px; margin-bottom: 8px; }
.ms-bar { height: 3px; background: var(--gold); border-radius: 3px; transition: width .4s ease; }
.ms-step-label { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }

/* Panels */
.ms-panel { display: none; }
.ms-panel.active { display: block; }
.ms-q { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; flex-direction: column; gap: 2px; }
.ms-hint { font-size: .68rem; font-weight: 500; color: var(--muted); text-transform: none; letter-spacing: 0; }
.ms-opt.selected { border-color: var(--navy); background: var(--navy); color: #fff; }
.ms-opt.selected::after { content: ' ✓'; font-size: .8rem; opacity: .8; }

/* Options grid */
.ms-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-bottom: 10px; }
.ms-opt {
  padding: 8px 10px; text-align: left;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--white); cursor: pointer;
  font-family: inherit; font-size: .82rem; font-weight: 600; color: var(--text);
  transition: all .18s;
}
.ms-opt:hover { border-color: var(--gold); color: var(--gold); }
.ms-opt.selected { border-color: var(--navy); background: var(--navy); color: #fff; }

/* Fields */
.ms-fields { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.ms-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.ms-fields input {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .88rem; color: var(--text);
  outline: none; background: var(--white); transition: border-color .2s;
}
.ms-fields input:focus { border-color: var(--navy); }
.ms-fields input::placeholder { color: #aab; }
.ms-fields select {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .88rem; color: var(--text);
  outline: none; background: var(--white); transition: border-color .2s; cursor: pointer;
}
.ms-fields select:focus { border-color: var(--navy); }
.ms-fields select:invalid { color: #aab; }
/* Honeypot — hidden from humans, visible to bots */
.ms-hp { position: absolute !important; left: -9999px !important; top: 0; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Button row */
.ms-btn-row { display: flex; gap: 8px; margin-top: 4px; }
.ms-next-btn, .ms-submit-btn {
  flex: 1; padding: 10px; border-radius: 8px; border: none;
  background: var(--gold); color: #fff;
  font-family: inherit; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .15s;
}
.ms-next-btn:hover:not(:disabled),
.ms-submit-btn:hover:not(:disabled) { background: var(--gold2); transform: translateY(-1px); }
.ms-next-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.ms-back-btn {
  padding: 12px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--white);
  font-family: inherit; font-size: .85rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: border-color .2s, color .2s; white-space: nowrap;
}
.ms-back-btn:hover { border-color: var(--navy); color: var(--navy); }

/* Error & privacy */
.ms-error { font-size: .75rem; color: #dc2626; margin-bottom: 8px; display: none; }
.ms-privacy { text-align: center; font-size: .68rem; color: var(--muted); margin-top: 9px; line-height: 1.5; }
.ms-privacy a { color: var(--gold); font-weight: 600; text-decoration: underline; }

/* Thank you */
.ms-thanks { text-align: center; padding: 12px 0 8px; }
.ms-check {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.ms-thanks h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.ms-thanks p { font-size: .84rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.ms-call-btn {
  display: inline-block; padding: 11px 28px;
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: .9rem; border-radius: 8px;
  transition: background .2s;
}
.ms-call-btn:hover { background: var(--navy2); }

/* Contact section wrapper */
.contact-form .ms-form-container { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); }

@media (max-width: 480px) {
  .ms-row { grid-template-columns: 1fr; }
}
