:root {
  --red: #C8102E;
  --red-dark: #9C0C24;
  --black: #111111;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --gray-2: #E5E5E5;
  --text: #1A1A1A;
  --muted: #5A5A5A;
  --yellow: #FFB800;
  --yellow-dark: #E5A500;
  --shadow: 0 6px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  padding-bottom: 76px;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; font-weight: 800; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw + .5rem, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw + .5rem, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul.checks { list-style: none; padding: 0; margin: 0 0 1em; }
ul.checks li { padding-left: 30px; position: relative; margin-bottom: 8px; }
ul.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--red); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

/* ==== TOP BAR ==== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: visible;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 77px; min-height: 77px; padding: 0 20px; max-width: 1240px; margin: 0 auto;
  overflow: visible;
}
.brand {
  display: block;
  width: 197px; height: 127px;
  background: var(--white); border: 1px solid var(--gray-2); border-top: 0;
  border-radius: 0 0 10px 10px; box-shadow: 0 10px 26px rgba(0,0,0,.1);
  padding: 0; overflow: hidden;
  align-self: flex-start;
  text-decoration: none; flex-shrink: 0; margin: 0; position: relative; z-index: 2;
}
.brand img {
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 184px; height: auto; max-width: none; display: block;
}
@media (max-width: 600px) {
  .topbar-inner { height: 64px; min-height: 64px; }
  .brand { width: 155px; height: 96px; }
  .brand img { top: 11px; width: 144px; }
}
@media (max-width: 380px) {
  .topbar-inner { height: 58px; min-height: 58px; }
  .brand { width: 135px; height: 81px; }
  .brand img { top: 9px; width: 126px; }
}

.nav { display: none; align-items: center; gap: 22px; }
.nav a { color: var(--black); font-weight: 600; font-size: .95rem; text-decoration: none; }
.nav a:hover, .nav a.active { color: var(--red); text-decoration: none; }
@media (min-width: 1000px) { .nav { display: flex; } }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: "▾"; margin-left: 4px; font-size: .7em; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  background: var(--white);
  border-radius: 10px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-2);
  padding: 10px;
  min-width: 240px;
  display: none;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 14px; border-radius: 6px;
  color: var(--black); font-weight: 600; font-size: .9rem;
}
.nav-dropdown-menu a:hover { background: var(--gray); color: var(--red); }
.nav-dropdown-menu.cols { columns: 2; column-gap: 4px; min-width: 380px; }

.topbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white) !important;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; white-space: nowrap;
  transition: background .15s;
}
.topbar-cta:hover { background: var(--red-dark); text-decoration: none; }
@media (max-width: 480px) { .topbar-cta { padding: 10px 14px; font-size: .9rem; } }

/* ==== HERO ==== */
.hero {
  position: relative; color: var(--white);
  background-color: #1a1a1a;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,.78), rgba(17,17,17,.78));
}
.hero > * { position: relative; z-index: 1; }
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 70px 20px 80px; text-align: center; }
.hero h1 { color: var(--white); text-shadow: 0 2px 14px rgba(0,0,0,.3); margin-bottom: 18px; }
.hero .sub {
  font-size: clamp(1.05rem, 1.4vw + .6rem, 1.3rem);
  max-width: 780px; margin: 0 auto 32px;
  color: rgba(255,255,255,.95); line-height: 1.5;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-trust { margin-top: 32px; color: rgba(255,255,255,.92); font-size: .95rem; font-weight: 500; letter-spacing: .02em; }
.hero-trust .dot { color: var(--yellow); margin: 0 8px; }

/* ==== Compact hero for inner pages ==== */
.hero.compact .hero-inner { padding: 56px 20px 60px; }
.hero.compact h1 { font-size: clamp(2rem, 4vw + .4rem, 3rem); }
.hero.compact .sub { font-size: clamp(1rem, 1vw + .6rem, 1.18rem); margin-bottom: 24px; }

.breadcrumbs { font-size: .85rem; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: var(--yellow); text-decoration: underline; }
.breadcrumbs .sep { margin: 0 6px; opacity: .6; }

/* ==== Buttons ==== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem;
  padding: 18px 28px; border-radius: 12px;
  text-decoration: none; border: 2px solid transparent;
  transition: transform .12s, background .15s, box-shadow .15s;
  cursor: pointer; line-height: 1; min-height: 56px;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-yellow { background: var(--yellow); color: var(--black) !important; box-shadow: 0 8px 22px rgba(255,184,0,.35); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-red { background: var(--red); color: var(--white) !important; box-shadow: 0 8px 22px rgba(200,16,46,.3); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline-white { background: transparent; color: var(--white) !important; border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black) !important; }
.btn-outline-red { background: var(--white); color: var(--red) !important; border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white) !important; }
.btn.sm { padding: 14px 22px; font-size: 1rem; min-height: 48px; }

/* ==== TRUST ==== */
.trust { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--gray-2); }
.trust h3 {
  text-align: center; color: var(--muted);
  font-family: 'Inter'; font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 28px;
}
.logos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px;
  align-items: center; justify-items: center;
  max-width: 1080px; margin: 0 auto;
}
@media (min-width: 700px) { .logos { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .logos { grid-template-columns: repeat(6, 1fr); } }
.logos img {
  max-width: 140px; max-height: 70px; width: auto; height: auto;
  filter: grayscale(1); opacity: .75;
  transition: filter .2s, opacity .2s;
}
.logos img:hover { filter: grayscale(0); opacity: 1; }

/* ==== Sections ==== */
section { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  display: inline-block; color: var(--red); font-weight: 700;
  font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* Services grid */
.services-bg { background: var(--gray); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--white); border-radius: 16px; padding: 28px 24px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; flex: 1; }
.card .card-cta {
  margin-top: 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red); color: var(--white) !important;
  padding: 12px 16px; border-radius: 10px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
}
.card .card-cta:hover { background: var(--red-dark); text-decoration: none; }
.card .read-more {
  margin-top: 10px; text-align: center; font-size: .9rem; font-weight: 600;
  color: var(--red);
}

/* How it works */
.how-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 900px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
.step {
  background: var(--white); border-radius: 16px; padding: 32px 26px;
  border: 2px solid var(--gray-2); position: relative;
  transition: border-color .15s, transform .15s;
}
.step:hover { border-color: var(--red); transform: translateY(-3px); }
.step .num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-family: 'Poppins'; font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }
.how-cta { text-align: center; margin-top: 40px; }

/* Why */
.why-bg { background: var(--gray); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 32px; } }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); padding: 20px 22px; border-radius: 12px;
  box-shadow: var(--shadow);
}
.why-item .check {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.why-item strong { display: block; color: var(--black); font-family: 'Poppins'; font-weight: 700; margin-bottom: 4px; font-size: 1.05rem; }
.why-item span { color: var(--muted); font-size: .95rem; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review {
  background: var(--white); border-radius: 16px; padding: 26px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-2);
  display: flex; flex-direction: column;
}
.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review p { color: var(--text); font-size: .98rem; flex: 1; line-height: 1.55; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-2); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; font-family: 'Poppins';
  flex-shrink: 0;
}
.review-author .who { font-weight: 700; color: var(--black); font-size: .95rem; }
.review-author .src { font-size: .8rem; color: var(--muted); }
.reviews-cta { text-align: center; margin-top: 36px; }

/* Before & After */
.ba-bg { background: var(--gray); }
.ba-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 700px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }
.ba-item {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--black);
  aspect-ratio: 1672/941;
}
.ba-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-item::after {
  content: "BEFORE | AFTER"; position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  background: rgba(0,0,0,.75); color: var(--white);
  padding: 6px 14px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .16em;
}
.ba-cta { text-align: center; margin-top: 36px; }

/* Area */
.area-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) { .area-wrap { grid-template-columns: 1fr 1fr; gap: 50px; } }
.area-cities { display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 20px 0 28px; }
.city-chip {
  background: var(--gray); color: var(--text);
  padding: 8px 14px; border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.city-chip:hover { background: var(--red); color: var(--white); text-decoration: none; }
.area-map { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: 14px; box-shadow: var(--shadow); }

/* FAQ */
.faq-bg { background: var(--gray); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--gray-2); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: var(--white); border: 0;
  font-family: 'Poppins'; font-weight: 700; font-size: 1.05rem;
  color: var(--black);
  padding: 20px 56px 20px 22px; position: relative;
}
.faq-q:hover { color: var(--red); }
.faq-q::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--red); font-weight: 400;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; padding: 0 22px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 20px; }

/* Final CTA */
.final {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white); text-align: center;
}
.final h2 { color: var(--white); }
.final p { color: rgba(255,255,255,.95); font-size: 1.15rem; max-width: 640px; margin: 0 auto 30px; }
.final-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Footer */
footer { background: var(--black); color: rgba(255,255,255,.78); padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; } }
.foot-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; font-family: 'Poppins'; font-weight: 700; }
.foot-grid a { color: rgba(255,255,255,.78); text-decoration: none; }
.foot-grid a:hover { color: var(--white); text-decoration: underline; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-brand img { height: 96px; width: auto; display: block; background: var(--white); padding: 8px; border-radius: 10px; margin-bottom: 14px; }
.foot-brand p { font-size: .95rem; line-height: 1.6; }
.foot-tag { color: rgba(255,255,255,.6); font-style: italic; font-size: .9rem; margin-top: 6px; }
.foot-phone { display: inline-block; color: var(--yellow) !important; font-weight: 700; font-size: 1.15rem; margin-top: 4px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.badge {
  background: rgba(255,255,255,.08); color: var(--white);
  padding: 6px 12px; border-radius: 999px; font-size: .75rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.15);
}
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px; padding-top: 22px;
  text-align: center; font-size: .85rem; color: rgba(255,255,255,.55);
}
.copyright a { color: rgba(255,255,255,.7); margin: 0 8px; }

/* Sticky mobile bar */
.mbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-top: 1px solid var(--gray-2);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 6px;
}
.mbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 8px 4px;
  border-radius: 10px;
  font-size: .78rem; font-weight: 700;
  text-decoration: none; line-height: 1.1; text-align: center;
}
.mbar .ic { font-size: 1.15rem; line-height: 1; }
.mbar .call { background: var(--red); color: var(--white); }
.mbar .text { background: var(--gray); color: var(--black); }
.mbar .quote { background: var(--yellow); color: var(--black); }
@media (min-width: 900px) { .mbar { display: none; } }

/* ==== Page content (long-form) ==== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.4em; margin-bottom: .4em; font-size: 1.4rem; }
.prose p, .prose ul, .prose ol { font-size: 1.05rem; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose ul li, .prose ol li { margin-bottom: 6px; }
.prose blockquote {
  border-left: 4px solid var(--red); background: var(--gray);
  padding: 16px 20px; margin: 1.4em 0; border-radius: 6px;
  font-style: italic;
}
.prose img { border-radius: 12px; box-shadow: var(--shadow); margin: 1.4em 0; }

/* Two-column content */
.two-col { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 60px; } }
.two-col img { border-radius: 14px; box-shadow: var(--shadow-lg); width: 100%; }

/* City links grid */
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 900px; margin: 0 auto; }
@media (min-width: 700px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
.city-link {
  background: var(--white); border: 2px solid var(--gray-2);
  padding: 18px 16px; border-radius: 12px;
  font-weight: 700; color: var(--black);
  text-align: center; text-decoration: none;
  transition: border-color .15s, transform .15s, color .15s;
}
.city-link:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); text-decoration: none; }
.city-link small { display: block; color: var(--muted); font-size: .75rem; font-weight: 500; margin-top: 4px; }

/* Form */
.form-wrap { background: var(--white); border-radius: 16px; padding: 32px 28px; box-shadow: var(--shadow-lg); max-width: 580px; margin: 0 auto; }
.form-wrap label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.form-wrap input, .form-wrap select, .form-wrap textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--gray-2); border-radius: 10px;
  font: inherit; margin-bottom: 16px;
  background: var(--white); color: var(--text);
}
.form-wrap input:focus, .form-wrap select:focus, .form-wrap textarea:focus { outline: none; border-color: var(--red); }
.form-wrap textarea { min-height: 110px; resize: vertical; }
.form-wrap button { width: 100%; }

/* Utility */
.center { text-align: center; }
.mt-4 { margin-top: 28px; }
.mb-0 { margin-bottom: 0 !important; }
