/* ═══════════════════════════════════════════════════════
   TOP CLEAN BROS — Design System v2.0
   Premium Local Service — Inspired by Mister Juniper
═══════════════════════════════════════════════════════ */

/* ─── 1. VARIABLES ───────────────────────────────────── */
:root {
  --bg:            #F6F1E8;
  --surface:       #FFFFFF;
  --text:          #1E1E1B;
  --muted:         #6F6A61;
  --primary:       #1F4D3A;
  --primary-dark:  #143226;
  --primary-light: #E8F0EC;
  --accent:        #D98C45;
  --accent-light:  #FBF0E2;
  --border:        #E6DED2;
  --border-dark:   #C8BFB0;
  --dark:          #101612;
  --success:       #2D6A4F;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 100px;

  --shadow-xs: 0 1px 4px rgba(30,30,27,0.05);
  --shadow-sm: 0 2px 12px rgba(30,30,27,0.07);
  --shadow-md: 0 6px 28px rgba(30,30,27,0.10);
  --shadow-lg: 0 12px 48px rgba(30,30,27,0.14);
  --shadow-xl: 0 20px 72px rgba(30,30,27,0.18);

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --section-y: 96px;
  --container:  1200px;
}

/* ─── 2. RESET ───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── 3. TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1.1rem; font-size: 1.02rem; }
p:last-child { margin-bottom: 0; }

/* ─── 4. LAYOUT ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-y) 0; }

/* Alternating backgrounds */
.section-alt  { background-color: var(--surface); }
.section-dark { background-color: var(--dark); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.68); }

/* Centered section header */
.section-header       { text-align: center; margin-bottom: 52px; }
.section-header h2    { margin-bottom: 12px; }
.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.intro-text {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 820px;
  margin: 20px auto 0;
}

/* ─── 5. BADGES / KICKER ─────────────────────────────── */
.mj-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.mj-kicker-blue   { background-color: #E0F0FB; color: #0369A1; }
.mj-kicker-accent { background-color: var(--accent-light); color: var(--accent); }

/* ─── 6. BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31,77,58,0.35);
}
.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}
.btn-secondary:hover {
  background-color: var(--surface);
  border-color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-accent {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { filter: brightness(0.91); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217,140,69,0.35); }
.btn-white {
  background-color: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background-color: var(--primary-light); }

/* ─── 7. CARDS ───────────────────────────────────────── */
.mj-card, .card {
  background-color: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.mj-card:hover, .card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.mj-card-static {
  background-color: var(--dark);
  border-radius: var(--r-xl);
  padding: 64px;
  border: none;
  box-shadow: var(--shadow-xl);
}

/* ─── 8. HEADER ──────────────────────────────────────── */
.mj-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: rgba(246,241,232,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.logo-link {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.logo-dot {
  width: 7px; height: 7px;
  background-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.header-nav ul {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.header-nav ul li a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: all 0.17s ease;
}
.header-nav ul li a:hover {
  color: var(--text);
  background-color: var(--border);
}
.header-action .btn-header-cta {
  padding: 9px 18px;
  font-size: 0.86rem;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-menu-toggle span {
  width: 22px; height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.28s ease;
  display: block;
}
.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg) translateY(4.9px);
}
.mobile-menu-toggle.active span:last-child {
  transform: rotate(-45deg) translateY(-4.9px);
}

/* ─── 9. BREADCRUMB ──────────────────────────────────── */
.breadcrumb-nav {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 4px;
  list-style: none; flex-wrap: wrap;
}
.breadcrumb-item a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.15s;
}
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--border-dark);
  font-size: 1.1rem;
  margin-right: 4px;
}

/* ─── 10. HERO ───────────────────────────────────────── */
.hero {
  padding: calc(var(--section-y) + 72px) 0 var(--section-y);
  background-color: var(--bg);
  overflow: hidden;
}
.hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--primary);
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-content > p {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-buttons {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}
.hero-proofs {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.hero-proof-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--muted);
}
.hero-proof-item::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}
.hero-visual-badge {
  position: absolute;
  bottom: 28px;
  left: -18px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 22px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.hero-visual-badge-icon { font-size: 1.6rem; }
.hero-visual-badge-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.hero-visual-badge-text span { font-size: 0.74rem; color: var(--muted); }

/* Sub-page hero (no inner container grid, single column) */
.hero-subpage {
  background-color: var(--bg);
  padding: calc(var(--section-y) + 72px) 0 var(--section-y);
}
.hero-subpage .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

/* ─── 11. STATS BAND ─────────────────────────────────── */
.stats-band {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.83rem; color: var(--muted); font-weight: 600; }

/* ─── 12. PROBLEM SECTION ────────────────────────────── */
.problem-section { background-color: var(--surface); }
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-content h2 { margin-bottom: 20px; }
.problem-content p  { color: var(--muted); line-height: 1.78; }
.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.problem-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.problem-card-icon { font-size: 1.7rem; margin-bottom: 12px; display: block; }
.problem-card h4  { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.problem-card p   { font-size: 0.84rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ─── 13. SERVICES GRID ──────────────────────────────── */
.services { background-color: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background-color: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card img   { width: 100%; height: 200px; object-fit: cover; }
.service-card h3    { font-size: 1.08rem; margin: 20px 20px 8px; }
.service-card p     { font-size: 0.9rem; color: var(--muted); margin: 0 20px 16px; line-height: 1.6; }
.service-card .btn  { margin: 0 20px 20px; }
.step-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.75;
  padding: 20px 20px 0;
}

/* ─── 14. FEATURES / WHY US ──────────────────────────── */
.why-us          { background-color: var(--bg); }
.service-benefits-section { background-color: var(--bg); }
.why-do-it       { background-color: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background-color: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.feature h3   { font-size: 0.96rem; font-weight: 700; margin-bottom: 8px; }
.feature p    { font-size: 0.87rem; color: var(--muted); margin: 0; line-height: 1.6; }
.section-intro-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ─── 15. PROCESS STEPS ──────────────────────────────── */
.process-section { background-color: var(--surface); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.22s;
}
.process-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.process-step-num {
  width: 44px; height: 44px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  margin-bottom: 18px;
}
.process-card h3  { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-card p   { font-size: 0.87rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ─── 16. FRAMING / PHILOSOPHY ──────────────────────── */
.framing-section { background-color: var(--bg); padding: var(--section-y) 0; }
.framing-card {
  background-color: var(--dark);
  border-radius: var(--r-xl);
  padding: 64px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.framing-card .mj-kicker {
  background-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.framing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin: 14px 0;
  font-style: italic;
}
.framing-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.78;
}
.framing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.framing-item {
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 24px; text-align: left;
}
.framing-item h3 {
  font-size: 0.96rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.framing-item p  { font-size: 0.87rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.6; }

/* ─── 17. PRICING CARDS (homepage) ───────────────────── */
.pricing-cards-section { background-color: var(--surface); }
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.featured {
  background-color: var(--primary);
  border-color: var(--primary);
}
.pricing-card.featured h3,
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-card.featured .pricing-muted,
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,0.72); }
.pricing-card.featured .pricing-list li::before { color: rgba(255,255,255,0.9); }
.pricing-card.featured .pricing-list li  { border-bottom-color: rgba(255,255,255,0.15); }
.pricing-badge {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.pricing-card.featured .pricing-badge { background-color: rgba(255,255,255,0.18); color: #fff; }
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.pricing-amount {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 14px 0 4px; line-height: 1;
}
.pricing-muted { font-size: 0.83rem; color: var(--muted); margin-bottom: 22px; }
.pricing-list  { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.88rem; color: var(--muted);
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.pricing-note { text-align: center; font-size: 0.83rem; color: var(--muted); margin-top: 20px; }

/* ─── 18. PRICING TABLE (sub-pages) ─────────────────── */
.pricing { background-color: var(--bg); }
.pricing-table {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pricing-table thead         { background-color: var(--primary); }
.pricing-table thead th {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.83rem;
  text-align: left;
  padding: 16px 20px;
  letter-spacing: 0.02em;
}
.pricing-table tbody tr      { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background-color: var(--bg); }
.pricing-table tbody td      { padding: 14px 20px; font-size: 0.93rem; color: var(--text); }
td.price-col { font-family: var(--font-head); font-weight: 700; color: var(--primary); white-space: nowrap; }
.pricing-benefits { margin-top: 18px; display: flex; gap: 24px; flex-wrap: wrap; }
.pricing-benefits p { font-size: 0.88rem; font-weight: 600; color: var(--muted); margin: 0; display: flex; align-items: center; gap: 5px; }

/* ─── 19. TESTIMONIALS ───────────────────────────────── */
.testimonials { background-color: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.22s, transform 0.22s;
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stars            { font-size: 0.88rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p    { font-size: 0.93rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.testimonial cite { font-size: 0.8rem; font-weight: 700; font-family: var(--font-head); color: var(--muted); font-style: normal; }

/* ─── 20. FAQ ACCORDION ──────────────────────────────── */
.faq-section { background-color: var(--bg); }
.faq-accordion { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background-color: var(--surface);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(31,77,58,0.09); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 0.93rem; color: var(--text);
  transition: color 0.15s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.4rem; color: var(--primary); flex-shrink: 0; transition: transform 0.25s; line-height: 1; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p {
  padding: 16px 24px 22px;
  font-size: 0.93rem; color: var(--muted); line-height: 1.76; margin: 0;
  border-top: 1px solid var(--border);
}

/* ─── 21. WIZARD / DEVIS FORM ────────────────────────── */
.contact { background-color: var(--surface); }
.wizard-card {
  max-width: 760px; margin: 0 auto;
  background-color: var(--bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.wizard-header           { text-align: center; margin-bottom: 32px; }
.wizard-header h3        { font-size: 1.55rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.wizard-header p         { font-size: 0.93rem; color: var(--muted); margin: 0; }
.wizard-progress {
  display: flex; align-items: center;
  margin-bottom: 36px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px;
}
.wizard-progress-step {
  flex: 1; text-align: center; padding: 9px 14px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  color: var(--muted); border-radius: var(--r-pill);
  transition: all 0.2s;
}
.wizard-progress-step.active    { background-color: var(--primary); color: #fff; }
.wizard-progress-step.completed { background-color: var(--primary-light); color: var(--primary); }
.wizard-content    { min-height: 280px; }
.wizard-step-panel { display: none; }
.wizard-step-panel.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wizard-step-panel h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.wizard-options-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 12px; }
.wizard-option-card {
  background-color: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 12px; text-align: center; cursor: pointer;
  transition: all 0.18s;
}
.wizard-option-card:hover, .wizard-option-card.selected {
  border-color: var(--primary); background-color: var(--primary-light); transform: translateY(-1px);
}
.option-icon      { font-size: 1.7rem; display: block; margin-bottom: 7px; }
.wizard-option-card h5 { font-family: var(--font-head); font-size: 0.83rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.option-desc      { font-size: 0.73rem; color: var(--muted); }
.wizard-hint      { font-size: 0.83rem; color: var(--muted); text-align: center; margin-top: 10px; }
.wizard-volume-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.wizard-volume-item {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 13px 18px;
  background-color: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
}
.wizard-volume-label   { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.wizard-volume-controls { display: flex; align-items: center; gap: 8px; }
.wizard-volume-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background-color: var(--surface);
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: all 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.wizard-volume-btn:hover { border-color: var(--primary); background-color: var(--primary-light); color: var(--primary); }
.wizard-volume-value { font-family: var(--font-head); font-weight: 700; font-size: 1rem; min-width: 34px; text-align: center; }
.wizard-summary-box {
  background-color: var(--surface);
  border: 2px solid var(--primary);
  border-radius: var(--r-lg); padding: 22px; text-align: center;
}
.wizard-summary-label { font-family: var(--font-head); font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); display: block; margin-bottom: 8px; }
.wizard-price-estimate { font-family: var(--font-head); font-size: 2.3rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1; }
.wizard-summary-note   { font-size: 0.8rem; color: var(--muted); margin: 0; }
.form-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 6px; }
.form-group        { display: flex; flex-direction: column; gap: 5px; }
.form-group-full   { grid-column: span 2; }
.form-group label  { font-size: 0.8rem; font-weight: 700; font-family: var(--font-head); color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 15px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 0.93rem; color: var(--text);
  background-color: var(--surface); transition: border-color 0.15s; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(31,77,58,0.1); }
.checkbox-item { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-item input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--primary); }
.checkbox-item label { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }
.wizard-buttons {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
}

/* ─── 22. B2B SECTION ────────────────────────────────── */
.b2b-section { background-color: var(--primary-dark); color: #fff; }
.b2b-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.b2b-content h2        { color: #fff; margin-bottom: 16px; }
.b2b-content > p       { color: rgba(255,255,255,0.68); font-size: 1.05rem; margin-bottom: 32px; }
.b2b-benefits          { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.b2b-benefit           { display: flex; align-items: center; gap: 14px; }
.b2b-benefit-icon {
  width: 40px; height: 40px;
  background-color: rgba(255,255,255,0.1); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.b2b-benefit-text strong { display: block; color: #fff; font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; }
.b2b-benefit-text span   { font-size: 0.81rem; color: rgba(255,255,255,0.58); }
.b2b-visual {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); padding: 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.b2b-use-case {
  display: flex; align-items: center; gap: 14px;
  background-color: rgba(255,255,255,0.07);
  border-radius: var(--r-md); padding: 14px 16px;
}
.b2b-use-case-icon { font-size: 1.3rem; }
.b2b-use-case span { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.83); }

/* ─── 23. ABOUT SECTION ──────────────────────────────── */
.about-section { background-color: var(--bg); }
.about-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual  { position: relative; }
.about-img     { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.about-badge-overlay {
  position: absolute; bottom: 28px; right: -18px;
  background-color: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px 22px; box-shadow: var(--shadow-lg); text-align: center;
}
.about-badge-overlay strong { display: block; font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; color: var(--primary); }
.about-badge-overlay span   { font-size: 0.78rem; color: var(--muted); }
.about-content h2 { margin-bottom: 18px; }
.about-content p  { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-values     { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.about-value {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; font-weight: 700; color: var(--text);
}
.about-value::before {
  content: "✓";
  width: 26px; height: 26px;
  background-color: var(--primary-light); color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
}

/* ─── 24. TRUST SECTION ──────────────────────────────── */
.trust-section { background-color: var(--bg); }
.trust-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.trust-content h2 { margin-bottom: 18px; }
.trust-content p  { color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.trust-cta-group  { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-cards      { display: flex; flex-direction: column; gap: 14px; }
.trust-card {
  background-color: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 18px 22px; display: flex; align-items: center; gap: 16px; transition: box-shadow 0.2s;
}
.trust-card:hover           { box-shadow: var(--shadow-sm); }
.trust-card-icon            { font-size: 1.7rem; flex-shrink: 0; }
.trust-card-text strong     { display: block; font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.trust-card-text span       { font-size: 0.81rem; color: var(--muted); }

/* ─── 25. FINAL CTA SECTION ──────────────────────────── */
.cta-final-section {
  background-color: var(--primary);
  padding: var(--section-y) 0;
  text-align: center;
}
.cta-final-section h2  { color: #fff; margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.cta-final-text {
  font-size: 1.08rem; color: rgba(255,255,255,0.75);
  max-width: 540px; margin: 0 auto 28px; line-height: 1.7;
}
.cta-final-badges      { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-pill);
  padding: 5px 14px; font-size: 0.8rem; font-weight: 700; font-family: var(--font-head);
}
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─── 26. LOCAL AREAS LINKS ──────────────────────────── */
.local-areas-links  { background-color: var(--surface); }
.links-grid         { display: flex; flex-wrap: wrap; gap: 8px; }
.link-card-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 18px;
  background-color: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.86rem; font-weight: 600; font-family: var(--font-head); color: var(--text);
  transition: all 0.18s;
}
.link-card-btn:hover {
  background-color: var(--primary-light); border-color: var(--primary); color: var(--primary); transform: translateY(-1px);
}
.link-card-btn.active-link { background-color: var(--primary); border-color: var(--primary); color: #fff; }

/* ─── 27. BEFORE / AFTER ─────────────────────────────── */
.before-after-section { background-color: var(--surface); }
.before-after-grid    { margin-top: 40px; display: flex; justify-content: center; }
.before-after-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; max-width: 760px; width: 100%; box-shadow: var(--shadow-md);
}
.before-after-img { position: relative; overflow: hidden; }
.before-after-img img { display: block; width: 100%; height: 300px; object-fit: cover; }
.before-img       { border-right: 1px solid var(--border); }
.ba-label {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border: 1px solid var(--border);
}
.ba-label-before { background-color: #fff5f5; color: #dc2626; }
.ba-label-after  { background-color: #f0fdf4; color: #16a34a; }
.before-after-note { text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--muted); }

/* ─── Credit d'impôt section ─────────────────────────── */
.credit-impot-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2d6b50 100%);
  padding: var(--section-pad) 0; color: #fff;
}
.credit-impot-section .section-header { color: #fff; }
.credit-impot-section .section-header .mj-kicker { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.25); }
.credit-impot-section h2 { color: #fff; }
.credit-impot-section .section-intro { color: rgba(255,255,255,.85); }
.credit-impot-grid { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.credit-impot-highlight { text-align: center; background: rgba(255,255,255,.12); border-radius: var(--r-xl); padding: 36px 24px; border: 1px solid rgba(255,255,255,.2); }
.credit-pct { font-family: var(--font-head); font-size: 4.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.credit-label { font-size: 1rem; color: rgba(255,255,255,.9); margin-top: 8px; font-weight: 600; }
.credit-impot-content { color: rgba(255,255,255,.9); }
.credit-impot-content p { margin-bottom: 16px; line-height: 1.7; }
.credit-impot-content strong { color: #fff; }
.credit-example { background: rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 20px 24px; margin: 20px 0; border-left: 4px solid var(--accent); }
.credit-example-title { font-weight: 700; color: var(--accent); margin-bottom: 10px !important; }
.credit-example ul { list-style: none; padding: 0; margin: 0; }
.credit-example li { padding: 4px 0; font-size: 0.95rem; }
.credit-impot-section .btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); margin-top: 8px; }
.credit-impot-section .btn-primary:hover { background: #c07a38; border-color: #c07a38; }
@media (max-width: 768px) {
  .credit-impot-grid { grid-template-columns: 1fr; gap: 32px; }
  .credit-pct { font-size: 3.5rem; }
}

/* ─── 28. SUB-PAGE SECTIONS ──────────────────────────── */
.service-intro           { background-color: var(--surface); }
.cleaning-method-steps   { background-color: var(--surface); }
.method-steps-section    { background-color: var(--surface); }
.types-cleaned           { background-color: var(--bg); }
.nearby-cities-section   { background-color: var(--bg); }
.local-linking-section   { background-color: var(--bg); }
.other-services-city     { background-color: var(--bg); }
.city-services-list      { background-color: var(--bg); }
.types-list              { list-style: none; padding: 0; max-width: 600px; margin: 0 auto; }
.types-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  font-size: 0.97rem; font-weight: 700; font-family: var(--font-head); color: var(--text);
}
.types-list li:last-child { border-bottom: none; }

/* ─── 29. STICKY MOBILE CTA ──────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 10px 14px; gap: 8px;
  box-shadow: 0 -4px 20px rgba(30,30,27,0.1);
}
.sticky-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 12px 6px; border-radius: var(--r-md);
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  text-decoration: none; transition: all 0.15s;
}
.sticky-cta-phone { background-color: var(--primary);     color: #fff; border: 1px solid var(--primary); }
.sticky-cta-wa    { background-color: #25D366;            color: #fff; border: 1px solid #25D366; }
.sticky-cta-quote { background-color: var(--text);        color: #fff; border: 1px solid var(--text); }

/* ─── 30. FOOTER ─────────────────────────────────────── */
.mj-footer {
  background-color: var(--dark);
  color: rgba(255,255,255,0.68);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: block;
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: #fff;
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.brand-tagline { font-size: 0.87rem; color: rgba(255,255,255,0.52); line-height: 1.65; margin-bottom: 10px; max-width: 268px; }
.brand-quote   { font-size: 0.83rem; font-style: italic; color: rgba(255,255,255,0.32); margin: 0; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.77rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.62); transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; }
.contact-col .contact-item {
  font-size: 0.86rem; color: rgba(255,255,255,0.58);
  margin-bottom: 9px; display: flex; align-items: flex-start; gap: 7px;
}
.footer-phone { color: rgba(255,255,255,0.72); font-weight: 700; }
.footer-phone:hover { color: #fff; }
.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); margin: 0; }

/* ─── 31. RESPONSIVE — 1024px ────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-y: 72px; }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)              { border-right: none; }
  .stat-item:nth-child(3)              { border-right: 1px solid var(--border); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2)              { border-bottom: 1px solid var(--border); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .b2b-inner        { grid-template-columns: 1fr; gap: 40px; }
  .about-inner      { grid-template-columns: 1fr; gap: 40px; }
  .about-img        { height: 340px; }
  .trust-inner      { grid-template-columns: 1fr; gap: 40px; }
  .problem-inner    { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ─── 32. RESPONSIVE — 768px ─────────────────────────── */
@media (max-width: 768px) {
  :root { --section-y: 56px; }

  .header-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
  }
  .header-nav.active { display: block; }
  .header-nav ul     { flex-direction: column; gap: 2px; align-items: stretch; }
  .header-nav ul li a { display: block; padding: 11px 14px; }
  .header-action         { display: none; }
  .mobile-menu-toggle    { display: flex; }
  .sticky-mobile-cta     { display: flex; }
  body                   { padding-bottom: 68px; }

  .hero .hero-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hero-subpage .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-content          { max-width: 100%; }
  .hero-image img        { height: 300px; }
  .hero-visual-badge     { left: 12px; bottom: 12px; }

  .services-grid         { grid-template-columns: 1fr 1fr; }
  .features-grid         { grid-template-columns: 1fr 1fr; }
  .process-grid          { grid-template-columns: 1fr 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .framing-grid          { grid-template-columns: 1fr; }
  .problem-cards         { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom         { flex-direction: column; text-align: center; }

  .framing-card          { padding: 36px 24px; }
  .mj-card-static        { padding: 28px; }
  .wizard-card           { padding: 24px 18px; }
  .wizard-options-grid   { grid-template-columns: repeat(2, 1fr); }
  .form-grid             { grid-template-columns: 1fr; }
  .form-group-full       { grid-column: span 1; }

  .before-after-card     { grid-template-columns: 1fr; }
  .before-img            { border-right: none; border-bottom: 1px solid var(--border); }
  .about-badge-overlay   { right: 12px; bottom: 12px; }
  .trust-cta-group       { flex-direction: column; }
  .cta-buttons           { flex-direction: column; align-items: center; }
  .hero-buttons          { flex-direction: column; }
  .hero-buttons .btn     { width: 100%; text-align: center; }

  .pricing-cards-grid    { grid-template-columns: 1fr; max-width: 100%; }
}

/* ─── 33. RESPONSIVE — 480px ─────────────────────────── */
@media (max-width: 480px) {
  :root { --section-y: 48px; }
  .container          { padding: 0 16px; }
  .services-grid      { grid-template-columns: 1fr; }
  .features-grid      { grid-template-columns: 1fr; }
  .process-grid       { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .wizard-options-grid { grid-template-columns: 1fr 1fr; }
  h1                  { font-size: 2rem; }
  h2                  { font-size: 1.6rem; }
}
