/* ========================================
   PeakLine Appliances Fixer — Custom CSS
   Brand: Logo Blue #1E9CD7 / Logo Orange #F0772C / Black
   No external CSS framework. Mobile-first.
   ======================================== */

:root {
  --blue: #1E9CD7;
  --blue-dark: #1681B5;
  --blue-deep: #0F5F88;
  --orange: #F0772C;
  --orange-dark: #D86220;
  --orange-light: #FFB37A;
  --black: #0A0A0F;
  --ink: #14141C;
  --zinc-900: #18181B;
  --zinc-800: #27272A;
  --zinc-700: #3F3F46;
  --zinc-600: #52525B;
  --zinc-500: #71717A;
  --zinc-400: #A1A1AA;
  --zinc-300: #D4D4D8;
  --zinc-200: #E4E4E7;
  --zinc-100: #F4F4F5;
  --zinc-50: #FAFAFA;
  --white: #FFFFFF;
  --bg: #FAFAFA;
  --card: #FFFFFF;
  --border: #E4E4E7;
  --shadow-lg: 0 25px 50px -12px rgba(15, 95, 136, 0.25);
  --grad-brand: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  --grad-dark: linear-gradient(140deg, #0A0A0F 0%, #14141C 60%, #0F5F88 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  font-family: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Anton', 'Barlow Condensed', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  word-wrap: break-word;
}
.serif { font-family: 'Barlow', sans-serif; text-transform: none; font-weight: 800; letter-spacing: -0.02em; }
p { color: #3F3F46; }
::selection { background: var(--orange); color: #fff; }

/* Utilities */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; gap: 24px; }
.grid { display: grid; gap: 24px; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; letter-spacing: 0.05em; }

/* Header */
.site-header {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 10px;
  display: flex;
  justify-content: center;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  padding: 8px 10px 8px 14px;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(30, 156, 215, 0.35);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  gap: 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
  min-width: 0;
}
.brand img {
  height: 38px;
  width: auto;
  max-width: 200px;
  display: block;
}

.nav-desktop { display: none; gap: 2px; align-items: center; }
.nav-desktop > a, .nav-desktop > .has-dd > button {
  color: #fff;
  padding: 9px 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-desktop a:hover, .nav-desktop button:hover { color: var(--orange); }
.nav-desktop .active { color: var(--blue); }
.has-dd { position: relative; }
.has-dd > button { display: flex; align-items: center; gap: 4px; }
.has-dd .caret { width: 12px; height: 12px; }
.dd-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  max-height: 70vh;
  overflow-y: auto;
  background: #0F0F15;
  border: 1px solid var(--zinc-800);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.has-dd:hover .dd-panel, .has-dd:focus-within .dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dd-panel a {
  display: block;
  padding: 9px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zinc-300);
  border-radius: 6px;
}
.dd-panel a:hover { background: rgba(30,156,215,0.18); color: var(--blue); }
.dd-panel.two-col { columns: 2; column-gap: 6px; min-width: 460px; }
.dd-panel.two-col a { break-inside: avoid; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 12px 20px; border-radius: 8px; transition: transform 0.15s, box-shadow 0.2s, background 0.2s; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-call-lg svg { width: 22px; height: 22px; }
.btn-call-xl svg { width: 26px; height: 26px; }
.btn:active { transform: translateY(1px); }
.btn-call { background: var(--orange); color: #fff; font-size: 13px; }
.btn-call:hover { background: var(--orange-dark); box-shadow: 0 8px 20px rgba(240,119,44,0.45); }
.btn-call-lg { font-size: 17px; padding: 18px 28px; border-radius: 10px; }
.btn-call-xl { font-size: clamp(1rem, 4vw, 1.4rem); padding: 20px 30px; border-radius: 12px; }
.btn-ghost-light { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.18); font-size: 12.5px; }
.btn-ghost-light:hover { background: rgba(30,156,215,0.18); border-color: var(--blue); color: var(--blue); }

.mobile-toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--zinc-700);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-toggle:hover { color: var(--orange); border-color: var(--orange); }
.mobile-toggle svg { width: 22px; height: 22px; }

.head-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.head-actions .btn-call { display: none; padding: 10px 14px; font-size: 12px; }
.head-actions .btn-call .call-label { display: none; }

@media (min-width: 480px) {
  .head-actions .btn-call { display: inline-flex; }
}
@media (min-width: 720px) {
  .head-actions .btn-call .call-label { display: inline; }
}
@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  .mobile-toggle { display: none; }
  .header-bar { padding: 10px 18px; }
  .brand img { height: 44px; max-width: 240px; }
}

/* Mobile sidebar */
.m-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 110; opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; }
.m-overlay.open { opacity: 1; visibility: visible; }
.m-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 320px; max-width: 88vw;
  background: #0A0A0F;
  border-left: 1px solid var(--zinc-800);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}
.m-sidebar.open { transform: translateX(0); }
.m-sidebar-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--zinc-800); color: #fff; flex-shrink: 0; }
.m-sidebar-head img { height: 32px; width: auto; max-width: 180px; }
.m-sidebar-head .m-close-btn {
  display: inline-flex; width: 40px; height: 40px;
  border-radius: 8px; border: 1px solid var(--zinc-700);
  color: #fff; align-items: center; justify-content: center;
  background: transparent;
}
.m-sidebar-head .m-close-btn svg { width: 20px; height: 20px; }
.m-sidebar-head .m-close-btn:hover { color: var(--orange); border-color: var(--orange); }
.m-sidebar-body { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 14px 12px; }
.m-sidebar-body a { display: block; padding: 12px 14px; color: var(--zinc-200); font-weight: 800; font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 6px; }
.m-sidebar-body a:hover, .m-sidebar-body a:active { background: rgba(30,156,215,0.12); color: var(--blue); }
.m-acc { margin-top: 4px; }
.m-acc-btn {
  display: flex; width: 100%; justify-content: space-between; align-items: center;
  padding: 12px 14px;
  color: var(--zinc-200);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  background: transparent;
}
.m-acc-btn .caret { width: 14px; height: 14px; transition: transform 0.25s; }
.m-acc.open .m-acc-btn { color: var(--blue); background: rgba(30,156,215,0.08); }
.m-acc.open .m-acc-btn .caret { transform: rotate(180deg); }
.m-acc-btn:active { color: var(--blue); }
.m-acc-panel {
  display: none;
  padding-left: 12px;
  border-left: 2px solid var(--orange);
  margin: 4px 0 6px 14px;
  max-height: 320px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.m-acc.open .m-acc-panel { display: block; }
.m-acc-panel a { font-size: 12px; padding: 9px 12px; color: var(--zinc-400); font-weight: 700; letter-spacing: 0.05em; }
.m-sidebar-foot { padding: 14px; border-top: 1px solid var(--zinc-800); flex-shrink: 0; }
.m-sidebar-foot .btn { width: 100%; }
body.no-scroll { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  background: var(--grad-dark);
  color: #fff;
  padding: 150px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 22% 18%, rgba(30,156,215,0.45), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(240,119,44,0.40), transparent 42%),
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 60px; } .hero { padding: 180px 0 130px; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,156,215,0.16);
  border: 1px solid rgba(30,156,215,0.5);
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(30,156,215,0.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(30,156,215,0.25); } 50% { box-shadow: 0 0 0 8px rgba(30,156,215,0.05); } }
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  margin: 18px 0 16px;
}
.hero h1 .accent { color: var(--orange); display: inline-block; }
.hero h1 .accent-2 { color: var(--blue); display: inline-block; }
.hero p.lead { color: var(--zinc-300); font-size: clamp(1rem, 1.5vw, 1.18rem); max-width: 560px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 28px; color: var(--zinc-300); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }

.hero-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  isolation: isolate;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.85) 100%);
  z-index: 1;
}
.hero-card .badge-stack { position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-card .badge { background: rgba(15,15,21,0.9); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); padding: 12px 14px; border-radius: 10px; }
.hero-card .badge .num { font-family: 'Anton'; font-size: 26px; color: var(--orange); display: block; line-height: 1; }
.hero-card .badge .lbl { color: var(--zinc-300); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.hero-card .float-tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--orange); color: #fff; font-weight: 800; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 10px; border-radius: 6px; }
@media (max-width: 767px) { .hero-card { display: none; } }

/* Section */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-dark p { color: var(--zinc-300); }
.section-muted { background: #F4F4F5; }
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: var(--orange); }
.section-intro { color: var(--zinc-600); max-width: 720px; font-size: 1.07rem; }
.section-dark .section-intro { color: var(--zinc-300); }
.section-head-center { text-align: center; max-width: 800px; margin: 0 auto 56px; }
.section-head-center .section-intro { margin: 0 auto; }
.divider { width: 70px; height: 4px; background: var(--orange); margin: 18px 0 24px; border-radius: 2px; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(15,95,136,0.15); border-color: var(--blue); }
.card .icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
}
.card.alt .icon { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-family: 'Anton'; font-size: 1.35rem; margin-bottom: 8px; color: var(--ink); }
.card p { font-size: 0.93rem; color: var(--zinc-600); }
.card .arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--orange); font-weight: 800; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: gap 0.2s; }
.card:hover .arrow { gap: 10px; }

/* Stat cards */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 18px;
}
.stat .num { font-family: 'Anton'; font-size: clamp(2rem, 4vw, 3rem); color: var(--orange); line-height: 1; display: block; }
.stat .num.alt { color: var(--blue); }
.stat .lbl { color: var(--zinc-300); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 8px; display: block; }

/* Feature list (Why us) */
.feat-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .feat-row { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.feat {
  display: flex; gap: 14px; padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.feat:hover { border-color: var(--blue); transform: translateY(-2px); }
.feat .feat-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--grad-brand); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.feat .feat-icon svg { width: 22px; height: 22px; }
.feat h4 { font-size: 1.1rem; font-family: 'Anton'; }
.feat p { font-size: 0.92rem; margin-top: 4px; }

/* Process timeline */
.timeline { position: relative; border-left: 3px solid var(--orange); margin-left: 18px; padding: 8px 0; }
.timeline-item { position: relative; padding: 4px 0 36px 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: -21px; top: 0;
  width: 40px; height: 40px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: 'Anton'; font-size: 18px;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline { counter-reset: step; }
.timeline-item h3 { font-size: 1.25rem; margin-bottom: 6px; }
.timeline-item p { color: var(--zinc-600); }
.section-dark .timeline { border-color: var(--orange); }
.section-dark .timeline-item::before { border-color: var(--ink); }

/* Testimonial */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: rgba(255,255,255,0.04);
  border-top: 3px solid var(--blue);
  padding: 26px 22px;
  border-radius: 0 0 14px 14px;
}
.t-card:nth-child(2) { border-top-color: var(--orange); }
.t-card:nth-child(3) { border-top-color: var(--blue); }
.t-card:nth-child(4) { border-top-color: var(--orange); }
.t-card:nth-child(5) { border-top-color: var(--blue); }
.t-card:nth-child(6) { border-top-color: var(--orange); }
.t-stars { color: var(--orange); margin-bottom: 10px; letter-spacing: 0.1em; font-size: 14px; }
.t-quote { color: var(--zinc-200); font-style: italic; margin-bottom: 14px; font-size: 1rem; }
.t-author { font-family: 'Anton'; color: #fff; font-size: 1.1rem; }
.t-loc { color: var(--zinc-400); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* Locations chip list */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.chip:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
.chip.zip { background: var(--zinc-100); }
.chip.zip:hover { background: var(--blue); border-color: var(--blue); }

/* Problem cards */
.problem-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.prob {
  background: rgba(240,119,44,0.06);
  border-left: 4px solid var(--orange);
  padding: 18px 18px;
  border-radius: 0 10px 10px 0;
}
.prob h3 { font-family: 'Anton'; font-size: 1.1rem; color: var(--orange-dark); margin-bottom: 6px; }
.prob p { color: #5C2E0F; font-size: 0.93rem; }

/* FAQ */
.faq { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 8px 18px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary { font-family: 'Anton'; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'Anton'; color: var(--orange); font-size: 28px; line-height: 1; transition: transform 0.25s; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 12px; color: var(--zinc-600); font-size: 0.97rem; }

/* CTA section (full-width call card) */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, #F89052 50%, var(--blue) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.08);
}
.cta-band p { font-size: 1.2rem; color: rgba(255,255,255,0.95); max-width: 640px; margin: 0 auto 32px; }
.cta-band .btn { background: #0A0A0F; color: #fff; }
.cta-band .btn:hover { background: #fff; color: var(--orange); }

/* Floating phone bar (mobile) */
.mobile-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  padding: 14px 18px;
  text-align: center;
  font-family: 'Anton'; font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 -8px 22px rgba(0,0,0,0.25);
}
.mobile-call-bar svg { width: 22px; height: 22px; }
.mobile-call-bar .ring { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.18); }
@media (min-width: 768px) {
  body { padding-bottom: 0 !important; }
}

/* Map */
.map-wrap { width: 100%; height: 55vh; min-height: 380px; position: relative; background: var(--ink); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(35%) contrast(110%); }
.map-wrap::before, .map-wrap::after { content: ''; position: absolute; left: 0; right: 0; height: 8px; background: var(--orange); }
.map-wrap::before { top: 0; }
.map-wrap::after { bottom: 0; background: var(--blue); }

/* Footer */
.site-footer { background: #0A0A0F; color: #fff; padding: 70px 0 30px; border-top: 6px solid var(--orange); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand .logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.foot-brand .logo-row img { height: 56px; width: auto; max-width: 280px; display: block; }
.foot-brand p { color: var(--zinc-400); font-size: 14px; max-width: 320px; }
.foot-col h4 { font-family: 'Anton'; font-size: 14px; color: var(--orange); margin-bottom: 14px; letter-spacing: 0.08em; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col a { color: var(--zinc-400); font-size: 13.5px; font-weight: 600; transition: color 0.18s; }
.foot-col a:hover { color: var(--blue); }
.foot-bottom { border-top: 1px solid var(--zinc-800); margin-top: 50px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; color: var(--zinc-600); font-size: 12.5px; letter-spacing: 0.05em; }
.foot-bottom a { color: var(--zinc-500); margin-right: 18px; }
.foot-bottom a:hover { color: var(--blue); }

/* Breadcrumbs */
.crumbs { padding: 110px 0 0; background: var(--ink); color: var(--zinc-400); }
.crumbs .container { padding-top: 28px; padding-bottom: 4px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.crumbs a { color: var(--blue); }
.crumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--zinc-700); }
.crumbs li:last-child { color: #fff; }

/* Page hero */
.page-hero { background: var(--grad-dark); color: #fff; padding: 36px 0 70px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(30,156,215,0.32), transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(240,119,44,0.32), transparent 38%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 16px; }
.page-hero h1 .accent { color: var(--orange); }
.page-hero h1 .accent-2 { color: var(--blue); }
.page-hero p.lead { color: var(--zinc-300); max-width: 640px; font-size: 1.1rem; margin-bottom: 22px; }
.page-hero .eyebrow { margin-bottom: 8px; }

/* Service / Location detail content sections */
.content-prose { max-width: 760px; }
.content-prose p { font-size: 1.05rem; color: var(--zinc-700); margin-bottom: 16px; }
.content-prose h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 26px 0 14px; }
.content-prose h3 { font-size: 1.3rem; margin: 18px 0 10px; color: var(--blue-deep); }
.content-prose ul { margin: 8px 0 18px 22px; }
.content-prose ul li { margin-bottom: 7px; color: var(--zinc-700); font-size: 1.02rem; }
.content-prose strong { color: var(--ink); font-weight: 800; }

.two-col-content { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .two-col-content { grid-template-columns: 2fr 1fr; gap: 60px; } }
.aside-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  position: sticky;
  top: 110px;
}
.aside-card h3 { font-family: 'Anton'; font-size: 1.3rem; margin-bottom: 10px; }
.aside-card p { font-size: 0.95rem; color: var(--zinc-600); margin-bottom: 16px; }
.aside-card .btn { width: 100%; margin-bottom: 14px; }
.aside-info { display: flex; flex-direction: column; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.aside-info > div { display: flex; align-items: flex-start; gap: 10px; }
.aside-info svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.aside-info span { font-size: 13px; color: var(--zinc-700); line-height: 1.45; }
.aside-info b { color: var(--ink); display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Service / location grids in detail pages */
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 600px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-link {
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.related-link:hover { border-color: var(--orange); color: var(--orange); background: #FFF7F0; }

/* About page */
.about-photo { aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
.value {
  padding: 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}
.value .num { font-family: 'Anton'; font-size: 2.4rem; color: var(--blue); line-height: 1; }
.value h3 { font-size: 1.3rem; margin: 8px 0 6px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; } }
.contact-card {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(30,156,215,0.35), transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(240,119,44,0.35), transparent 35%);
  z-index: 0;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card h2 { font-size: 2rem; color: #fff; margin-bottom: 6px; }
.contact-card .ph { font-family: 'Anton'; font-size: clamp(2rem, 5vw, 3.4rem); color: var(--orange); display: block; margin: 12px 0 8px; letter-spacing: 0.01em; }
.contact-card p { color: var(--zinc-300); }
.contact-card .info-row { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 26px; }
@media (min-width: 540px) { .contact-card .info-row { grid-template-columns: 1fr 1fr; } }
.contact-card .info {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
}
.contact-card .info b { color: var(--blue); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-card .info span { display: block; color: #fff; margin-top: 4px; font-weight: 700; font-size: 14px; }

.area-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
}
.area-card h3 { font-size: 1.6rem; margin-bottom: 10px; }
.area-card p { margin-bottom: 18px; }
.area-card .chip-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 0.04s; }
.reveal:nth-child(2) { transition-delay: 0.10s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.22s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal:nth-child(6) { transition-delay: 0.34s; }
.reveal:nth-child(7) { transition-delay: 0.40s; }
.reveal:nth-child(8) { transition-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}

.pad-bottom-bar { padding-bottom: 70px; }
@media (min-width: 768px) { .pad-bottom-bar { padding-bottom: 0; } .mobile-call-bar { display: none; } }

/* ========================================
   Mobile-specific refinements (≤ 767px)
   ======================================== */
@media (max-width: 767px) {
  body { font-size: 15px; padding-bottom: 70px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .container, .container-narrow { padding: 0 16px; }

  /* Hero */
  .hero { padding: 110px 0 56px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-meta { gap: 14px 18px; font-size: 11.5px; }
  .hero-actions { gap: 10px; }
  .btn-call-lg { font-size: 15px; padding: 16px 22px; }

  /* Page hero */
  .page-hero { padding: 30px 0 50px; }
  .page-hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .page-hero p.lead { font-size: 1rem; }
  .crumbs { padding-top: 96px; }
  .crumbs ol { font-size: 11px; }

  /* Section heads */
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .section-head-center { margin-bottom: 36px; }
  .section-intro { font-size: 0.98rem; }

  /* Cards / grids */
  .card-grid { gap: 14px; }
  .card { padding: 20px 18px; }
  .card .icon { width: 46px; height: 46px; }
  .card .icon svg { width: 22px; height: 22px; }
  .feat { padding: 16px; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .cta-band p { font-size: 1rem; padding: 0 12px; }

  /* Contact page */
  .contact-card { padding: 28px 22px; }
  .contact-card .ph { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .area-card { padding: 26px 22px; }

  /* Aside card */
  .aside-card { position: static; padding: 22px; }

  /* Footer */
  .site-footer { padding: 50px 0 90px; }
  .foot-grid { gap: 28px; }

  /* Map */
  .map-wrap { height: 360px; min-height: 360px; }

  /* Stat cards */
  .stat { padding: 18px 14px; }
  .stat .num { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .stat .lbl { font-size: 10px; }

  /* Testimonials */
  .t-card { padding: 22px 18px; }
  .t-quote { font-size: 0.96rem; }

  /* FAQ */
  .faq { padding: 4px 14px; }
  .faq-item summary { font-size: 1rem; gap: 10px; }
  .faq-item p { font-size: 0.95rem; }

  /* Timeline */
  .timeline { margin-left: 14px; }
  .timeline-item { padding-left: 24px; padding-bottom: 26px; }
  .timeline-item::before { width: 34px; height: 34px; left: -18px; font-size: 15px; }
  .timeline-item h3 { font-size: 1.1rem; }

  /* Problems grid */
  .prob { padding: 16px; }
  .prob h3 { font-size: 1rem; }

  /* Header */
  .site-header { top: 8px; padding: 0 8px; }
  .header-bar { padding: 7px 8px 7px 12px; gap: 6px; }
  .brand img { height: 34px; max-width: 170px; }
  .head-actions .btn-call { padding: 9px 12px; font-size: 11.5px; }
  .mobile-toggle { width: 40px; height: 40px; }
  .mobile-toggle svg { width: 20px; height: 20px; }

  /* Chips */
  .chip { padding: 8px 12px; font-size: 11.5px; }

  /* Related grid (sub-services / locations) */
  .related-grid { gap: 10px; }
  .related-link { padding: 12px 14px; font-size: 11.5px; }

  /* Mobile call bar polish */
  .mobile-call-bar { padding: 12px 14px; font-size: 1rem; }
  .mobile-call-bar svg { width: 18px; height: 18px; }
  .mobile-call-bar .ring { width: 28px; height: 28px; }
}

/* Very small phones (≤ 380px) */
@media (max-width: 380px) {
  .brand img { height: 30px; max-width: 140px; }
  .head-actions .btn-call { padding: 8px 10px; font-size: 11px; gap: 5px; }
  .head-actions .btn-call svg { width: 14px; height: 14px; }
  .hero h1 { font-size: 1.85rem; }
  .page-hero h1 { font-size: 1.85rem; }
  .header-bar { padding: 6px 6px 6px 10px; }
  .mobile-call-bar { font-size: 0.92rem; }
}

/* Prevent horizontal scroll on mobile */
html, body { max-width: 100vw; overflow-x: hidden; }
.hero-card { max-width: 100%; }
