@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Montserrat:wght@800;900&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d1f3c;
  --orange: #e85d04;
  --orange-dark: #c44d04;
  --blue: #0077b6;
  --blue-light: #90e0ef;
  --white: #ffffff;
  --gray-light: #f4f6f9;
  --gray-mid: #e0e4eb;
  --text: #1a1a2e;
  --text-muted: #555e70;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.announcement-bar a {
  color: var(--orange);
  text-decoration: underline;
}

/* HEADER */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: white;
  letter-spacing: -1px;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--orange); }

nav { display: flex; align-items: center; gap: 8px; }
nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
nav a:hover { background: var(--gray-light); color: var(--navy); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 12px;
  min-width: 240px;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}
.dropdown-menu a:hover { background: var(--gray-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 16px rgba(232,93,4,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,93,4,0.4);
}
.btn-secondary {
  background: var(--navy);
  color: white;
}
.btn-secondary:hover { background: #162d4f; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-white {
  background: white;
  color: var(--navy);
}
.btn-white:hover { background: var(--gray-light); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.call-btn {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.call-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: white;
  font-size: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-call {
  margin-top: 24px;
  background: var(--orange);
  color: white !important;
  text-align: center;
  border-radius: 10px;
  border-bottom: none !important;
  padding: 16px !important;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162d4f 60%, #0d3b6e 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 90px 24px 100px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,4,0.15);
  border: 1px solid rgba(232,93,4,0.3);
  color: #ffa64d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.trust-item svg { color: var(--orange); }

/* QUOTE CARD */
.quote-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.quote-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.quote-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* STATS BAR */
.stats-bar {
  background: var(--orange);
  padding: 40px 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { color: white; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

/* SECTIONS */
.section { padding: 80px 24px; }
.section-light { background: var(--gray-light); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,93,4,0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  color: var(--navy);
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 14px auto 0;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 2px solid var(--gray-mid);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,93,4,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-mid);
}
.review-stars { color: #fbbf24; font-size: 18px; margin-bottom: 14px; }
.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
}
.reviewer-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.reviewer-location { font-size: 13px; color: var(--text-muted); }
.yelp-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* WHY CHOOSE */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-item { text-align: center; }
.why-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}
.why-item h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-item p { font-size: 15px; color: var(--text-muted); }

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: var(--gray-mid);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: white;
  margin: 0 auto 16px;
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--navy);
}
.process-step h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-muted); }

/* AREAS */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.area-card {
  background: white;
  border: 2px solid var(--gray-mid);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.2s;
  display: block;
}
.area-card:hover {
  border-color: var(--orange);
  background: rgba(232,93,4,0.05);
  transform: translateY(-2px);
}
.area-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 4px;
}
.area-card p { font-size: 13px; color: var(--text-muted); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #162d4f 100%);
  padding: 80px 24px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(232,93,4,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(32px, 5vw, 60px);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-banner h2 span { color: var(--orange); }
.cta-banner p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.phone-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--orange);
  letter-spacing: -0.5px;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162d4f 100%);
  padding: 60px 24px;
  color: white;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: white; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 680px;
}

/* CONTENT SECTIONS */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.content-body h2 {
  font-size: 36px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 40px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.content-body ul { padding-left: 20px; margin-bottom: 16px; }
.content-body ul li { font-size: 16px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }

/* SIDEBAR */
.sidebar-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px;
  color: white;
  margin-bottom: 24px;
  position: sticky;
  top: 96px;
}
.sidebar-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.sidebar-card p { font-size: 15px; opacity: 0.8; margin-bottom: 20px; }
.sidebar-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: white;
  border: 2px solid var(--gray-mid);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 22px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-light); }
.faq-question.open { color: var(--orange); }
.faq-toggle { font-size: 24px; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open {
  max-height: 500px;
  padding: 0 24px 22px;
}
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.blog-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.blog-body { padding: 24px; }
.blog-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.blog-meta { font-size: 13px; color: var(--text-muted); }

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: white;
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.footer-contact-item a { opacity: 1; color: white; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  opacity: 0.75;
  padding: 4px 0;
  transition: all 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 12px;
}

/* FLOATING CALL BUTTON */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--orange);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,93,4,0.5);
  font-size: 26px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,93,4,0.5); }
  50% { box-shadow: 0 4px 32px rgba(232,93,4,0.8); transform: scale(1.05); }
}

/* RATING BAR */
.rating-bar {
  background: var(--gray-light);
  padding: 20px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  flex-wrap: wrap;
}
.rating-stars-small { color: #fbbf24; }

/* CHECKLIST */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gray-mid);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .quote-card { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 60px 20px 70px; }
  .section { padding: 56px 20px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Updated CleanCon logo lockup */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}
.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Montserrat', 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  color: var(--navy);
  text-transform: none;
}
.logo-wordmark span {
  color: var(--navy);
}
.logo-wordmark strong {
  color: var(--orange);
  font-weight: 900;
}
.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.footer-logo-wordmark {
  font-family: 'Montserrat', 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  color: white;
}
.footer-logo-wordmark span { color: white; }
.footer-logo-wordmark strong { color: var(--orange); }

@media (max-width: 768px) {
  .header-inner { height: 74px; padding: 0 16px; }
  .logo { gap: 8px; }
  .logo-icon { width: 54px; height: 54px; }
  .logo-wordmark { font-size: 29px; letter-spacing: -0.04em; }
}

@media (max-width: 480px) {
  .logo-icon { width: 48px; height: 48px; }
  .logo-wordmark { font-size: 25px; letter-spacing: -0.035em; }
}
