/* ============================================================
   ROOT TOKENS — Navy Slate & Copper Theme
   ============================================================ */
:root {
  --primary: #1e5a8a;
  --primary-bright: #2a7ab8;
  --primary-dark: #0c2340;
  --primary-light: #e8f0f8;
  --accent: #c45c26;
  --accent-dark: #9a4520;
  --dark: #0f172a;
  --surface: #ffffff;
  --light: #f4f7fb;
  --border: #c5d0dc;
  --text: #1e293b;
  --text-muted: #5c6b7a;
  --link-soft: #7eb8e8;
  --primary-rgb: 30, 90, 138;
  --radius: 10px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 10px 36px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.72;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  transition: color 0.2s;
}
a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER & NAV  — dark navy bar
   ============================================================ */
header.site-header {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Top accent stripe */
header.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--primary) 60%,
    transparent 100%
  );
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
  height: 66px;
  gap: 16px;
}

/* Logo */
.logo {
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='20' width='28' height='12' rx='2'/%3E%3Cpath d='M4 20 L9 10 h18 l5 10'/%3E%3Crect x='13' y='24' width='10' height='8' rx='1'/%3E%3C/svg%3E");
  background-size: 26px 26px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.logo img {
  max-height: 44px;
}

/* Nav links — only the top-level list (not .dropdown-menu) */
nav.main-nav {
  flex: 1;
}

nav.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
}

nav.main-nav > ul > li > a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition:
    background 0.18s,
    color 0.18s;
  display: block;
  letter-spacing: 0.01em;
}

nav.main-nav > ul > li > a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Dropdown trigger arrow */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: " ▾";
  font-size: 0.72em;
  opacity: 0.7;
}

/* Invisible hover bridge — prevents menu from closing in the gap */
.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  display: none;
}

.dropdown:hover::after,
.dropdown.open::after,
.dropdown:focus-within::after {
  display: block;
}

/* Dropdown panel — hidden by default; only under Services hover/open */
nav.main-nav .dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 12px;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  padding: 8px;
  list-style: none;
  z-index: 200;
}

nav.main-nav .dropdown:hover > .dropdown-menu,
nav.main-nav .dropdown:focus-within > .dropdown-menu,
nav.main-nav .dropdown.open > .dropdown-menu {
  display: flex;
}

nav.main-nav .dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    background 0.15s,
    color 0.15s;
}

nav.main-nav .dropdown-menu li a::before {
  content: "→";
  color: var(--primary);
  font-size: 0.8rem;
  opacity: 0;
  transition:
    opacity 0.15s,
    transform 0.15s;
  transform: translateX(-4px);
}

nav.main-nav .dropdown-menu li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

nav.main-nav .dropdown-menu li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Phone number in nav — far right */
.header-inner::after {
  content: "📞 (601) XXX-XXXX";
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 16px;
  letter-spacing: 0.01em;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #fff;
  order: 3;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(640px, 78vh, 900px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay-box {
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(2px);
  color: #fff;
  text-align: center;
  padding: 48px 52px;
  max-width: 620px;
  margin: 40px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero-business-name {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-phone {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin: 20px 0 24px;
  letter-spacing: 0.01em;
}

.hero-phone:hover {
  text-decoration: underline;
  color: #fff;
}

.btn-contact {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-contact:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ============================================================
   HEADING STRIP
   ============================================================ */
.heading-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 28px 24px;
}

.heading-strip h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

/* ============================================================
   MAIN BODY
   ============================================================ */
main .container {
  padding: 40px 24px 16px;
}

main h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--dark);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 10px;
}

main h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

main h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--dark);
}

main p {
  margin: 0 0 18px;
  color: var(--text);
}

main ol:not(.process-steps) {
  margin: 0 0 18px 26px;
}
main ol:not(.process-steps) li {
  margin-bottom: 8px;
}

/* ============================================================
   SERVICE CARDS — numbered editorial panels
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 32px 0 52px;
  border: 1px solid var(--border);
  background: var(--surface);
  counter-reset: service;
}

.service-card {
  counter-increment: service;
  background: var(--surface);
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  border: none;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding: 36px 32px 32px;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.service-card:nth-child(2n) {
  border-right: none;
}

.service-card:nth-child(n + 3) {
  border-bottom: none;
}

.service-card::before {
  content: counter(service, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.08;
  pointer-events: none;
  transition:
    opacity 0.3s,
    color 0.3s;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.service-card:hover {
  background: var(--primary-light);
  box-shadow: none;
  transform: none;
  border-color: var(--border);
  z-index: 1;
}

.service-card:hover::before {
  opacity: 0.16;
  color: var(--accent);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  padding: 0;
  margin-bottom: 20px;
  background: var(--primary-dark);
  color: #fff;
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.12);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}

.service-icon::before,
.service-icon::after {
  display: none;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
  filter: none;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(196, 92, 38, 0.15);
  transform: none;
}

.service-card:hover .service-icon svg {
  transform: none;
}

.service-card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.3;
  padding-left: 0;
  border-left: none;
}

.service-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.service-card h3 a:hover {
  color: var(--primary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
  flex: 1;
}

.card-link {
  display: none;
}

/* ============================================================
   PROCESS STEPS  — horizontal stepper
   ============================================================ */
.process-steps {
  list-style: none;
  margin: 36px 0 48px;
  padding: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

/* no old vertical spine */
.process-steps::before {
  display: none;
}

.process-steps li {
  counter-increment: steps;
  flex: 1;
  text-align: center;
  padding: 72px 14px 0;
  position: relative;
  margin: 0;
}

/* Numbered circle */
.process-steps li::before {
  content: counter(steps);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  z-index: 2;
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 7px var(--primary);
}

/* Connector line — right edge of circle to right edge of li */
.process-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 25px);
  right: -1px;
  height: 2px;
  background: linear-gradient(to right, var(--primary) 0%, var(--border) 100%);
  z-index: 1;
}

.process-steps li strong {
  display: block;
  color: var(--dark);
  font-size: 0.97rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process-steps li:not([style]) {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after {
  display: flex;
  gap: 18px;
  margin: 32px 0;
}

.before-after figure {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.before-after figcaption {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================================
   FAQ — numbered Q&A board
   ============================================================ */
.faq {
  margin: 20px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: faq;
  background: var(--primary-dark);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
}

.faq details {
  counter-increment: faq;
  border: none;
  border-radius: 10px;
  background: transparent;
  overflow: hidden;
  margin: 0;
  transition: background 0.25s;
}

.faq details + details {
  margin-top: 4px;
}

.faq details:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.faq details[open] {
  background: var(--surface);
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 56px 18px 64px;
  color: rgba(255, 255, 255, 0.92);
  list-style: none;
  display: block;
  position: relative;
  user-select: none;
  font-size: 0.98rem;
  line-height: 1.45;
  transition: color 0.2s;
}

.faq summary:hover {
  color: #fff;
}

.faq details[open] summary {
  color: var(--dark);
  padding-bottom: 10px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

/* Number badge */
.faq summary::before {
  content: counter(faq, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(196, 92, 38, 0.18);
  border: 1px solid rgba(196, 92, 38, 0.45);
  border-radius: 8px;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}

.faq details[open] summary::before {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  top: 18px;
  transform: none;
}

/* Chevron toggle */
.faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: translateY(-65%) rotate(45deg);
  background: none;
  border-radius: 0;
  transition:
    transform 0.25s,
    border-color 0.25s;
}

.faq details[open] summary::after {
  border-color: var(--primary);
  transform: translateY(-20%) rotate(225deg);
  content: "";
  background: none;
  color: transparent;
}

.faq details p {
  margin: 0;
  padding: 4px 56px 20px 64px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
  border-top: none;
  position: relative;
}

.faq details p::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 12px;
  border-radius: 2px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
  margin-top: 40px;
}

.cta-section h2 {
  color: #fff;
  margin-top: 0;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.cta-section h2::after {
  display: none;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 0;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-section a.btn-contact {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 15px 36px;
  font-size: 0.95rem;
  border-radius: 8px;
  letter-spacing: 0.06em;
}

.cta-section a.btn-contact:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.cta-section a.cta-phone {
  color: #fff;
  font-weight: 800;
  font-size: 1.45rem;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.01em;
}

.cta-section a.cta-phone:hover {
  text-decoration: underline;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Intro paragraphs above the grid */
.contact-grid ~ p,
.contact-grid + p {
  margin-top: 8px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 32px 0 0;
  align-items: flex-start;
}

/* ── Form column ── */
.contact-grid .contact-form-col {
  flex: 1 1 440px;
  background: var(--surface);
  border-radius: 18px;
  border-top: 5px solid var(--primary);
  box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.12);
  padding: 36px 32px 32px;
}

.contact-form-col h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.contact-form-col h2::after {
  display: none;
}

.contact-form-col > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* ── Map column ── */
.contact-grid .contact-map-col {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-map-col h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.contact-map-col h2::after {
  display: none;
}

/* ── Form inputs ── */
form.lead-form label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  margin: 16px 0 6px;
  font-size: 0.88rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

form.lead-form input,
form.lead-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--light);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

form.lead-form input:focus,
form.lead-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.14);
}

form.lead-form textarea {
  min-height: 140px;
  resize: vertical;
}

form.lead-form button {
  margin-top: 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px 30px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.03em;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(var(--primary-rgb), 0.28);
}

form.lead-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.35);
}

/* ── Map placeholder / iframe ── */
.map-placeholder {
  border: 2px dashed var(--border);
  background: var(--light);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  border-radius: 14px;
  font-size: 0.93rem;
}

.contact-map-col iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

/* ── Info block below map (NAP + service area) ── */
.contact-map-col ~ p,
main .container > p:has(strong:first-child) {
  margin-top: 12px;
}

/* NAP card — the <p> directly after .contact-grid containing the address */
.contact-grid + p,
main > .container > p + p + p + p {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin-top: 28px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Service area line */
main > .container > p:last-of-type {
  background: var(--dark);
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.92rem;
  margin-top: 14px;
}

main > .container > p:last-of-type strong {
  color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 48px 0 90px;
  font-size: 0.93rem;
  border-top: 4px solid var(--primary);
}

footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

footer .footer-col {
  flex: 1 1 230px;
}

footer h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 7px;
}

footer a {
  color: var(--link-soft);
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-disclosure {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 18px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-style: italic;
  color: #64748b;
  font-size: 0.88rem;
}

.partner-links {
  max-width: 1100px;
  margin: 12px auto 0;
  padding: 0 24px;
  color: #475569;
  font-size: 0.82rem;
}

/* ============================================================
   STICKY MOBILE QUOTE BAR
   ============================================================ */
.sticky-quote {
  display: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
    height: auto;
    padding: 12px 16px;
  }

  /* Hide phone pill on mobile */
  .header-inner::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  nav.main-nav {
    display: none;
    width: 100%;
    order: 4;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0 4px;
  }

  nav.main-nav.open {
    display: block;
  }

  nav.main-nav > ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
  }

  nav.main-nav > ul > li > a {
    padding: 12px 8px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
  }

  nav.main-nav > ul > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown::after {
    display: none !important;
  }

  nav.main-nav .dropdown-menu {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    padding: 4px 0 8px 16px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0;
    border-top: none;
    transform: none;
    left: auto;
    min-width: 0;
  }

  /* Mobile: show submenu only when .open (tap), not hover */
  nav.main-nav .dropdown:hover > .dropdown-menu,
  nav.main-nav .dropdown:focus-within > .dropdown-menu {
    display: none;
  }

  nav.main-nav .dropdown.open > .dropdown-menu {
    display: flex;
  }

  nav.main-nav .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.75);
    border-radius: 4px;
  }

  nav.main-nav .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .hero {
    min-height: clamp(480px, 70vh, 720px);
  }
  .hero-business-name {
    font-size: 1.45rem;
  }
  .hero-phone {
    font-size: 1.3rem;
  }
  .hero-overlay-box {
    padding: 30px 22px;
    border-radius: 12px;
  }

  .heading-strip h1 {
    font-size: 1.35rem;
  }

  .faq {
    border-radius: 12px;
    padding: 6px;
  }

  .faq summary {
    padding: 16px 44px 16px 56px;
    font-size: 0.93rem;
  }

  .faq details[open] summary {
    padding-bottom: 8px;
  }

  .faq summary::before {
    left: 12px;
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .faq details[open] summary::before {
    top: 14px;
  }

  .faq summary::after {
    right: 16px;
  }

  .faq details p {
    padding: 2px 20px 16px 56px;
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card {
    flex-direction: column;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 22px 26px;
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-card:nth-child(n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-card::before {
    font-size: 2.5rem;
    top: 16px;
    right: 18px;
  }

  .service-card::after {
    left: 22px;
    right: 22px;
  }

  .service-icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-card-body {
    padding: 0;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .trust-bar {
    gap: 14px;
    font-size: 0.85rem;
    padding: 12px 16px;
  }

  .before-after {
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }
  .cta-section {
    padding: 44px 20px;
  }
  .cta-section h2 {
    font-size: 1.4rem;
  }

  .process-steps {
    flex-direction: column;
    gap: 0;
  }

  .process-steps li {
    text-align: left;
    padding: 0 0 28px 64px;
    min-height: 56px;
  }

  /* Circle on the left */
  .process-steps li::before {
    left: 0;
    transform: none;
    top: 0;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    box-shadow:
      0 0 0 4px #fff,
      0 0 0 6px var(--primary);
  }

  /* Vertical connector — left edge, runs downward */
  .process-steps li:not(:last-child)::after {
    top: 44px;
    left: 21px;
    right: auto;
    width: 2px;
    height: calc(100% - 44px);
    background: linear-gradient(to bottom, var(--primary), var(--border));
  }

  .sticky-quote {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    color: #fff;
    z-index: 50;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  }

  .sticky-quote-toggle {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
  }

  .sticky-quote-form {
    display: none;
    padding: 12px 14px 16px;
  }

  .sticky-quote.open .sticky-quote-form {
    display: block;
  }

  .sticky-quote-form input,
  .sticky-quote-form textarea {
    width: 100%;
    padding: 9px;
    margin-bottom: 8px;
    border: none;
    border-radius: 6px;
    font: inherit;
  }

  .sticky-quote-form textarea {
    min-height: 60px;
  }

  .sticky-quote-form button {
    width: 100%;
    background: #fff;
    color: var(--dark);
    border: none;
    padding: 11px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
  }

  footer.site-footer {
    padding-bottom: 120px;
  }
  footer .footer-grid {
    gap: 24px;
  }

  /* Contact page mobile */
  .contact-grid .contact-form-col {
    padding: 24px 18px 22px;
  }
  .contact-grid .contact-map-col {
    flex: 1 1 100%;
  }
}
