/* ============================================================
   article.css — Shared styles for GetInstantPlumber article pages
   Design tokens match index.html
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #0057b7;
  --blue-dark:  #003d82;
  --blue-light: #e8f1fb;
  --orange:     #f97316;
  --orange-dark:#ea6c0a;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --white:      #ffffff;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.15);
  --font:       'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.7; font-size: 16px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── TOPBAR (Trust Bar) ──────────────────────────────────── */
.topbar {
  background: #0B3D91;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  padding: 0;
  border-bottom: none;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,.9);
}
.topbar__badge .dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 2px rgba(34,197,94,.3);
}
@keyframes pulse {
  0%,100%{opacity:1; transform:scale(1);}
  50%{opacity:.7; transform:scale(1.15);}
}
.topbar__center {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
}
.topbar__trust::before {
  content: "✔";
  color: #22c55e;
  font-size: 11px;
}
.topbar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar__phone a {
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.topbar__phone a:hover { color: #f97316; }

/* ── MAIN HEADER (Sticky Nav) ──────────────────────────────── */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.header__logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo span { color: #FF6A00; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.header__nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 10px 18px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.header__nav a.cta-inline {
  background: #FF6A00;
  color: var(--white);
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}
.header__nav a.cta-inline:hover {
  background: #e55a00;
  color: var(--white);
}
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Big CTA Button in header */
.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF6A00;
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(255,106,0,.35);
}
.btn-call-header:hover {
  background: #e55a00;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,106,0,.45);
  color: var(--white);
}

/* ── MOBILE HEADER ────────────────────────────────────────── */
.header__mobile-row {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}
.header__hamburger {
  display: none;
  background: none;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 42px;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
}
.header__mobile-menu.open { display: flex; }
.header__mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 12px 4px;
  border-bottom: 1px solid var(--gray-100);
  display: block;
}
.header__mobile-menu a:last-child { border-bottom: none; }
.header__mobile-menu a:hover { color: var(--blue); }

/* ── HEADER INNER FLEX ────────────────────────────────────── */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

/* Mobile: only show mobile row */
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__right { display: none; }
  .header__inner { height: auto; padding: 0; gap: 0; }
  .header__mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    width: 100%;
  }
  .header__mobile-row .header__logo { display: block; }
  .header > .container > .header__inner > .header__logo { display: none; }
  .header__hamburger { display: flex; }
  .header { position: sticky; }
}

@media (min-width: 769px) {
  .header__mobile-row { display: none; }
  .header__mobile-row .header__logo { display: none; }
  .header > .container > .header__inner > .header__logo { display: block; }
}
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__right .btn-call-header { display: none; }
  .header__mobile-row { display: flex; }
  .header__hamburger { display: flex; }
  .header { position: sticky; }
}

/* ── STICKY MOBILE CTA BAR ───────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #0B3D91;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.20);
}
.mobile-cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.mobile-cta-bar__text {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}
.mobile-cta-bar__text strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}
.mobile-cta-bar a {
  flex-shrink: 0;
  background: #FF6A00;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,106,0,.4);
}
.mobile-cta-bar a:hover { background: #e55a00; color: var(--white); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background .15s, transform .15s;
}
.cta-btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); color: var(--white); }
.cta-btn-primary.cta-btn--large { font-size: 18px; padding: 18px 36px; }
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none !important;
  border: 2px solid var(--blue);
  transition: background .15s, color .15s;
}
.cta-btn-secondary:hover { background: var(--blue); color: var(--white) !important; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.breadcrumb__list { display: flex; align-items: center; gap: 6px; list-style: none; flex-wrap: wrap; font-size: 13px; color: var(--gray-600); }
.breadcrumb__list a { color: var(--blue); }
.breadcrumb__list a:hover { text-decoration: underline; }
.breadcrumb__list li + li::before { content: "›"; color: var(--gray-600); margin-right: 6px; }

/* ── City Page Hero (used by plumber-*.html) ──────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 60px 0 56px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } }
.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.35);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero__content { }
.hero__content h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero__lead {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 640px;
}
.hero__cta-group { display: flex; flex-direction: column; gap: 12px; }
.hero__trust {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}
.hero__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero__card-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.hero__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hero__list li { font-size: 14px; color: rgba(255,255,255,.85); }
.hero__card .cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius);
  margin-top: 20px;
  text-decoration: none;
  transition: background .15s;
}
.hero__card .cta-btn-secondary:hover { background: var(--orange-dark); }

/* ── Page Sections ─────────────────────────────────────────── */
.section { padding: 64px 0; }
.section--alt { background: var(--gray-50); padding: 64px 0; }
.section h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section p { color: var(--gray-700); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.section h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 28px 0 10px;
}
.section ul, .section ol { margin: 12px 0 20px 24px; }
.section li { margin-bottom: 8px; line-height: 1.65; color: var(--gray-700); font-size: 16px; }
.section a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.section a:hover { color: var(--blue-dark); }

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 0; }

/* ── Emergency Box ─────────────────────────────────────────── */
.emergency-box {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 32px;
  box-shadow: var(--shadow-lg);
}
.emergency-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.emergency-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0 24px; }
.emergency-box li { font-size: 15px; color: rgba(255,255,255,.88); padding-left: 0; }
.emergency-box li strong { color: var(--orange); }

/* ── Areas Grid ───────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 28px;
}
.area-col h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.area-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.area-col li { font-size: 14px; color: var(--gray-700); }
.areas-note { font-size: 14px; color: var(--gray-600); margin-top: 24px; font-style: italic; }

/* ── Issue List ───────────────────────────────────────────── */
.issues-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.issue-item { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,.05); border: 1px solid var(--gray-200); }
.issue-item h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.issue-item p { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 0; }

/* ── Trust Grid ───────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 28px; }
.trust-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.trust-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: 22px; }
.trust-card p { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 0; }

/* ── Guarantee List ────────────────────────────────────────── */
.guarantee-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0 24px; }
.guarantee-list li { font-size: 16px; color: var(--gray-700); padding-left: 24px; position: relative; }
.guarantee-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* ── CTA Block ────────────────────────────────────────────── */
.cta-block { background: var(--blue-light); border-radius: var(--radius); padding: 32px; text-align: center; margin-top: 28px; }
.cta-block .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: 16px;
  transition: background .15s, transform .15s;
}
.cta-block .cta-button:hover { background: var(--orange-dark); transform: translateY(-2px); }
.cta-block p { font-size: 15px; color: var(--gray-700); margin-bottom: 8px; }

/* ── Final CTA ─────────────────────────────────────────────── */
.final-cta { }
.final-cta h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 28px; max-width: 640px; }

/* ── Content Layout + Sidebar (city page layout) ──────────── */
.content-layout .container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 60px 0;
  align-items: start;
}
@media (max-width: 960px) { .content-layout .container { grid-template-columns: 1fr; } }
.content-layout .main-content h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--gray-900);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.content-layout .main-content h2:first-child { margin-top: 0; }
.content-layout .main-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 24px 0 10px;
}
.content-layout .main-content p { font-size: 16px; line-height: 1.75; color: var(--gray-700); margin-bottom: 16px; }
.content-layout .main-content ul, .content-layout .main-content ol { margin: 12px 0 20px 24px; }
.content-layout .main-content li { font-size: 16px; line-height: 1.65; color: var(--gray-700); margin-bottom: 8px; }
.content-layout .main-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.content-layout .main-content a:hover { color: var(--blue-dark); }
.content-layout .main-content strong { font-weight: 700; color: var(--gray-900); }
.cta-inline {
  background: linear-gradient(135deg, #061a4a 0%, #0c3a9e 100%) !important;
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-inline p { color: #ffffff !important; font-size: 17px; margin: 0; font-weight: 500; }
.cta-inline p a { color: #ffffff !important; font-weight: 800; text-decoration: underline !important; text-decoration-color: #f97316 !important; text-underline-offset: 4px; }
.cta-inline p a:hover { color: #f97316 !important; }
.cta-inline strong { color: #ffffff !important; font-weight: 900 !important; }
.cta-inline .cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.cta-inline .cta-btn-primary:hover { background: var(--orange-dark); }
.sidebar { display: flex; flex-direction: column; gap: 24px; }

/* ── Article Hero ─────────────────────────────────────────── */
.art-hero { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); color: var(--white); padding: 64px 0 56px; }
.art-hero__label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.art-hero h1 { font-size: clamp(26px, 4.5vw, 44px); font-weight: 900; line-height: 1.2; max-width: 780px; margin-bottom: 20px; }
.art-hero__sub { font-size: 18px; color: rgba(255,255,255,.82); max-width: 640px; margin-bottom: 32px; line-height: 1.6; }
.art-hero__meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.7); }
.art-hero__meta span { display: flex; align-items: center; gap: 6px; }

/* ── Article Layout ───────────────────────────────────────── */
.art-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 60px 0 80px; align-items: start; }
@media(max-width: 960px){ .art-layout { grid-template-columns: 1fr; } }

/* ── Article Body ─────────────────────────────────────────── */
.art-body h2 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; color: var(--gray-900); margin: 40px 0 16px; line-height: 1.3; }
.art-body h2:first-child { margin-top: 0; }
.art-body h3 { font-size: 19px; font-weight: 700; color: var(--gray-900); margin: 28px 0 10px; }
.art-body p { margin-bottom: 18px; color: var(--gray-700); font-size: 16px; line-height: 1.75; }
.art-body ul, .art-body ol { margin: 12px 0 20px 24px; }
.art-body li { margin-bottom: 8px; line-height: 1.65; color: var(--gray-700); font-size: 16px; }
.art-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.art-body a:hover { color: var(--blue-dark); }
.art-body strong { font-weight: 700; color: var(--gray-900); }

/* ── Callout boxes ────────────────────────────────────────── */
.callout { border-left: 4px solid var(--orange); background: #fff8f3; padding: 18px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; }
.callout--blue { border-left-color: var(--blue); background: var(--blue-light); }
.callout--red { border-left-color: #dc2626; background: #fff1f1; }
.callout p { margin: 0; font-size: 15px; }
.callout strong { display: block; margin-bottom: 6px; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; color: var(--orange); }
.callout--blue strong { color: var(--blue); }
.callout--red strong { color: #dc2626; }

/* ── Step boxes ───────────────────────────────────────────── */
.steps { margin: 24px 0; display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step__num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: var(--white); font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.step__body h4 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.step__body p { margin: 0; font-size: 15px; }

/* ── Cost table ───────────────────────────────────────────── */
.cost-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; }
.cost-table th { background: var(--blue); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 700; }
.cost-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); }
.cost-table tr:nth-child(even) td { background: var(--gray-50); }
.cost-table tr:last-child td { border-bottom: none; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--gray-50); padding: 60px 0; }
.faq-section h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--gray-900); margin-bottom: 32px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 16px; color: var(--gray-900); display: flex; justify-content: space-between; align-items: center; gap: 12px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--blue); flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--blue); border-bottom: 1px solid var(--gray-200); }
.faq-answer { padding: 20px 24px; font-size: 15px; line-height: 1.7; color: var(--gray-700); }

/* ── Sidebar ──────────────────────────────────────────────── */
.art-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.sidebar-card--cta { background: var(--blue); color: var(--white); border: none; }
.sidebar-card--cta h3 { color: var(--white); font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.sidebar-card--cta p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 20px; }
.sidebar-card__title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-600); margin-bottom: 14px; }
.sidebar-card--cta .sidebar-card__title { color: rgba(255,255,255,.7); }
.btn-call { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--orange); color: var(--white); font-weight: 800; font-size: 17px; padding: 16px 20px; border-radius: var(--radius); transition: background .15s, transform .15s; text-align: center; }
.btn-call:hover { background: var(--orange-dark); transform: translateY(-2px); }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.trust-list li { font-size: 14px; display: flex; align-items: center; gap: 8px; color: var(--gray-700); }
.trust-list li::before { content: "✓"; color: #16a34a; font-weight: 700; }
.related-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.related-links li { border-bottom: 1px solid var(--gray-100); }
.related-links li:last-child { border-bottom: none; }
.related-links a { display: block; padding: 10px 0; font-size: 14px; font-weight: 500; color: var(--blue); text-decoration: none; transition: color .15s; }
.related-links a:hover { color: var(--blue-dark); text-decoration: underline; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); color: var(--white); padding: 72px 0; text-align: center; }
.cta-section h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,.82); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btn-large { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: var(--white); font-weight: 800; font-size: 20px; padding: 20px 44px; border-radius: var(--radius); transition: background .15s, transform .15s, box-shadow .15s; }
.cta-btn-large:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cta-note { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,.65); }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: 48px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media(max-width:1100px){ .footer__inner { grid-template-columns: 1fr 1fr; } }
@media(max-width:768px){ .footer__inner { grid-template-columns: 1fr; } }
.footer__logo { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.footer__logo span { color: var(--orange); }
.footer__tagline { font-size: 14px; line-height: 1.6; }
.footer__heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 14px; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__list a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer__list a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer__phone a { color: var(--orange); font-weight: 700; font-size: 16px; }

/* ── Responsive tweaks ────────────────────────────────────── */
@media(max-width:640px){
  .art-hero { padding: 40px 0 36px; }
  .art-layout { padding: 36px 0 48px; gap: 32px; }
  .faq-section { padding: 40px 0; }
  .cta-section { padding: 48px 0; }
}

/* ============================================================
   ARTICLE-STYLE LAYOUT (used by all SEO problem pages)
   Classes: .article, .article__header, .article__body, etc.
============================================================ */

/* Narrow container for single-column article */
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

/* ── Article header (blue gradient hero) ───────────────────── */
.article { background: var(--white); }
.article__header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 60px 0 52px;
  margin-bottom: 0;
}
.article__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.35);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.article__header h1 {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 760px;
}
.article__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 680px;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.article__meta .sep { color: rgba(255,255,255,.35); }

/* ── Breadcrumb span-style ─────────────────────────────────── */
.breadcrumb span { font-size: 13px; color: var(--gray-600); }
.breadcrumb span a { color: var(--blue); }
.breadcrumb span a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 4px; color: var(--gray-600); }

/* ── Article body content ──────────────────────────────────── */
.article__body {
  padding: 56px 0 72px;
}
.article__body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--gray-900);
  margin: 44px 0 16px;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}
.article__body h2:first-child { margin-top: 0; }
.article__body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 30px 0 10px;
}
.article__body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 20px 0 8px;
}
.article__body p {
  margin-bottom: 18px;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.8;
}
.article__body ul,
.article__body ol {
  margin: 10px 0 22px 24px;
}
.article__body li {
  margin-bottom: 9px;
  line-height: 1.7;
  color: var(--gray-700);
  font-size: 16px;
}
.article__body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article__body a:hover { color: var(--blue-dark); }
.article__body strong { font-weight: 700; color: var(--gray-900); }

/* ── Emergency callout (red variant) ──────────────────────── */
.callout--emergency {
  border-left-color: #dc2626;
  background: #fff1f1;
}
.callout--emergency strong { color: #dc2626; }

/* ── Inline CTA box ────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  margin: 48px 0;
  box-shadow: var(--shadow-lg);
}
.cta-box h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  margin-bottom: 24px;
  line-height: 1.6;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: background .15s, transform .15s, box-shadow .15s;
  text-decoration: none !important;
}
.cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  color: var(--white);
}
.cta-sub {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* ── FAQ section (div-based, no <details>) ─────────────────── */
.faq {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: box-shadow .15s;
}
.faq__item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.09); }
.faq__item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 10px;
  line-height: 1.4;
  padding-left: 0;
}
.faq__item h3::before {
  content: "Q: ";
  color: var(--blue);
  font-weight: 800;
}
.faq__item p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin: 0;
}

/* ── Footer (grid-based) ───────────────────────────────────── */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media(max-width:768px){ .footer__grid { grid-template-columns: 1fr; } }
.footer .footer__logo { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.footer .footer__logo span { color: var(--orange); }
.footer p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.65); }
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .15s;
  text-decoration: none;
}
.footer ul a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ── COMPREHENSIVE MOBILE RESPONSIVE — All Article Pages ─────
   Breakpoints: 640px (tablet) | 768px (laptop) | 900px (desktop)
   Target: 320px–480px (phone)
═══════════════════════════════════════════════════════════════ */

/* ── BASE MOBILE ── */
@media (max-width: 640px) {
  body { font-size: 15px; line-height: 1.6; }
  .container { padding: 0 16px; }

  /* Typography */
  h1 { font-size: 24px !important; line-height: 1.2 !important; }
  h2 { font-size: 20px !important; line-height: 1.3 !important; }
  h3 { font-size: 17px !important; line-height: 1.4 !important; }
  p { font-size: 15px !important; line-height: 1.65 !important; }
  li { font-size: 15px !important; }

  /* Sections */
  .section { padding: 48px 0; }
  .section--alt { padding: 48px 0; }

  /* Content width */
  .article__body,
  .art-body,
  .main-content { padding: 28px 0 !important; }
  .article__body h2 { font-size: 20px !important; margin: 32px 0 14px !important; }
  .article__body h3 { font-size: 17px !important; margin: 24px 0 10px !important; }
  .article__body p { font-size: 15px !important; line-height: 1.65 !important; margin-bottom: 16px !important; }
  .article__body ul,
  .article__body ol { margin: 12px 0 18px 20px !important; }
  .article__body li { font-size: 15px !important; margin-bottom: 8px !important; }
  .art-body h2 { font-size: 20px !important; margin: 32px 0 14px !important; }
  .art-body h3 { font-size: 17px !important; margin: 24px 0 10px !important; }
  .art-body p { font-size: 15px !important; line-height: 1.65 !important; margin-bottom: 16px !important; }
  .art-body ul,
  .art-body ol { margin: 12px 0 18px 20px !important; }
  .art-body li { font-size: 15px !important; margin-bottom: 8px !important; }
}

/* ── HEADER MOBILE ── */
@media (max-width: 900px) {
  .header__nav,
  .header__right { display: none !important; }
  .header { position: sticky !important; top: 0 !important; z-index: 200; }
  .header > .container > .header__inner > a.header__logo { display: none !important; }
}
@media (max-width: 768px) {
  .header__mobile-row { display: flex !important; align-items: center; justify-content: space-between; padding: 12px 0; width: 100%; }
  .header__hamburger { display: flex !important; }
}
@media (min-width: 769px) {
  .header__mobile-row { display: none; }
  .header > .container > .header__inner > a.header__logo { display: block; }
}

/* ── TOPBAR MOBILE ── */
@media (max-width: 860px) {
  .topbar__center { display: none !important; }
}
@media (max-width: 640px) {
  .topbar { padding: 6px 0; }
  .topbar__inner { gap: 8px; padding: 6px 0; }
  .topbar__left { gap: 10px; flex-shrink: 0; }
  .topbar__badge { font-size: 11px; gap: 4px; }
  .topbar__phone a { font-size: 13px; }
}

/* ── STICKY MOBILE CTA BAR ── */
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: block !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 -4px 24px rgba(0,0,0,.28);
  }
  .mobile-cta-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
  }
  .mobile-cta-bar__text { display: flex; flex-direction: column; gap: 1px; }
  .mobile-cta-bar__text strong { color: var(--white); font-size: 13px; font-weight: 700; }
  .mobile-cta-bar__text span { color: rgba(255,255,255,.85); font-size: 11px; }
  .mobile-cta-bar a {
    background: var(--white);
    color: var(--orange);
    font-weight: 800;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
  }
  body { padding-bottom: 66px; }
}

/* ── HERO SECTION (art-hero / article__header) ── */
@media (max-width: 640px) {
  .art-hero { padding: 40px 0 36px; }
  .art-hero h1 { font-size: 24px !important; line-height: 1.2 !important; max-width: 100% !important; }
  .art-hero__label { font-size: 11px !important; margin-bottom: 10px !important; }
  .art-hero__sub { font-size: 15px !important; line-height: 1.6 !important; margin-bottom: 20px !important; }
  .art-hero__meta { font-size: 12px !important; gap: 10px !important; flex-wrap: wrap; }
  .article__header { padding: 40px 0 36px; }
  .article__header h1 { font-size: 24px !important; line-height: 1.2 !important; }
  .article__subtitle { font-size: 15px !important; line-height: 1.6 !important; }
  .article__meta { font-size: 12px !important; gap: 8px !important; }
}

/* ── ARTICLE LAYOUT (art-layout / content-layout) ── */
@media (max-width: 960px) {
  .art-layout { grid-template-columns: 1fr !important; }
  .art-layout .art-sidebar { display: none; }
  .art-layout .art-body { width: 100% !important; }
  .content-layout .container { grid-template-columns: 1fr !important; }
  .content-layout .sidebar { display: none; }
  .content-layout .main-content { width: 100% !important; }
}

/* ── SIDEBAR MOBILE ── */
@media (max-width: 960px) {
  .art-sidebar { display: none; }
  .sidebar { display: none; }
}
@media (max-width: 640px) {
  .art-sidebar { display: none; }
  .sidebar-card {
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
  }
  .sidebar-card h3,
  .sidebar-card__title { font-size: 15px; }
  .sidebar-card ul { gap: 8px; }
  .sidebar-card li { font-size: 14px; }
  .btn-call { font-size: 16px; padding: 14px 20px; border-radius: 10px; }
}

/* ── CALLOUTS ── */
@media (max-width: 640px) {
  .callout { padding: 16px !important; border-radius: 10px !important; margin: 20px 0 !important; }
  .callout p { font-size: 14px !important; line-height: 1.6 !important; }
  .callout strong { font-size: 15px !important; }
  .callout--red { border-left-width: 3px !important; }
  .callout--blue { border-left-width: 3px !important; }
  .callout--orange { border-left-width: 3px !important; }
}

/* ── STEPS ── */
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr !important; gap: 20px !important; }
  .step { padding: 0 !important; text-align: left !important; display: flex !important; gap: 14px !important; align-items: flex-start !important; }
  .step__num { margin: 0 !important; flex-shrink: 0 !important; width: 40px !important; height: 40px !important; font-size: 16px !important; }
  .step__body h4 { font-size: 15px !important; margin-bottom: 6px !important; }
  .step__body p { font-size: 14px !important; }
  .step::after { display: none !important; }
}

/* ── CTA BOX ── */
@media (max-width: 640px) {
  .cta-box {
    padding: 22px 16px !important;
    border-radius: 12px !important;
    margin: 20px 0 !important;
  }
  .cta-box h3 { font-size: 17px !important; margin-bottom: 10px !important; }
  .cta-box p { font-size: 14px !important; margin-bottom: 16px !important; }
  .cta-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 16px !important;
    font-size: 16px !important;
    border-radius: 10px !important;
  }
  .cta-sub { font-size: 12px !important; display: block; text-align: center; margin-top: 10px; }
  .cta-section { padding: 40px 0 !important; }
  .cta-section .container { padding: 0 16px; }
  .cta-section h2 { font-size: 20px !important; margin-bottom: 12px !important; }
  .cta-section p { font-size: 15px !important; margin-bottom: 20px !important; }
  .cta-btn-large {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 16px !important;
    font-size: 16px !important;
    border-radius: 10px !important;
  }
  .cta-note { font-size: 12px !important; margin-top: 12px; }
}

/* ── CTA INLINE ── */
@media (max-width: 640px) {
  .cta-inline {
    flex-direction: column !important;
    padding: 20px 16px !important;
    border-radius: 12px !important;
    gap: 16px !important;
  }
  .cta-inline p { font-size: 14px !important; text-align: center; }
  .cta-inline .cta-btn-primary {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }
}

/* ── FAQ ── */
@media (max-width: 640px) {
  .faq { gap: 10px; margin-top: 24px; }
  .faq__item { padding: 16px !important; border-radius: 10px !important; margin-bottom: 0; }
  .faq__item h3 { font-size: 15px !important; line-height: 1.4 !important; margin-bottom: 8px !important; }
  .faq__item p { font-size: 14px !important; line-height: 1.6 !important; }
  .faq-item { padding: 16px !important; border-radius: 10px !important; }
  .faq-item h3 { font-size: 15px !important; }
  .faq-item p { font-size: 14px !important; }
}

/* ── COST TABLE ── */
@media (max-width: 640px) {
  .cost-table { font-size: 12px !important; display: block; overflow-x: auto; }
  .cost-table thead { display: none; }
  .cost-table tbody { display: block; }
  .cost-table tr { display: block; border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
  .cost-table td { display: block; padding: 3px 0 !important; font-size: 13px !important; }
  .cost-table td:first-child { font-weight: 700; color: var(--gray-900); font-size: 14px !important; }
  .cost-table td::before { content: attr(data-label) ": "; font-weight: 600; color: var(--gray-600); font-size: 12px; }
}

/* ── BREADCRUMB ── */
@media (max-width: 640px) {
  .breadcrumb { padding: 10px 0; }
  .breadcrumb__list { gap: 6px; }
  .breadcrumb__list li { font-size: 12px; }
}

/* ── ARTICLE FOOTER ── */
@media (max-width: 640px) {
  .footer { padding: 40px 0 24px; }
  .footer__inner { flex-direction: column; gap: 24px; }
  .footer__heading { margin-bottom: 12px; font-size: 14px; }
  .footer__list { gap: 8px; }
  .footer__list li { font-size: 14px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; font-size: 13px; }
  .footer__logo { font-size: 18px; }
}

/* ── CONTENT-LAYOUT SIDEBAR (city pages) ── */
@media (max-width: 960px) {
  .sidebar { display: none; }
}
@media (max-width: 640px) {
  .sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
  }
}

/* ── SERVICES GRID / TRUST GRID ── */
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .service-card { padding: 16px !important; border-radius: 10px !important; display: flex; align-items: center; gap: 12px; }
  .service-card h3 { font-size: 15px !important; margin-bottom: 0 !important; }
  .service-card p { display: none; }
  .trust-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .trust-card { padding: 16px !important; border-radius: 10px !important; }
  .trust-card h3 { font-size: 15px !important; }
  .trust-card p { font-size: 13px !important; }
}

/* ── ISSUES LIST ── */
@media (max-width: 640px) {
  .issues-list { gap: 12px; }
  .issue-item { padding: 16px !important; border-radius: 10px !important; }
  .issue-item h3 { font-size: 15px !important; }
  .issue-item p { font-size: 14px !important; }
}

/* ── EMERGENCY BOX ── */
@media (max-width: 640px) {
  .emergency-box { padding: 20px 16px !important; border-radius: 12px !important; margin-top: 24px !important; }
  .emergency-box h3 { font-size: 18px !important; }
  .emergency-box li { font-size: 14px !important; }
  .emergency-box ul { gap: 8px; }
}

/* ── AREAS GRID ── */
@media (max-width: 640px) {
  .areas-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .area-col h3 { font-size: 15px !important; }
  .area-col li { font-size: 14px; }
  .areas-note { font-size: 13px !important; }
}

/* ── FINAL CTA ── */
@media (max-width: 640px) {
  .final-cta h2 { font-size: 22px !important; }
  .final-cta p { font-size: 15px !important; }
}

/* ── CTA BLOCK ── */
@media (max-width: 640px) {
  .cta-block { padding: 20px 16px !important; border-radius: 12px !important; }
  .cta-block p { font-size: 14px !important; }
  .cta-block .cta-button {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
    border-radius: 10px !important;
  }
}

/* ── RELATED LINKS ── */
@media (max-width: 640px) {
  .related-links li { font-size: 14px; padding: 10px 0; }
  .related-links a { font-size: 14px; display: block; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
}

/* ── TRUST LIST ── */
@media (max-width: 640px) {
  .trust-list li { font-size: 14px; }
}

/* ── FULL-WIDTH BUTTONS (general) ── */
@media (max-width: 640px) {
  a.cta-btn,
  a.cta-btn-primary,
  a.cta-btn-secondary {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 16px !important;
    font-size: 16px !important;
    border-radius: 10px !important;
    text-align: center !important;
  }
}

/* ── HERO SECTIONS (city pages using .hero) ── */
@media (max-width: 640px) {
  .hero { padding: 40px 0 36px; }
  .hero__inner { grid-template-columns: 1fr !important; }
  .hero__content { text-align: center; }
  .hero__badge { font-size: 11px !important; margin-bottom: 12px !important; justify-content: center; }
  .hero__content h1 { font-size: 24px !important; line-height: 1.2 !important; margin-bottom: 14px !important; }
  .hero__lead { font-size: 15px !important; margin-bottom: 20px !important; }
  .hero__cta-group { align-items: stretch !important; }
  .hero__cta-group a { justify-content: center; }
  .hero__trust { font-size: 12px !important; justify-content: center; gap: 10px; }
  .hero__card { display: none; }
  .hero__card-title { font-size: 15px; }
  .hero__list li { font-size: 13px; }
}

/* ── CITY PAGE CONTENT SECTIONS ── */
@media (max-width: 640px) {
  .section h2 { font-size: 20px !important; margin: 28px 0 12px !important; }
  .section h3 { font-size: 17px !important; margin: 20px 0 8px !important; }
  .section p { font-size: 15px !important; line-height: 1.65 !important; margin-bottom: 14px !important; }
  .section ul,
  .section ol { margin: 10px 0 16px 18px !important; }
  .section li { font-size: 15px !important; margin-bottom: 8px !important; }
}

/* ── APPLIANCE PAGES (thin pages layout) ── */
@media (max-width: 640px) {
  .art-layout .art-body { padding: 28px 0 40px !important; }
}

/* ── SECTION-SPECIFIC ── */
@media (max-width: 640px) {
  .guarantee-list { gap: 10px; }
  .guarantee-list li { font-size: 14px !important; padding-left: 20px; }
  .areas-note { margin-top: 16px; font-size: 13px; font-style: italic; }
  .areas-grid .area-col { margin-bottom: 16px; }
}

/* ── PRINT / ACCESSIBILITY SAFETY ── */
@media print {
  .mobile-cta-bar,
  .header__mobile-row,
  .header__hamburger { display: none !important; }
  body { padding-bottom: 0 !important; }
}

/* ============================================================
   PREMIUM DESIGN UPGRADE — April 2026
   - Image sizing & framing
   - Premium CTA buttons
   - Author byline
   - Plumber's Note callout
   - Section polish
============================================================ */

/* ── Image Figures ────────────────────────────────────────── */
.seo-hero-img {
  margin: 28px 0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.14) !important;
  max-height: 320px;
  position: relative;
}
.seo-hero-img img {
  width: 100% !important;
  height: 320px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 14px !important;
}
.seo-inline-img {
  margin: 28px auto !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  max-width: 560px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.10) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  display: block !important;
}
.seo-inline-img img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
@media (max-width: 640px) {
  .seo-hero-img { max-height: 200px; border-radius: 10px !important; margin: 20px 0 !important; }
  .seo-hero-img img { height: 200px !important; border-radius: 10px !important; }
  .seo-inline-img { max-width: 100% !important; margin: 20px 0 !important; }
  .seo-inline-img img { height: 180px !important; }
}

/* ── Author Byline ────────────────────────────────────────── */
.art-author {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 20px 0 28px !important;
  padding: 14px 18px !important;
  background: linear-gradient(90deg, #f0f4ff 0%, #fafbff 100%) !important;
  border-left: 3px solid #2563eb !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  color: #4b5563 !important;
  box-shadow: 0 1px 6px rgba(37,99,235,.08) !important;
}
.art-author span:first-child { font-size: 22px; flex-shrink: 0; }
.art-author strong { color: #1e3a5f !important; font-weight: 700 !important; }
@media (max-width: 640px) {
  .art-author { padding: 12px 14px !important; gap: 10px !important; }
  .art-author span:first-child { font-size: 18px; }
}

/* ── Plumber's Note Callout ───────────────────────────────── */
aside[aria-label="Expert insight"] {
  margin: 32px 0 !important;
  padding: 22px 24px !important;
  background: linear-gradient(135deg, #fff8ee 0%, #fffdf9 100%) !important;
  border-left: 4px solid #f97316 !important;
  border-radius: 0 12px 12px 0 !important;
  box-shadow: 0 2px 16px rgba(249,115,22,.08) !important;
  position: relative;
}
aside[aria-label="Expert insight"] p:first-child {
  margin: 0 0 8px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #ea6c0a !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
aside[aria-label="Expert insight"] p:last-child {
  margin: 0 !important;
  font-size: 15px !important;
  color: #374151 !important;
  line-height: 1.75 !important;
  font-style: italic !important;
}
@media (max-width: 640px) {
  aside[aria-label="Expert insight"] { padding: 16px 16px !important; margin: 24px 0 !important; }
  aside[aria-label="Expert insight"] p:last-child { font-size: 14px !important; }
}

/* ── Premium CTA Button Upgrades ─────────────────────────── */
.cta-btn,
.btn-call,
.cta-btn-primary,
.cta-btn-large,
.cta-block .cta-button {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  box-shadow: 0 4px 16px rgba(234,88,12,.35) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .15s !important;
  letter-spacing: .01em !important;
}
.cta-btn:hover,
.btn-call:hover,
.cta-btn-primary:hover,
.cta-btn-large:hover,
.cta-block .cta-button:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  box-shadow: 0 8px 28px rgba(234,88,12,.45) !important;
  transform: translateY(-2px) !important;
}

/* Header call button */
.btn-call-header {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  box-shadow: 0 4px 14px rgba(234,88,12,.4) !important;
  transition: transform .18s, box-shadow .18s !important;
}
.btn-call-header:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  box-shadow: 0 6px 22px rgba(234,88,12,.5) !important;
  transform: translateY(-1px) !important;
}

/* Nav inline CTA */
.header__nav a.cta-inline {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  box-shadow: 0 3px 10px rgba(234,88,12,.3) !important;
}
.header__nav a.cta-inline:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  transform: translateY(-1px) !important;
}

/* Mobile CTA bar */
.mobile-cta-bar {
  background: linear-gradient(90deg, #1e3a8a 0%, #1d4ed8 100%) !important;
}

/* ── Sidebar Card Premium ─────────────────────────────────── */
.sidebar-card--cta {
  background: linear-gradient(145deg, #1e3a8a 0%, #1d4ed8 100%) !important;
  box-shadow: 0 8px 32px rgba(29,78,216,.25) !important;
  border: none !important;
}
.sidebar-card {
  box-shadow: 0 2px 12px rgba(0,0,0,.07) !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  transition: box-shadow .2s !important;
}
.sidebar-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.11) !important; }

/* ── CTA Box Premium ─────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, #0b2d6b 0%, #1d4ed8 100%) !important;
  box-shadow: 0 10px 40px rgba(11,45,107,.25) !important;
  border-radius: 16px !important;
}

/* ── Inline CTA Banner ────────────────────────────────────── */
.cta-inline {
  background: linear-gradient(135deg, #0b2d6b 0%, #1d4ed8 100%) !important;
  box-shadow: 0 6px 24px rgba(11,45,107,.2) !important;
  border-radius: 14px !important;
}

/* ── Emergency Box ────────────────────────────────────────── */
.emergency-box {
  background: linear-gradient(135deg, #0b2d6b 0%, #1d4ed8 100%) !important;
  box-shadow: 0 8px 32px rgba(11,45,107,.22) !important;
  border-radius: 16px !important;
}

/* ── Final CTA Section ────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0b2d6b 0%, #1d4ed8 60%, #2563eb 100%) !important;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Article Hero Premium ────────────────────────────────── */
.art-hero,
.article__header,
.hero {
  background: linear-gradient(135deg, #0b2d6b 0%, #1d4ed8 100%) !important;
  position: relative;
  overflow: hidden;
}
.art-hero::after,
.article__header::after,
.hero::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Trust card premium ──────────────────────────────────── */
.trust-card {
  border-top: 3px solid #2563eb !important;
  transition: transform .2s, box-shadow .2s !important;
}
.trust-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.12) !important;
}

/* ── Service card premium ────────────────────────────────── */
.service-card {
  border-top: 3px solid #f97316 !important;
  transition: transform .2s, box-shadow .2s !important;
}
.service-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.12) !important;
}

/* ── FAQ premium ─────────────────────────────────────────── */
.faq__item {
  border-top: 2px solid transparent !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.faq__item:hover {
  border-top-color: #2563eb !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.10) !important;
}

/* ── Topbar polish ───────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, #0b2d6b 0%, #0d3595 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}

/* ── Cost table premium ──────────────────────────────────── */
.cost-table th {
  background: linear-gradient(90deg, #0b2d6b 0%, #1d4ed8 100%) !important;
  letter-spacing: .04em;
}
.cost-table tr:hover td { background: #eff6ff !important; }

/* ── Callout boxes premium ───────────────────────────────── */
.callout {
  box-shadow: 0 2px 10px rgba(0,0,0,.06) !important;
  border-radius: 0 10px 10px 0 !important;
}

/* ── Hero badge ──────────────────────────────────────────── */
.hero__badge,
.art-hero__label,
.article__category {
  background: rgba(249,115,22,.18) !important;
  border: 1px solid rgba(249,115,22,.4) !important;
  color: #fdba74 !important;
}

/* ── Breadcrumb premium ──────────────────────────────────── */
.breadcrumb {
  background: #f8faff !important;
  border-bottom: 1px solid #e5e7eb !important;
}

/* ── Footer premium ──────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #0b1120 100%) !important;
}

/* ── Hero CTA Group ──────────────────────────────────────── */
.art-hero__cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.art-hero__cta .cta-btn {
  font-size: 18px !important;
  padding: 16px 32px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #fff !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(234,88,12,.35); }
  50% { box-shadow: 0 6px 28px rgba(234,88,12,.55); }
}
.art-hero__cta span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
@media (max-width: 640px) {
  .art-hero__cta { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 20px; }
  .art-hero__cta .cta-btn { justify-content: center; font-size: 16px !important; padding: 14px 20px !important; }
  .art-hero__cta span { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM THEME v2 — Full CTA & Design System Overhaul
   ═══════════════════════════════════════════════════════════ */

/* ── Keyframe Animations ─────────────────────────────────── */
@keyframes premiumPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(234,88,12,.4), 0 0 0 0 rgba(249,115,22,.15); }
  50%       { box-shadow: 0 8px 36px rgba(234,88,12,.55), 0 0 0 8px rgba(249,115,22,.0); }
}
@keyframes ringPulse {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(249,115,22,.0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,.0); }
}

/* ── Premium Button Base ─────────────────────────────────── */
.cta-btn,
.btn-call,
.cta-btn-primary,
.cta-btn-large,
a[href^="tel"].cta-btn,
a[href^="tel"].btn-call,
.cta-block .cta-button {
  background: linear-gradient(135deg, #ff7a1a 0%, #e8500a 60%, #c73d00 100%) !important;
  box-shadow: 0 4px 20px rgba(200,60,0,.38), inset 0 1px 0 rgba(255,255,255,.18) !important;
  border: 1.5px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .025em !important;
  text-transform: none !important;
  color: #fff !important;
  transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s ease, background .15s !important;
  animation: premiumPulse 3.5s ease-in-out infinite !important;
}
.cta-btn:hover,
.btn-call:hover,
.cta-btn-primary:hover,
.cta-btn-large:hover,
a[href^="tel"].cta-btn:hover,
a[href^="tel"].btn-call:hover,
.cta-block .cta-button:hover {
  background: linear-gradient(135deg, #ff8c30 0%, #f06010 60%, #d44000 100%) !important;
  box-shadow: 0 8px 36px rgba(200,60,0,.5), inset 0 1px 0 rgba(255,255,255,.22) !important;
  transform: translateY(-3px) scale(1.015) !important;
  animation: none !important;
}

/* ── CTA Box (mid-page) ──────────────────────────────────── */
.cta-box {
  background: linear-gradient(145deg, #07245a 0%, #0d3a9e 55%, #1651c8 100%) !important;
  border-top: 3px solid #f97316 !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 56px rgba(7,36,90,.32), 0 2px 0 rgba(249,115,22,.6) !important;
  padding: 44px 40px !important;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.045) 0%, transparent 65%);
  pointer-events: none;
}
.cta-box h3 {
  font-size: clamp(22px,3.5vw,30px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin-bottom: 10px !important;
  line-height: 1.25 !important;
}
.cta-box p {
  font-size: 16px !important;
  color: rgba(255,255,255,.78) !important;
  margin-bottom: 28px !important;
  line-height: 1.65 !important;
}
.cta-box .cta-btn {
  font-size: 20px !important;
  padding: 18px 42px !important;
  border-radius: 12px !important;
  animation: ringPulse 2.5s ease-in-out infinite !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.cta-box .cta-btn:hover {
  animation: none !important;
}
.cta-sub {
  display: block !important;
  margin-top: 14px !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.48) !important;
  letter-spacing: .03em !important;
}

/* ── Full CTA Section (page bottom) ──────────────────────── */
.cta-section {
  background: linear-gradient(140deg, #06174a 0%, #0c2e8f 45%, #1651c8 80%, #1e64e8 100%) !important;
  border-top: 4px solid #f97316 !important;
  padding: 80px 0 !important;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,.07) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.03) 0%, transparent 55%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}
.cta-section h2 {
  font-size: clamp(26px,4.5vw,44px) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  margin-bottom: 18px !important;
}
.cta-section p {
  font-size: 18px !important;
  color: rgba(255,255,255,.75) !important;
  max-width: 580px !important;
  margin-bottom: 40px !important;
}
.cta-section .cta-btn-large,
.cta-section a.cta-btn-large {
  font-size: 22px !important;
  padding: 22px 52px !important;
  border-radius: 12px !important;
  animation: ringPulse 2.5s ease-in-out infinite !important;
}
.cta-section .cta-btn-large:hover,
.cta-section a.cta-btn-large:hover {
  animation: none !important;
}
.cta-section .cta-note,
.cta-note {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Sidebar CTA Card ─────────────────────────────────────── */
.sidebar-card--cta {
  background: linear-gradient(145deg, #07245a 0%, #0d3a9e 100%) !important;
  border-top: 3px solid #f97316 !important;
  box-shadow: 0 10px 40px rgba(7,36,90,.3) !important;
  border-radius: 14px !important;
}
.sidebar-card--cta .btn-call {
  animation: ringPulse 2.8s ease-in-out infinite !important;
}
.sidebar-card--cta .btn-call:hover {
  animation: none !important;
}

/* ── Header Call Button ───────────────────────────────────── */
.btn-call-header {
  background: linear-gradient(135deg, #ff7a1a 0%, #e8500a 100%) !important;
  box-shadow: 0 4px 16px rgba(200,60,0,.35) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  letter-spacing: .02em !important;
  transition: transform .18s, box-shadow .18s !important;
  animation: none !important;
}
.btn-call-header:hover {
  background: linear-gradient(135deg, #ff8c30 0%, #f06010 100%) !important;
  box-shadow: 0 7px 28px rgba(200,60,0,.5) !important;
  transform: translateY(-2px) !important;
}

/* ── Mobile CTA Bar ───────────────────────────────────────── */
.mobile-cta-bar {
  background: linear-gradient(90deg, #06174a 0%, #0c2e8f 100%) !important;
  border-top: 2px solid rgba(249,115,22,.5) !important;
}
.mobile-cta-bar a {
  background: linear-gradient(135deg, #ff7a1a 0%, #e8500a 100%) !important;
  box-shadow: 0 3px 12px rgba(200,60,0,.35) !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
}

/* ── Emergency Inline Banner ─────────────────────────────── */
[style*="background:#dc2626"],
div[style*="background: #dc2626"],
div[style*="background:#b91c1c"] {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 24px rgba(220,38,38,.3) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
}

@media (max-width: 768px) {
  .cta-box { padding: 32px 22px !important; }
  .cta-box .cta-btn { font-size: 17px !important; padding: 15px 28px !important; }
  .cta-section { padding: 56px 0 !important; }
  .cta-section .cta-btn-large, .cta-section a.cta-btn-large { font-size: 18px !important; padding: 18px 32px !important; }
}
