/* ============================================================
   Jax Cleanout Quotes — Global Stylesheet
   Flat design. Navy + amber accent. Mobile-first.
   ============================================================ */

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

:root {
  --navy:    #1B2B5E;
  --navy2:   #2A3F7E;
  --orange:  #E8461A;
  --orange2: #C73A14;
  --bg:      #ffffff;
  --light:   #f4f1ec;
  --border:  #e2ddd7;
  --text:    #1a1a1a;
  --muted:   #6b6259;
  --white:   #ffffff;

  --f: 'Plus Jakarta Sans', -apple-system, Segoe UI, Roboto, sans-serif;
  --r: 6px;
  --px: clamp(20px, 5.5vw, 96px);
  --mw: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(32px, 4.2vw, 50px); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; }
h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; line-height: 1.25; letter-spacing: -0.015em; }
h4 { font-size: 18px; font-weight: 700; line-height: 1.3; }
p  { line-height: 1.75; }
p + p { margin-top: 14px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; z-index: 1000; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  position: relative;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 52px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a:not(.nav-cta) {
  padding: 0; border-radius: 0; background: transparent;
  font-size: 14px; font-weight: 500; color: #343A40;
  text-decoration: none; white-space: nowrap;
  transition: color .2s;
}
.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta)[aria-current="page"] { color: var(--orange); background: transparent; }
.nav-links a[aria-current="page"] { font-weight: 700; }
.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 10px 22px !important; font-weight: 700 !important;
  border-radius: 8px; margin-left: 8px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--orange2) !important; color: var(--white) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 10px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

.mob-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 8px var(--px) 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mob-nav.open { display: block; }
.mob-nav a {
  display: block; font-size: 16px; font-weight: 500; color: var(--text);
  padding: 13px 0; border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mob-nav a:last-child { border-bottom: none; }
.mob-nav a.nav-cta { color: var(--orange) !important; font-weight: 700 !important; background: none !important; padding: 13px 0 !important; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.section { padding: 64px var(--px); }
.section--sm { padding: 44px var(--px); }
.section-alt { background: var(--light); }
.wrap { max-width: var(--mw); margin: 0 auto; }

.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.sec-title { color: var(--navy); margin-bottom: 14px; }
.sec-sub { font-size: 17px; color: var(--muted); max-width: 640px; line-height: 1.75; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Page header banner (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, var(--navy) 100%);
  padding: 56px var(--px) 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -90px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(217,117,53,0.14);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -60px; left: -100px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.page-hero h1 { color: var(--white); max-width: 760px; }
.page-hero .eyebrow { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,.68); max-width: 680px; margin-top: 14px; font-size: 17px; }
.page-hero-img img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,.3); object-fit: cover; aspect-ratio: 4/3; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; text-decoration: none; border: none;
  font-family: var(--f); border-radius: var(--r);
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
  font-weight: 700; letter-spacing: -.01em; font-size: 15px;
}
.btn-primary { background: var(--orange); color: var(--white); padding: 14px 28px; }
.btn-primary:hover { background: var(--orange2); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35); padding: 12.5px 26px;
  font-weight: 600;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
.btn-white { background: var(--white); color: var(--navy); padding: 14px 32px; }
.btn-white:hover { background: var(--light); }
.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 16px; }

/* ============================================================
   HOME HERO
   ============================================================ */
.hero { background: var(--navy); padding: 64px var(--px) 72px; }
.hero-inner {
  max-width: var(--mw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero-desc { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-img img { width: 100%; height: auto; border-radius: 8px; }

/* ============================================================
   CARD GRID (services / why-choose / project types)
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px 26px 28px; }
.card-title { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: -.01em; }
.card-title a { color: inherit; text-decoration: none; transition: color .15s; }
.card-title a:hover { color: var(--orange); }
.card-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.card-desc + .card-desc { margin-top: 10px; }

/* Icon-style card (no image) */
.icon-card .card-body { padding: 28px 26px 30px; }
.card.icon-card { transition: border-color .2s, box-shadow .2s; }
.card.icon-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,70,26,0.08); }

/* Link-style card (whole card is a link, borderless/tinted background) */
.card.link-card { transition: transform .2s, box-shadow .2s; }
.card.link-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.card.link-card:hover .card-title { color: var(--orange); }
.icon-box {
  width: 44px; height: 44px; background: var(--light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.icon-box svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   STEPS (compact, used on Home)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; margin-top: 48px; }
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: var(--orange); color: var(--white);
  font-size: 15px; font-weight: 800; border-radius: 50%;
  margin-bottom: 18px;
}
.steps h4 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.steps p { font-size: 14px; color: var(--muted); }

/* ---------- Detailed step rows (How It Works page) ---------- */
.steps-timeline { position: relative; }
.step-row { display: grid; grid-template-columns: 64px 1fr; gap: 28px; }
.step-marker { position: relative; display: flex; justify-content: center; }
.step-marker::after {
  content: ''; position: absolute; top: 64px; bottom: -28px; left: 50%; width: 2px;
  background: var(--border); transform: translateX(-50%);
}
.step-row:last-child .step-marker::after { display: none; }
.step-num-big {
  width: 64px; height: 64px; border-radius: 50%; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; position: relative; z-index: 1;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.step-row:nth-child(odd) .step-num-big { background: var(--orange); }
.step-row:nth-child(even) .step-num-big { background: var(--navy); }
.step-content {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px 36px; margin-bottom: 28px; transition: border-color .2s, box-shadow .2s;
}
.step-row:last-child .step-content { margin-bottom: 0; }
.step-row:hover .step-content { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,70,26,0.08); }
.step-row-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.step-row-head .icon-box { margin-bottom: 0; flex-shrink: 0; }
.step-row-head > div { min-width: 0; }
.step-row-head .eyebrow { display: block; margin-bottom: 6px; }
.step-row h3 { color: var(--navy); margin: 0; font-size: 22px; }
.step-row-body p { font-size: 16px; color: var(--muted); }
.step-row-body p + p { margin-top: 14px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--orange); padding: 60px var(--px); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ============================================================
   AREAS GRID / PILLS
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.area-pill {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 13px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.area-pill:hover { background: var(--light); border-color: var(--navy); }
.area-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* ---------- Area detail blocks (Areas page) ---------- */
.areas-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.area-block {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 30px 32px; transition: border-color .2s, box-shadow .2s;
}
.area-block:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,70,26,0.08); }
.area-block h3 { color: var(--navy); margin-bottom: 10px; font-size: 21px; scroll-margin-top: 96px; }
.area-block p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.area-block p + p { margin-top: 12px; }

/* ============================================================
   ABOUT GRID
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img img { width: 100%; height: auto; border-radius: 8px; }
.about-text p { font-size: 16px; color: var(--muted); }
.map-embed { height: 400px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   SERVICES ROWS (alternating image/text)
   ============================================================ */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--border); }
.svc-row:first-child { padding-top: 0; }
.svc-row:last-child { border-bottom: none; }
.svc-row.flip { direction: rtl; }
.svc-row.flip > * { direction: ltr; }
.svc-row { scroll-margin-top: 96px; }
.svc-img img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; }
.svc-row h2 { color: var(--navy); margin-bottom: 12px; }
.svc-row p { font-size: 15px; color: var(--muted); }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--orange);
  text-decoration: none; margin-top: 14px;
  transition: gap .2s;
}
.svc-link:hover { gap: 10px; }
.svc-link svg { width: 14px; height: 14px; }

/* ============================================================
   FAQ (details/summary with rotating chevron)
   ============================================================ */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--orange); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 20px 24px; font-size: 15px; font-weight: 700; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; transition: transform .25s; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--orange); }
.faq-item p { padding: 0 24px 22px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.form-section-title {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin: 0 0 20px; padding-bottom: 14px;
  border-bottom: 1.5px solid var(--border);
}
.form-section-title.mt { margin-top: 32px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .01em; }
label .req { color: var(--orange); }
label .opt { font-size: 12px; font-weight: 400; color: var(--muted); }

input, textarea, select {
  font-family: var(--f); font-size: 15px; color: var(--text);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 11px 14px; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
input::placeholder, textarea::placeholder { color: #b0a89f; }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,64,.09);
}
textarea { resize: vertical; min-height: 110px; }

select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2B5E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  padding-right: 40px;
}
select:invalid { color: #b0a89f; }

.radio-group { display: flex; flex-wrap: wrap; gap: 12px 24px; padding-top: 4px; }
.radio-option {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer;
}
.radio-option input[type="radio"] {
  width: 17px; height: 17px; accent-color: var(--orange); cursor: pointer; flex-shrink: 0;
}

.checkbox-group {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 14px 16px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--orange); cursor: pointer; flex-shrink: 0;
}
.checkbox-group label {
  font-size: 13px; font-weight: 500; color: var(--text);
  letter-spacing: normal; cursor: pointer; line-height: 1.6;
}
.checkbox-group label .req { color: var(--orange); }

.upload-wrap {
  border: 2px dashed var(--border); border-radius: var(--r);
  padding: 32px 20px; text-align: center; position: relative;
  transition: border-color .2s, background .2s;
}
.upload-wrap:hover { border-color: var(--navy); background: var(--light); }
.upload-wrap input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%; border: none; padding: 0;
}
.upload-ico svg { width: 30px; height: 30px; stroke: var(--muted); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 10px; }
.upload-label { font-size: 14px; color: var(--muted); font-weight: 500; }
.upload-label strong { color: var(--navy); }
.upload-hint { font-size: 12px; color: #a09890; margin-top: 4px; }

.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.6; }

/* ---------- Sidebar ---------- */
.q-sidebar { background: var(--navy); border-radius: 8px; padding: 32px 28px; color: var(--white); position: sticky; top: 96px; }
.q-sidebar h2 { font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.q-sidebar p { font-size: 14px; color: rgba(255,255,255,.65); }
.q-sidebar p + p { margin-top: 14px; }
.sb-hr { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 22px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 56px var(--px) 32px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-brand img { height: 40px; width: auto; }
.foot-brand-name { font-size: 17px; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.foot-desc { font-size: 13px; line-height: 1.75; max-width: 280px; color: rgba(255,255,255,.5); }
.foot-h { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.foot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-list a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
.foot-list a:hover { color: var(--white); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; font-size: 12px; color: rgba(255,255,255,.4); text-align: center; }
.foot-bottom p + p { margin-top: 8px; }

/* ============================================================
   MISC
   ============================================================ */
.disclaimer {
  font-size: 13px; color: var(--muted); border-top: 1px solid var(--border);
  padding-top: 24px; line-height: 1.7;
}
.disclaimer.on-dark { border-top-color: rgba(255,255,255,.15); color: rgba(255,255,255,.55); }

/* ---------- Footer disclaimer (replaces the per-page disclaimer section) ---------- */
.footer-disclaimer {
  font-size: 12px; color: rgba(255,255,255,.4);
  max-width: 900px; margin: 12px auto 0;
  line-height: 1.6; text-align: center;
}

ul.bullet-list { list-style: none; margin-top: 16px; margin-bottom: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
ul.bullet-list li { font-size: 15px; color: var(--muted); padding-left: 24px; position: relative; }
ul.bullet-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-img { order: -1; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-img { order: -1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quote-layout { grid-template-columns: 1fr; }
  .q-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img { order: -1; }
  .step-row { grid-template-columns: 56px 1fr; gap: 18px; }
  .step-num-big { width: 56px; height: 56px; font-size: 20px; }
  .step-marker::after { top: 56px; bottom: -18px; }
  .step-content { padding: 26px 24px; margin-bottom: 18px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-row { grid-template-columns: 1fr; direction: ltr !important; }
  .svc-img img { height: 220px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 48px var(--px); }
  .section--sm { padding: 36px var(--px); }
  .hero { padding: 48px var(--px) 56px; }
  .page-hero { padding: 40px var(--px) 48px; }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-detail-grid { grid-template-columns: 1fr; gap: 16px; }
  .area-block { padding: 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  ul.bullet-list { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 44px 1fr; gap: 12px; }
  .step-num-big { width: 44px; height: 44px; font-size: 16px; }
  .step-marker::after { top: 44px; bottom: -12px; }
  .step-content { padding: 20px; margin-bottom: 12px; }
  .step-row-head { gap: 12px; flex-wrap: wrap; }
  .step-row-head .icon-box { width: 36px; height: 36px; }
  .step-row-head .icon-box svg { width: 16px; height: 16px; }
  .cta-band { padding: 48px var(--px); }
}


/* ============================================================
   Jax Cleanout Quotes — Added consent + visual section updates
   ============================================================ */
:root { --shadow: 0 18px 45px rgba(5,25,55,.12); }

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.visual-grid.two { grid-template-columns: repeat(2, 1fr); }

.visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visual-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.visual-card-body { padding: 20px; }
.visual-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}
.visual-card p {
  margin: 0;
  color: var(--muted);
}

.form-meta-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 8px;
}
.form-meta-note a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}
.form-meta-note a:hover { text-decoration: underline; }

.consent-box label {
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: #555 !important;
}

@media (max-width: 900px) {
  .visual-grid,
  .visual-grid.two { grid-template-columns: 1fr; }
  .visual-card img { height: auto; }
}
