/* ============================================================
   Mobile Oven Clean — Visual Polish Pass
   Scope: all 505 pages, template-level
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS — extended spacing + shadow scale
   ───────────────────────────────────────────────────────────── */
:root {
  --sp-1: 8px;
  --sp-2: 12px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 64px;
  --sp-8: 80px;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --shadow-pink: 0 6px 28px rgba(255,45,143,.22);
  --shadow-pink-lg: 0 12px 48px rgba(255,45,143,.28);

  --border-light: 1.5px solid #f0e8f4;
  --border-mid:   2px solid #e5e7eb;
  --border-pink:  2px solid #ff2d8f;
}

/* ─────────────────────────────────────────────────────────────
   §1  FLOATING WHATSAPP CTA — fixed bottom-right, all pages
   ───────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 96px;          /* sits above mob-bar on mobile */
  right: 20px;
  z-index: 9988;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px 12px 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

.wa-float svg {
  flex-shrink: 0;
}

.wa-float-label {
  display: inline;
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 90px;
    right: 14px;
    padding: 11px 14px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    justify-content: center;
  }
  .wa-float-label { display: none; }
}

@media (min-width: 769px) {
  .wa-float {
    bottom: 32px;
    right: 28px;
  }
}

/* ─────────────────────────────────────────────────────────────
   §2  HERO — cleaner visual blocks
   ───────────────────────────────────────────────────────────── */

/* Left column rhythm */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

/* Move proof tag to right-side panel via CSS – hide in left col */
.hero-proof {
  display: none;
}

.hero h1 {
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: var(--sp-4);
  color: #fff;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(255,255,255,.9);
  margin-bottom: var(--sp-3);
  max-width: 520px;
}

.hero-local-copy {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
  max-width: 520px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.92);
  font-size: .9rem;
  font-weight: 600;
}

.hero-bullets li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* CTA row */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  align-items: center;
}

/* WhatsApp button in hero */
.hero-btns .hero-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all .2s;
  min-height: 44px;
}

.hero-btns .hero-btn-wa:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 6px var(--sp-4);
  margin-bottom: var(--sp-2);
}

.hero-micro span {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-micro span::before {
  content: '✓';
  color: rgba(255,255,255,.6);
  font-size: .68rem;
}

/* Right panel — unified image + quote card */
.hero-right-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-pink-lg);
  background: #fff;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  flex-shrink: 0;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

/* Proof badge overlaid on image */
.hero-image-proof {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.2);
}

.hero-image-proof .proof-arrow { color: #ff2d8f; margin: 0 4px; }

.quote-card {
  border-radius: 0;
  box-shadow: none;
  border-top: 2px solid #f0e0ea;
}

/* ─────────────────────────────────────────────────────────────
   §3  UNIVERSAL CARD LANGUAGE
   radius, shadow, border, padding — consistent across all cards
   ───────────────────────────────────────────────────────────── */

/* Service cards */
.svc-card-main,
.service-card {
  border-radius: var(--radius-lg) !important;
  border: var(--border-mid) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: border-color .25s, box-shadow .25s, transform .25s !important;
  overflow: hidden;
}

.svc-card-main:hover,
.service-card:hover {
  border-color: #ff2d8f !important;
  box-shadow: var(--shadow-pink) !important;
  transform: translateY(-4px) !important;
}

.svc-body,
.service-body {
  padding: var(--sp-5) var(--sp-4) !important;
}

.svc-body h3,
.service-body h3 {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  margin-bottom: var(--sp-2) !important;
  color: #1a1a1a !important;
  letter-spacing: -.01em;
}

.svc-body p,
.service-body p {
  font-size: .88rem !important;
  color: #6b7280 !important;
  line-height: 1.65 !important;
  margin-bottom: var(--sp-4) !important;
}

/* Why-choose-us cards */
.why-card {
  border-radius: var(--radius-lg) !important;
  border: var(--border-light) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: var(--sp-5) var(--sp-4) !important;
  background: #fff !important;
  transition: border-color .25s, box-shadow .25s, transform .25s !important;
}

.why-card:hover {
  border-color: #ff2d8f !important;
  box-shadow: var(--shadow-pink) !important;
  transform: translateY(-3px) !important;
}

.why-icon,
.why-card .why-icon {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255,45,143,.1) !important;
  border-radius: var(--radius-sm) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  margin-bottom: var(--sp-3) !important;
  flex-shrink: 0 !important;
}

.why-card h4 {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  margin-bottom: 6px !important;
}

.why-card p {
  font-size: .88rem !important;
  color: #6b7280 !important;
  line-height: 1.65 !important;
}

/* Review cards */
.review-card {
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  padding: var(--sp-5) var(--sp-4) !important;
  backdrop-filter: blur(8px);
}

.review-stars {
  font-size: 1rem !important;
  letter-spacing: 2px !important;
  margin-bottom: var(--sp-3) !important;
}

.review-text {
  font-size: .92rem !important;
  line-height: 1.72 !important;
  margin-bottom: var(--sp-4) !important;
}

/* FAQ items */
.faq-item {
  border-radius: var(--radius-md) !important;
  border: var(--border-mid) !important;
  box-shadow: var(--shadow-sm) !important;
  margin-bottom: var(--sp-2) !important;
  transition: border-color .2s, box-shadow .2s !important;
  overflow: hidden;
}

.faq-item.open {
  border-color: #ff2d8f !important;
  box-shadow: var(--shadow-pink) !important;
}

.faq-q,
.faq-question {
  padding: var(--sp-4) var(--sp-5) !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: var(--sp-3) !important;
  cursor: pointer !important;
  min-height: 56px !important;
  user-select: none;
}

.faq-a,
.faq-answer {
  background: #fdfafb;
  border-top: 1px solid #f0e8f4;
}

.faq-a p,
.faq-answer p {
  padding: var(--sp-4) var(--sp-5) !important;
  font-size: .9rem !important;
  line-height: 1.75 !important;
  color: #4b5563 !important;
  margin: 0 !important;
}

.faq-chevron {
  width: 28px !important;
  height: 28px !important;
  background: rgba(255,45,143,.1) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  font-size: 1.1rem !important;
  color: #ff2d8f !important;
  transition: transform .3s, background .2s !important;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg) !important;
  background: #ff2d8f !important;
  color: #fff !important;
}

/* Area / location cards */
.area-card {
  border-radius: var(--radius-md) !important;
  border: var(--border-mid) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: var(--sp-4) !important;
  transition: border-color .25s, box-shadow .25s, transform .25s !important;
}

.area-card:hover {
  border-color: #ff2d8f !important;
  box-shadow: var(--shadow-pink) !important;
  transform: translateY(-3px) !important;
}

/* ─────────────────────────────────────────────────────────────
   §4  TRUST BADGES — mini-cards instead of separated strip
   ───────────────────────────────────────────────────────────── */
.stats-bar {
  background: #fff;
  padding: var(--sp-5) 0 !important;
  border-top: var(--border-light);
  border-bottom: var(--border-light);
}

.stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: var(--sp-4) !important;
}

.stat-item {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-md) !important;
  padding: var(--sp-4) var(--sp-3) !important;
  text-align: center !important;
  box-shadow: var(--shadow-sm) !important;
  transition: box-shadow .2s !important;
}

.stat-item:hover {
  box-shadow: var(--shadow-md) !important;
}

.stat-num {
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  color: #ff2d8f !important;
  line-height: 1 !important;
  margin-bottom: 4px !important;
}

.stat-label {
  font-size: .8rem !important;
  font-weight: 700 !important;
  color: #6b7280 !important;
}

/* Hero trust icons row */
.hero-trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.hero-trust-icons span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────
   §5  SECTION HEADERS — consistent spacing
   ───────────────────────────────────────────────────────────── */
.section-header {
  margin-bottom: var(--sp-7) !important;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,45,143,.1);
  color: #ff2d8f;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem) !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  letter-spacing: -.02em !important;
  margin-bottom: var(--sp-3) !important;
}

.section-sub {
  font-size: .98rem !important;
  color: #6b7280 !important;
  line-height: 1.72 !important;
  max-width: 580px !important;
}

/* ─────────────────────────────────────────────────────────────
   §6  SEO CONTENT BLOCKS — visual chunking
   ───────────────────────────────────────────────────────────── */
.seo-inner h2,
.seo-block h2,
.hub-final-content h2 {
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  margin-top: var(--sp-6) !important;
  margin-bottom: var(--sp-3) !important;
  color: #1a1a1a !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #f0e8f4 !important;
}

.seo-inner h3,
.seo-block h3,
.hub-final-content h3 {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  margin-top: var(--sp-5) !important;
  margin-bottom: var(--sp-2) !important;
  color: #1a1a1a !important;
}

.seo-inner p,
.seo-block p,
.hub-final-content p {
  font-size: .95rem !important;
  line-height: 1.78 !important;
  color: #4b5563 !important;
  margin-bottom: var(--sp-4) !important;
}

.seo-inner ul,
.seo-block ul,
.hub-final-content ul {
  margin: var(--sp-3) 0 var(--sp-5) 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: var(--sp-2) !important;
}

.seo-inner ul li,
.seo-block ul li,
.hub-final-content ul li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: .92rem !important;
  color: #374151 !important;
  line-height: 1.6 !important;
}

.seo-inner ul li::before,
.seo-block ul li::before,
.hub-final-content ul li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(255,45,143,.12);
  color: #ff2d8f;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  margin-top: 2px;
}

/* Highlight box for key stats/callouts in SEO sections */
.seo-highlight {
  background: linear-gradient(135deg, rgba(255,45,143,.06) 0%, rgba(255,45,143,.03) 100%);
  border: 1.5px solid rgba(255,45,143,.2);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-5) 0;
}

.seo-highlight p {
  margin: 0 !important;
  font-size: .92rem !important;
  color: #374151 !important;
}

/* ─────────────────────────────────────────────────────────────
   §7  CTA BAND — tightened and polished
   ───────────────────────────────────────────────────────────── */
.cta-band {
  padding: var(--sp-8) 0 !important;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  line-height: 1.15 !important;
  margin-bottom: var(--sp-2) !important;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}

/* WhatsApp button in CTA band */
.cta-btns .btn-wa,
.cta-btns a[href*="wa.me"] {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
  font-weight: 800 !important;
}

.cta-btns .btn-wa:hover,
.cta-btns a[href*="wa.me"]:hover {
  background: #1ebe57 !important;
  border-color: #1ebe57 !important;
  transform: translateY(-2px) !important;
}

/* ─────────────────────────────────────────────────────────────
   §8  PROCESS STEPS — polished
   ───────────────────────────────────────────────────────────── */
.step-card {
  position: relative;
}

.step-num {
  width: 72px !important;
  height: 72px !important;
  font-size: 1.8rem !important;
  border-width: 3px !important;
  margin-bottom: var(--sp-4) !important;
}

.step-card h4 {
  font-size: 1rem !important;
  margin-bottom: 8px !important;
}

.step-card p {
  font-size: .86rem !important;
  line-height: 1.65 !important;
}

/* ─────────────────────────────────────────────────────────────
   §9  BEFORE/AFTER GALLERY — tightened panels
   ───────────────────────────────────────────────────────────── */
.ba-card {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-md) !important;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s !important;
}

.ba-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-pink-lg) !important;
}

/* ─────────────────────────────────────────────────────────────
   §10  FOOTER — polished
   ───────────────────────────────────────────────────────────── */
footer {
  padding: var(--sp-8) 0 0 !important;
}

.footer-col h4 {
  font-size: .9rem !important;
  letter-spacing: 1.2px !important;
  margin-bottom: var(--sp-4) !important;
  padding-bottom: var(--sp-2) !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
}

.footer-links a {
  font-size: .87rem !important;
  padding: 3px 0 !important;
  display: block !important;
}

/* ─────────────────────────────────────────────────────────────
   §11  BUTTONS — unified rounded style
   ───────────────────────────────────────────────────────────── */
.btn {
  border-radius: var(--radius-md) !important;
  font-weight: 800 !important;
  letter-spacing: .2px !important;
  transition: all .22s !important;
}

.btn-primary {
  box-shadow: 0 4px 16px rgba(255,45,143,.35) !important;
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255,45,143,.45) !important;
  transform: translateY(-2px) !important;
}

/* ─────────────────────────────────────────────────────────────
   §12  PAGE HERO (area pages) — tighter, consistent
   ───────────────────────────────────────────────────────────── */
.page-hero {
  padding: var(--sp-8) 0 var(--sp-7) !important;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.6rem) !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  margin-bottom: var(--sp-3) !important;
}

.page-hero .page-hero-lead {
  font-size: 1.02rem !important;
  line-height: 1.72 !important;
  color: rgba(255,255,255,.88) !important;
  margin-bottom: var(--sp-5) !important;
  max-width: 560px !important;
}

.page-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.pht-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   §13  AREA-STATS BOX (on area pages) — card style
   ───────────────────────────────────────────────────────────── */
.area-stats-box {
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: var(--radius-lg) !important;
  padding: var(--sp-5) !important;
  backdrop-filter: blur(8px) !important;
}

.area-stats-box .stat-num {
  color: #fff !important;
  font-size: 2rem !important;
}

.area-stats-box .stat-label {
  color: rgba(255,255,255,.65) !important;
}

/* ─────────────────────────────────────────────────────────────
   §14  MOBILE-SPECIFIC POLISH
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero left col: tighter */
  .hero-content { text-align: left !important; }
  .hero h1 { font-size: 1.6rem !important; margin-bottom: var(--sp-3) !important; }
  .hero-sub { font-size: .9rem !important; margin-bottom: var(--sp-3) !important; }
  .hero-local-copy { display: none; }

  /* Trust badges: scroll strip on mobile */
  .stats-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    gap: var(--sp-2) !important;
    padding: 0 var(--sp-3) !important;
  }
  .stats-grid::-webkit-scrollbar { display: none; }
  .stat-item {
    flex: 0 0 auto !important;
    min-width: 110px !important;
    padding: var(--sp-3) var(--sp-2) !important;
  }
  .stat-num { font-size: 1.65rem !important; }
  .stat-label { font-size: .7rem !important; }

  /* FAQs: tighter padding */
  .faq-q, .faq-question {
    padding: var(--sp-3) var(--sp-4) !important;
    font-size: .9rem !important;
  }
  .faq-a p, .faq-answer p {
    padding: var(--sp-3) var(--sp-4) !important;
    font-size: .88rem !important;
  }

  /* Why features: 2-col */
  .why-features { grid-template-columns: 1fr 1fr !important; gap: var(--sp-2) !important; }
  .why-card { padding: var(--sp-3) !important; }
  .why-card h4 { font-size: .88rem !important; }
  .why-card p { font-size: .8rem !important; }

  /* SEO blocks: tighter */
  .seo-inner h2 { font-size: 1.15rem !important; margin-top: var(--sp-5) !important; }
  .seo-inner h3 { font-size: .95rem !important; }
  .seo-inner p  { font-size: .88rem !important; }

  /* Section spacing */
  section { padding: var(--sp-7) 0 !important; }

  /* CTA buttons stack */
  .hero-btns {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: var(--sp-2) !important;
  }
  .hero-btns .btn,
  .hero-btns a {
    width: 100% !important;
    justify-content: center !important;
  }
  .hero-btns .hero-btn-wa {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Page hero polish */
  .page-hero { padding: var(--sp-6) 0 var(--sp-5) !important; }
  .page-hero h1 { font-size: 1.4rem !important; }

  /* Footer: single col */
  .footer-grid { grid-template-columns: 1fr !important; }

  /* WA float: circle only */
  .wa-float { width: 52px; height: 52px; padding: 0; border-radius: 50%; justify-content: center; }
  .wa-float-label { display: none; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-item { border-right: none !important; }
}

/* ─────────────────────────────────────────────────────────────
   §15  SPACING UTILITY OVERRIDES — enforce scale on sections
   ───────────────────────────────────────────────────────────── */
section { padding: var(--sp-8) 0; }

.section-header { margin-bottom: var(--sp-7); }

/* Remove random padding values from inline styles where possible */
.seo-block,
.seo-inner,
.hub-content-section {
  padding: var(--sp-8) 0;
}

/* Consistent gap between service-page sections */
.service-page-section {
  padding: var(--sp-7) 0;
  border-top: 1px solid #f5f0f7;
}


/* ============================================================
   Hero & SEO Polish — from brief (exact spec)
   ============================================================ */

/* ── Hero right panel ───────────────────────────────────── */
.hero-right-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-image-wrap {
  margin-bottom: 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.08);
}

.hero-image-meta {
  margin-top: 0;
  text-align: center;
  background: rgba(255,255,255,.08);
  padding: 12px 16px;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
}

.hero-image-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.proof-before { color: #fb923c; }
.proof-arrow  { color: rgba(255,255,255,.55); }
.proof-after  { color: #4ade80; }
.proof-time   { color: rgba(255,255,255,.92); }

.hero-image-subproof {
  margin-top: 8px;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}

/* Quote card connects flush to image-meta */
.hero-right-panel .quote-card {
  border-radius: 0 0 20px 20px !important;
  border-top: none !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.18) !important;
}

/* ── SEO section component classes — brief spec ─────────── */
.seo-inner {
  max-width: 880px;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 34px;
}

.seo-mini-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 6px 22px rgba(0,0,0,.04);
  transition: border-color .2s, box-shadow .2s;
}

.seo-mini-card:hover {
  border-color: #ff2d8f;
  box-shadow: 0 6px 22px rgba(255,45,143,.12);
}

.seo-mini-card h3 {
  margin: 0 0 10px;
  font-size: .96rem;
  font-weight: 800;
  color: #1a1a1a;
}

.seo-mini-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.7;
  color: #6b7280;
}

.seo-section-block {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
  margin: 26px 0;
}

.seo-section-block h3 {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  margin: 0 0 12px !important;
  border-bottom: none !important;
}

.seo-section-block p {
  font-size: .92rem !important;
  line-height: 1.75 !important;
  color: #4b5563 !important;
  margin-bottom: 14px !important;
}

.seo-links-box {
  background: #fff0f7;
  border: 1.5px solid rgba(255,45,143,.16);
  border-radius: 18px;
  padding: 22px;
  margin-top: 30px;
}

.seo-links-box h3 {
  font-size: 1rem !important;
  font-weight: 800 !important;
  margin: 0 0 10px !important;
  color: #1a1a1a !important;
  border-bottom: none !important;
}

.seo-links-box p {
  margin-bottom: 0 !important;
  font-size: .88rem !important;
  line-height: 1.8 !important;
  color: #4b5563 !important;
}

.seo-links-box a {
  color: #ff2d8f !important;
  font-weight: 700 !important;
}

.seo-links-box a:hover {
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  .seo-card-grid {
    grid-template-columns: 1fr;
  }
  .seo-section-block {
    padding: 20px;
    border-radius: 16px;
  }
  .seo-links-box {
    padding: 18px;
    border-radius: 14px;
  }
  /* Hero image-meta on mobile */
  .hero-image-meta {
    padding: 10px 14px;
  }
  .hero-image-proof {
    font-size: .76rem;
    padding: 6px 12px;
    gap: 5px;
  }
  .hero-image-wrap {
    border-radius: 14px 14px 0 0;
  }
  .hero-right-panel .quote-card {
    border-radius: 0 0 14px 14px !important;
  }
}

/* ============================================================
   Hero Text Block — spacing + visual hierarchy polish
   ============================================================ */

/* Sub-headline: slightly looser, cleaner line-height */
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
  max-width: 520px;
  letter-spacing: .01em;
}

/* City coverage row — chips instead of a dense paragraph */
.hero-coverage-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
}

.hero-coverage-label {
  font-size: .72rem;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  flex-shrink: 0;
}

.hero-coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex: 1;
}

.hero-coverage-chips span {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-coverage-note {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  flex-shrink: 0;
  font-style: italic;
}

/* Bullet list — icon + text two-part layout */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  line-height: 1.4;
}

.hb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}

/* Tighten gap between bullets and CTA row */
.hero-btns {
  margin-top: 4px;
}

/* Mobile: compress coverage chips */
@media (max-width: 768px) {
  .hero-sub {
    font-size: .9rem;
    margin-bottom: 16px;
  }

  .hero-coverage-row {
    padding: 10px 12px;
    gap: 6px;
    border-radius: 10px;
    margin-bottom: 18px;
  }

  .hero-coverage-chips span {
    font-size: .7rem;
    padding: 2px 8px;
  }

  .hero-coverage-label,
  .hero-coverage-note {
    font-size: .68rem;
  }

  .hero-bullets {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-bullets li {
    font-size: .85rem;
  }

  .hb-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: .68rem;
  }
}

/* ============================================================
   Combined Trust Section — no duplication, clean two-row layout
   ============================================================ */
.trust-combined {
  background: #fff;
  border-top: 1px solid #f0e8f4;
  border-bottom: 3px solid #ff2d8f;
}

/* ── Row 1: Qualitative badges ─────────────────────────── */
.trust-badges-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 20px 0;
  border-bottom: 1px solid #f5f0f7;
  gap: 0;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px;
  flex: 1;
  min-width: 180px;
}

.trust-badge-sep {
  width: 1px;
  background: #f0e8f4;
  align-self: stretch;
  flex-shrink: 0;
}

.tbi-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.tbi-google {
  background: #f8f9ff;
  border: 1.5px solid #e8eaf6;
}

.tbi-shield { background: rgba(59,130,246,.08); border: 1.5px solid rgba(59,130,246,.15); }
.tbi-local  { background: rgba(239,68,68,.06);  border: 1.5px solid rgba(239,68,68,.12); }
.tbi-eco    { background: rgba(34,197,94,.07);  border: 1.5px solid rgba(34,197,94,.15); }

.tbi-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tbi-text strong {
  font-size: .88rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.tbi-text span {
  font-size: .75rem;
  color: #9ca3af;
  font-weight: 500;
}

/* ── Row 2: Stats numbers ──────────────────────────────── */
.trust-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  padding: 18px 0;
  gap: 0;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 32px;
  text-align: center;
}

.ts-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #ff2d8f;
  line-height: 1;
  letter-spacing: -.03em;
}

.ts-lbl {
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.ts-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .trust-badges-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .trust-badge-item {
    padding: 14px 14px;
    border-bottom: 1px solid #f5f0f7;
    min-width: 0;
  }

  /* Hide separators on mobile — grid handles spacing */
  .trust-badge-sep { display: none; }

  /* Right-column items get left border */
  .trust-badge-item:nth-child(3),
  .trust-badge-item:nth-child(5) {
    border-left: 1px solid #f5f0f7;
  }

  .tbi-icon { width: 32px; height: 32px; font-size: .9rem; }
  .tbi-text strong { font-size: .8rem; }
  .tbi-text span { font-size: .7rem; }

  .trust-stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    gap: 0;
  }

  .trust-stat {
    padding: 14px 8px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .trust-stat:nth-child(3),
  .trust-stat:nth-child(6) {
    border-right: none;
  }

  .ts-div { display: none; }

  .ts-num { font-size: 1.4rem; }
  .ts-lbl { font-size: .6rem; letter-spacing: .5px; }
}

@media (max-width: 480px) {
  .trust-badges-inner {
    grid-template-columns: 1fr;
  }
  .trust-badge-item:nth-child(3),
  .trust-badge-item:nth-child(5) {
    border-left: none;
  }
}

/* ============================================================
   Hero spacing fix — lock the vertical rhythm precisely
   ============================================================ */

/* Tighten sub-headline bottom margin so it sits closer to the coverage row */
p.hero-sub {
  margin-bottom: 16px !important;
}

/* Coverage row: controlled gap */
.hero-content > div[style*="margin:0 0 24px"] {
  margin: 0 0 20px 0 !important;
}

/* Chip hover effect */
.hero-content a[href*="oven-cleaning"] {
  transition: background .15s, border-color .15s !important;
}
.hero-content a[href*="oven-cleaning"]:hover {
  background: rgba(255,255,255,.22) !important;
  border-color: rgba(255,255,255,.4) !important;
}

/* Bullet list sits tight above CTA row */
.hero-content > ul {
  margin-bottom: 24px !important;
}

/* Lock H1 spacing */
.hero h1 {
  margin-bottom: 16px !important;
  text-transform: uppercase !important;
}

/* On desktop keep the grid balanced */
@media (min-width: 1025px) {
  .hero-content {
    padding-top: 8px;
  }
  p.hero-sub {
    margin-bottom: 18px !important;
  }
}

/* Mobile: even tighter */
@media (max-width: 768px) {
  p.hero-sub { margin-bottom: 14px !important; }
  .hero h1   { margin-bottom: 14px !important; }
}

/* ============================================================
   SEO Section — mobile responsive (inline grid overrides)
   ============================================================ */
@media (max-width: 768px) {
  /* 4-benefit cards: 1 col */
  .seo-block div[style*="grid-template-columns:repeat(2,1fr)"],
  .seo-block div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Process steps: 2-col */
  .seo-block div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  /* Services: 2-col */
  .seo-block div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  /* Pricing row items */
  .seo-block div[style*="display:flex;flex-direction:column;gap:10px"] {
    gap: 8px !important;
  }
  /* Section padding */
  .seo-block {
    padding: 48px 0 !important;
  }
  /* Card padding reduction */
  .seo-block div[style*="padding:28px 32px"] {
    padding: 22px 18px !important;
  }
  .seo-block div[style*="padding:32px"] {
    padding: 22px 18px !important;
  }
  .seo-block div[style*="padding:28px"] {
    padding: 20px !important;
  }
  /* Process step numbers smaller */
  .seo-block div[style*="width:44px;height:44px;background:#ff2d8f"] {
    width: 38px !important;
    height: 38px !important;
    font-size: .95rem !important;
  }
}

@media (max-width: 480px) {
  .seo-block div[style*="grid-template-columns:repeat(2,1fr)"],
  .seo-block div[style*="grid-template-columns:repeat(4,1fr)"],
  .seo-block div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}


/* ── Hero background: dark theme — overrides any pink/orange residue ──── */
.hero,
section.hero {
  background: linear-gradient(140deg,#0f172a 0%,#1a0a14 50%,#0f172a 100%) !important;
}

/* ============================================================
   Hero proof — above image, aligned with right column
   ============================================================ */
.hero-above-proof {
  padding: 14px 18px 12px;
  text-align: center;
}

.hero-above-proof .hero-image-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 6px;
}

.hero-above-proof .hero-image-subproof {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}

/* Hero right panel: proof → image flush → quote card */
.hero-right-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.hero-above-proof {
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-image-wrap {
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.hero-right-panel .quote-card {
  border-radius: 0 !important;
  border-top: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .hero-above-proof { padding: 10px 14px 8px; }
  .hero-above-proof .hero-image-proof { font-size: .76rem; padding: 6px 13px; }
  .hero-right-panel { border-radius: 16px; }
}

/* ============================================================
   Hero colour flow — richer dark-to-pink gradient
   Deep navy → warm deep pink tones → keeps pink brand feel
   but blends sections together more cohesively
   ============================================================ */

/* Main hero: deep navy with a warm pink bloom in the centre-right */
.hero,
section.hero {
  background:
    radial-gradient(ellipse 70% 80% at 100% 20%, rgba(255,45,143,.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(194,0,107,.18) 0%, transparent 55%),
    linear-gradient(140deg, #0a0f1e 0%, #120818 35%, #1a0a14 65%, #0d0618 100%) !important;
  background-color: #0a0f1e !important;
}

/* Subtle animated radial glow on the decorative pseudo-elements */
.hero::before {
  background: radial-gradient(ellipse 60% 70% at 90% 10%,
    rgba(255,45,143,.20) 0%,
    rgba(194,0,107,.10) 40%,
    transparent 70%) !important;
}

/* trust-combined white row: slight warm tint so it doesn't feel jarring */
.trust-combined,
div.trust-combined {
  background: #fff !important;
  border-top: 1px solid #f5eef8 !important;
}

/* trust-stats-inner dark bar: softer blend from hero darkness */
.trust-stats-inner,
div.trust-stats-inner {
  background: linear-gradient(90deg, #0d0618 0%, #1a0a14 50%, #0d0618 100%) !important;
}

/* ba-section (before/after gallery) — light with a soft pink wash */
.ba-section {
  background: linear-gradient(180deg, #fff 0%, #fff9fc 100%);
}

/* Services section — stays clean white */

/* Why section — warm light tint to differentiate */
.why-section,
section.why-section {
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
}

/* Reviews section — deep dark matching hero */
.reviews-section,
section.reviews-section {
  background: linear-gradient(140deg, #0a0f1e 0%, #120818 40%, #1a0a14 100%);
}

/* final CTA band — strong pink gradient, stays as-is but richer */
.final-cta,
section.final-cta {
  background: linear-gradient(135deg, #c2006b 0%, #ff2d8f 40%, #e0197a 70%, #c2006b 100%) !important;
}

/* Right panel: the frosted glass effect works better on the dark gradient */
.hero-right-panel {
  background: rgba(255,255,255,.04) !important;
  box-shadow: 
    0 0 0 1px rgba(255,255,255,.08),
    0 32px 80px rgba(0,0,0,.4),
    0 0 60px rgba(255,45,143,.08) !important;
}

/* Quote card inside panel: pure white feels clean against the dark */
.hero-right-panel .quote-card {
  background: #fff !important;
}

/* image-wrap top section: subtle gradient matching hero */
.hero-above-proof {
  background: linear-gradient(180deg, rgba(255,45,143,.12) 0%, rgba(255,255,255,.06) 100%) !important;
  border-bottom: 1px solid rgba(255,45,143,.15) !important;
}

/* eyebrow tag — warmer pink tint */
.hero-eyebrow {
  background: rgba(255,45,143,.18) !important;
  border-color: rgba(255,45,143,.3) !important;
}

/* ============================================================
   Hero image proof bar — sits AT THE BOTTOM of the image
   ============================================================ */
.hero-img-proof-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.0) 100%);
  font-size: .82rem;
  font-weight: 800;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-img-proof-bar .proof-before { color: #fb923c; }
.hero-img-proof-bar .proof-arrow  { color: rgba(255,255,255,.5); font-size: .9rem; }
.hero-img-proof-bar .proof-after  { color: #4ade80; }
.hero-img-proof-bar .proof-divider{ color: rgba(255,255,255,.25); }
.hero-img-proof-bar .proof-time   { color: rgba(255,255,255,.85); }

/* ensure image-wrap is positioned so absolute child works */
.hero-image-wrap {
  position: relative !important;
}

/* ============================================================
   H1 gradient — "Brand New Again"
   Pink → warm magenta → light pink shimmer
   ============================================================ */
.h1-gradient {
  background: linear-gradient(
    95deg,
    #ff2d8f  0%,
    #ff6ab5  35%,
    #ffd6ec  55%,
    #ff6ab5  70%,
    #e0197a  100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  /* Subtle text shadow for depth — can't use with -webkit-text-fill but add glow via filter */
  filter: drop-shadow(0 0 20px rgba(255,45,143,.4));
  display: inline;
}

@media (max-width: 768px) {
  .hero-img-proof-bar {
    font-size: .72rem;
    gap: 5px;
    padding: 8px 12px;
  }
  .h1-gradient {
    filter: drop-shadow(0 0 14px rgba(255,45,143,.35));
  }
}

/* ============================================================
   Conversion colour flow — section-level overrides
   Inline styles handle bg; this handles text/child elements
   ============================================================ */

/* HOW IT WORKS — dark section, white text */
.how-section .section-tag { background: rgba(255,45,143,.2) !important; color: #ff2d8f !important; }
.how-section .section-title,
.how-section h2,
.how-section h3 { color: #fff !important; }
.how-section p,
.how-section .section-sub { color: rgba(255,255,255,.7) !important; }

/* WHY CHOOSE US — light pink, dark text */
.why-section .section-title,
.why-section h2 { color: #1a1a1a !important; }
.why-section .why-card {
  background: #fff !important;
  border-color: rgba(255,45,143,.15) !important;
}

/* REVIEWS — dark, white text (already set mostly) */
.reviews-section .section-tag { background: rgba(255,45,143,.2) !important; color: #ff2d8f !important; }
.reviews-section .section-title,
.reviews-section h2 { color: #fff !important; }
.reviews-section .section-sub { color: rgba(255,255,255,.65) !important; }

/* PRICING SECTION — pink bg, everything white */
.pricing-section .section-title,
.pricing-section h2,
.pricing-section h3 { color: #fff !important; text-shadow: 0 2px 12px rgba(0,0,0,.2); }
.pricing-section .section-tag { background: rgba(255,255,255,.2) !important; color: #fff !important; }
.pricing-section .section-sub,
.pricing-section p { color: rgba(255,255,255,.85) !important; }
.pricing-section .price-card {
  background: rgba(255,255,255,.95) !important;
  border-color: rgba(255,255,255,.4) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.15) !important;
}
.pricing-section .price-card h3 { color: #1a1a1a !important; }
.pricing-section .price-card .price-amount { color: #ff2d8f !important; }

/* AREAS — white, keep link colours */
.areas-section .section-title { color: #1a1a1a !important; }
.areas-section .area-card {
  border-color: rgba(255,45,143,.12) !important;
}

/* FAQs — white, dark text */
.faq-section .section-title { color: #1a1a1a !important; }
.faq-section .faq-item { background: #fff !important; }

/* Smooth section transitions — subtle bottom shadow */
.how-section,
.reviews-section {
  box-shadow: 0 8px 40px rgba(0,0,0,.25) !important;
}

/* ============================================================
   UNIVERSAL PAGE COLOUR FLOW
   Applies to all 500+ inner pages (area, service, combo)
   Uses .page-hero pages as detection anchor
   ============================================================ */

/* ── Area intro section ─────────────────────────────────── */
.area-intro-section {
  background: #ffffff !important;
}

.area-intro-section h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem) !important;
  font-weight: 900 !important;
  color: #1a1a1a !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

.area-intro-section p {
  color: #4b5563 !important;
  line-height: 1.78 !important;
  font-size: .95rem !important;
}

/* Why-choose-us cards on area pages */
.area-intro-section .why-card,
.area-intro-section .feature-card,
.area-intro-section [class*="card"] {
  background: #fff !important;
  border: 1.5px solid #f0e8f4 !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.05) !important;
}

/* ── Injected SEO sections on elite pages ─────────────────
   Alternate: white → light-grey → white → dark → white
   ───────────────────────────────────────────────────────── */
section[style*="background:#fff;"],
section[style*="background: #fff;"] {
  background: #ffffff !important;
}

section[style*="background:#f9fafb"],
section[style*="background: #f9fafb"] {
  background: #f8fafc !important;
}

section[style*="background:#1a1a1a"] {
  background: linear-gradient(160deg, #0a0f1e 0%, #120818 40%, #1a0a14 100%) !important;
  color: #fff !important;
}

section[style*="background:#1a1a1a"] h2,
section[style*="background:#1a1a1a"] h3 {
  color: #fff !important;
}

section[style*="background:#1a1a1a"] p,
section[style*="background:#1a1a1a"] span:not(.proof-before):not(.proof-after):not(.proof-time) {
  color: rgba(255,255,255,.75) !important;
}

/* ── Reviews section — dark on all pages ─────────────────── */
.reviews-section {
  background: linear-gradient(160deg, #0a0f1e 0%, #120818 40%, #1a0a14 100%) !important;
  color: #fff !important;
}

.reviews-section h2,
.reviews-section .section-title {
  color: #fff !important;
}

.reviews-section .section-tag {
  background: rgba(255,45,143,.2) !important;
  color: #ff2d8f !important;
}

/* ── FAQ section — white on all pages ─────────────────────── */
.faq-section {
  background: #ffffff !important;
}

.faq-section .section-title,
.faq-section h2 {
  color: #1a1a1a !important;
}

.faq-item {
  background: #fff !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04) !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
}

.faq-item.open {
  border-color: #ff2d8f !important;
  box-shadow: 0 4px 16px rgba(255,45,143,.15) !important;
}

.faq-q,
.faq-question {
  padding: 18px 22px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
}

.faq-a p,
.faq-answer p {
  padding: 0 22px 18px !important;
  color: #4b5563 !important;
  line-height: 1.75 !important;
}

/* ── CTA section — full pink on all pages ─────────────────── */
.cta-section {
  background: linear-gradient(135deg, #ff2d8f 0%, #c2006b 35%, #e0197a 65%, #ff2d8f 100%) !important;
  color: #fff !important;
}

.cta-section h2,
.cta-section h3,
.cta-section p {
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.15) !important;
}

.cta-section .btn-white,
.cta-section .btn-outline {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.4) !important;
  color: #fff !important;
}

/* ── Area stats strip ─────────────────────────────────────── */
.ba-stats-strip {
  background: linear-gradient(90deg, #0d0618 0%, #1a0a14 50%, #0d0618 100%) !important;
}

.ba-stats-strip span[class*="num"],
.ba-stats-strip .stat-num,
.ba-stats-strip strong {
  color: #ff2d8f !important;
}

/* ── Hub final content blocks (injected SEO content) ─────── */
/* How Often / What Affects Cost / Process sections */
#hub-final-content,
.hub-final-content,
[id*="hub-final"] {
  background: #f8fafc !important;
}

/* ── SEO internal links sections ─────────────────────────── */
#seo-internal-links,
.seo-internal-links,
[id*="seo-internal"] {
  background: #ffffff !important;
}

/* ── Suburb chip grids on area pages ─────────────────────── */
.suburb-chips a,
.area-chip-grid a,
.postcode-chips a {
  background: #fff !important;
  border: 1.5px solid #f0e8f4 !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  color: #ff2d8f !important;
  text-decoration: none !important;
  transition: background .15s, border-color .15s !important;
}

.suburb-chips a:hover,
.area-chip-grid a:hover {
  background: #fff0f7 !important;
  border-color: rgba(255,45,143,.3) !important;
}

/* ── What How Often / Cost sections on suburb pages ─────── */
/* These were added as inline-styled sections */
section[style*="background:#f9fafb"] h3,
section[style*="background:#f8fafc"] h3 {
  color: #1a1a1a !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
}

section[style*="background:#f9fafb"] p,
section[style*="background:#f8fafc"] p {
  color: #4b5563 !important;
  line-height: 1.75 !important;
}

/* ── SERVICE CHECKLIST cards (on all area pages) ─────────── */
/* The green checklist grids added to suburb pages */
div[style*="display:flex;align-items:center;gap:8px;font-size:.9rem"],
div[style*="display:flex;align-items:center;gap:7px;font-size:.88rem"] {
  padding: 6px 0 !important;
}

/* ── Page hero text improvements ─────────────────────────── */
.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.6rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.12 !important;
  margin-bottom: 14px !important;
}

.page-hero p {
  color: rgba(255,255,255,.88) !important;
  font-size: .98rem !important;
  line-height: 1.72 !important;
}

.page-hero-badge {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.25) !important;
  font-size: .72rem !important;
}

.pht-item {
  background: rgba(255,255,255,.15) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 999px !important;
  padding: 4px 12px !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  color: #fff !important;
}

/* ── Combination pages (bbq/extractor/etc) ───────────────── */
/* These share the same template so the above rules apply */
/* Add some additional spacing */
.combination-info-grid,
.service-info-section {
  background: #ffffff !important;
}

/* ── Service pages (single-oven etc) ─────────────────────── */
.service-hero-img {
  display: none !important;
}

@media (min-width: 1025px) {
  .service-hero-img {
    display: flex !important;
    opacity: .15 !important;
  }
}

/* ── Universal card baseline for ALL pages ────────────────── */
/* Any div that looks like a card gets consistent treatment */
.why-card, .feature-card, .service-card,
.review-card, .area-card, .price-card,
.blog-card, .included-card {
  border-radius: 16px !important;
  border: 1.5px solid #e5e7eb !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.05) !important;
  transition: border-color .2s, box-shadow .2s, transform .2s !important;
}

.why-card:hover, .feature-card:hover,
.area-card:hover, .price-card:hover {
  border-color: rgba(255,45,143,.3) !important;
  box-shadow: 0 6px 24px rgba(255,45,143,.12) !important;
  transform: translateY(-2px) !important;
}

/* ── Section header consistency ──────────────────────────── */
.section-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255,45,143,.1) !important;
  color: #ff2d8f !important;
  padding: 4px 13px !important;
  border-radius: 50px !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

/* On dark sections, tag needs contrast */
.reviews-section .section-tag,
section[style*="background:#1a1a1a"] .section-tag,
section[style*="background:linear-gradient(160deg,#0a0f1e"] .section-tag {
  background: rgba(255,45,143,.2) !important;
  color: #ff9dd0 !important;
}

/* ============================================================
   COMBINATION PAGES (bbq/extractor/hob/microwave/end-of-tenancy)
   ID-based sections — alternating white/light/dark
   ============================================================ */
#before-after {
  background: #fff8fc !important;
}

#seo-intro {
  background: #ffffff !important;
}

#seo-inclusions {
  background: #f8fafc !important;
}

#seo-why-choose {
  background: linear-gradient(160deg, #0a0f1e 0%, #120818 40%, #1a0a14 100%) !important;
  color: #fff !important;
}

#seo-why-choose h2,
#seo-why-choose h3,
#seo-why-choose .section-title {
  color: #fff !important;
}

#seo-why-choose p,
#seo-why-choose span {
  color: rgba(255,255,255,.75) !important;
}

#seo-areas {
  background: #fff0f7 !important;
}

#seo-close {
  background: linear-gradient(135deg, #ff2d8f 0%, #c2006b 35%, #e0197a 65%, #ff2d8f 100%) !important;
  color: #fff !important;
}

#seo-close h2,
#seo-close h3,
#seo-close p {
  color: #fff !important;
}

#seo-internal-links {
  background: #ffffff !important;
}

/* FAQ items (div-based on combo pages) */
.faq-item {
  background: #fff !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04) !important;
}

/* ba-stats-strip on combination pages */
.ba-stats-strip {
  background: linear-gradient(90deg, #0a0f1e 0%, #1a0a14 50%, #0a0f1e 100%) !important;
}

/* ============================================================
   ADDITIONAL SECTION ID BACKGROUNDS (used across many pages)
   ============================================================ */
#seo-intro,
#seo-intro-section,
[id*="intro"] section,
.seo-intro-section {
  background: #ffffff !important;
}

/* Mid-page CTA blocks that appear inside sections */
.quote-nudge,
.mid-cta-strip {
  background: linear-gradient(135deg, rgba(255,45,143,.08) 0%, rgba(255,45,143,.04) 100%) !important;
  border-top: 2px solid rgba(255,45,143,.15) !important;
  border-bottom: 2px solid rgba(255,45,143,.15) !important;
}

/* ============================================================
   CTA SECTION BUTTONS on pink background
   ============================================================ */
.cta-section .btn-primary {
  background: #fff !important;
  color: #ff2d8f !important;
  border-color: #fff !important;
  font-weight: 800 !important;
}

.cta-section .btn-primary:hover {
  background: rgba(255,255,255,.9) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.2) !important;
}

.cta-section .btn-wa {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 900 !important;
  margin-bottom: 12px !important;
}

/* ============================================================
   TYPOGRAPHY BASELINE — all inner pages
   ============================================================ */
.area-intro-section h2,
.area-intro-section h3,
#seo-intro h2,
#seo-intro h3 {
  letter-spacing: -.02em !important;
  line-height: 1.2 !important;
}

/* Long-form SEO text blocks — readable line length */
.area-intro-text p,
#seo-intro p,
#seo-inclusions p,
#seo-areas p,
#seo-close p {
  max-width: 720px !important;
  font-size: .95rem !important;
  line-height: 1.78 !important;
  color: #4b5563 !important;
}

/* On dark sections, text stays white */
#seo-why-choose p {
  max-width: 720px !important;
  color: rgba(255,255,255,.75) !important;
}

/* ============================================================
   PAGE HERO — dark on ALL pages, pink glow accent
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, #0a0f1e 0%, #1a0a14 50%, #0f172a 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Pink radial glow — top right, matches homepage feel */
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,45,143,.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Ensure all text is white */
.page-hero h1,
.page-hero .page-hero-lead,
.page-hero p:not(.page-hero-badge) {
  color: #fff !important;
}

/* Trust badges on dark background */
.page-hero .pht-item,
.page-hero .page-hero-badge {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.2) !important;
  color: #fff !important;
}

/* Breadcrumb on dark */
.breadcrumb {
  background: rgba(255,255,255,.04) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.breadcrumb-inner,
.breadcrumb a,
.breadcrumb span {
  color: rgba(255,255,255,.6) !important;
}

.breadcrumb a:hover {
  color: #ff2d8f !important;
}
