:root {
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
  color: #222;
  padding-bottom: 0;
}

body.has-mobile-cta {
  padding-bottom: 82px;
}

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

a {
  text-decoration: none;
}

h1, h2, h3, h4 {
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #111827;
}

h1 {
  font-size: clamp(35px, 5vw, 64px);
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 3.7vw, 46px);
  font-weight: 800;
}

h3, h4 {
  font-size: 22px;
  font-weight: 800;
}

p, li, summary, details {
  font-size: 16px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e7e7e7;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: inline-grid;
  place-items: center;
  background: #0a0a0a;
  color: #f5b301;
}

.logo-mark svg, .mini-icon svg, .service-icon svg, .benefit-icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  color: #111827;
  font-size: 18px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: #000;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button, button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

.button-primary:hover, .button-primary:focus {
  background: #fff;
  color: #0a0a0a;
  border-color: #0a0a0a;
}

.button-accent {
  background: #f5b301;
  color: #0a0a0a;
  border-color: #f5b301;
}

.button-accent:hover, .button-accent:focus {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

.button-light {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.button-light:hover, .button-light:focus {
  background: #f5b301;
  color: #0a0a0a;
  border-color: #f5b301;
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: 2px solid #0a0a0a;
  border-radius: 16px;
  background: #fff;
  color: #0a0a0a;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.mobile-menu {
  display: none;
  border-top: 1px solid #ededed;
  padding: 14px 0 20px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
}

.hero {
  background: #f6f6f3;
  padding: 70px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 46px;
  align-items: stretch;
}

.hero-copy, .hero-visual {
  min-height: 560px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid #d8d8d2;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-weight: 800;
}

.stars {
  margin: 16px 0 12px;
  color: #f5b301;
  font-size: 26px;
  letter-spacing: 4px;
}

.trust-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  flex-wrap: wrap;
}

.trust-icons img {
  width: auto;
  height: 48px;
  max-width: 120px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-lead {
  color: #374151;
  font-size: 18px;
  max-width: 650px;
}

.cta-line {
  margin: 20px 0 14px;
  color: #111827;
  font-weight: 900;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.service-zips {
  margin-top: 22px;
  color: #4b5563;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111827;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.88);
  color: #fff;
}

.hero-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.hero-card span {
  color: #f9fafb;
}

.section {
  padding: 86px 0;
}

.section-dark {
  background: #0a0a0a;
  color: #fff;
}

.section-dark h2, .section-dark h3, .section-dark p, .section-dark li {
  color: #fff;
}

.section-muted {
  background: #f6f6f3;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.title-line {
  position: relative;
  padding-bottom: 18px;
}

.title-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 4px;
  border-radius: 999px;
  background: #f5b301;
  transition: width 900ms cubic-bezier(.2, .8, .2, 1);
}

.title-line.line-animate::after {
  width: min(100%, 320px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(280px, 35%);
  gap: 38px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px, 35%) minmax(0, 65%);
}

.split.reverse .image-panel {
  order: 1;
}

.split.reverse .text-panel {
  order: 2;
}

.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
}

.text-panel {
  color: #374151;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px;
  min-height: 100%;
  border: 1px solid #e5e5e0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.mini-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: currentColor;
  font-size: 22px;
}

.eyebrow .mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #0a0a0a;
  color: #f5b301;
}

.service-icon, .benefit-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: #0a0a0a;
  color: #f5b301;
  font-size: 28px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-shell {
    gap: 8px;
  }

  .logo {
    gap: 8px;
  }

  .logo-text {
    max-width: 172px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .desktop-nav {
    gap: 10px;
  }

  .desktop-nav a {
    font-size: 18px;
  }

  .desktop-phone {
    padding-inline: 12px;
    font-size: 16px;
  }
}

.quote-box {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-box h2, .quote-box p {
  color: #111827;
}

.reviews-shell {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 420ms ease;
}

.review-slide {
  min-width: 50%;
  padding: 0 12px;
}

.review-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  color: #111827;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.review-stars {
  color: #f5b301;
  font-size: 20px;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 16px 0 0;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.7;
}

.review-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.round-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  border: 2px solid #0a0a0a;
  background: #fff;
  color: #0a0a0a;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.round-btn:hover {
  background: #0a0a0a;
  color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.benefit-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid #e5e5e0;
  background: #fff;
}

.benefit-card strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-family: var(--font-heading);
  font-size: 20px;
}

.benefit-card p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #e5e5e0;
}

.faq-list summary {
  cursor: pointer;
  color: #111827;
  font-family: var(--font-heading);
  font-weight: 800;
}

.service-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #deded8;
  color: #111827;
  font-weight: 800;
}

.cta-band {
  border-radius: calc(var(--radius) + 14px);
  padding: 44px;
  background: #0a0a0a;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2, .cta-band p {
  color: #fff;
}

.site-footer {
  padding: 52px 0 32px;
  background: #0a0a0a;
  color: #fff;
  font-size: 14px;
}

.site-footer p, .site-footer a, .site-footer li {
  color: #fff;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 34px;
}

.footer-logo {
  color: #fff;
}

.footer-logo .logo-mark {
  background: #fff;
  color: #0a0a0a;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.footer-links li {
  margin: 8px 0;
}

.disclaimer {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #f9fafb;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.96);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.mobile-sticky-call a {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.has-mobile-cta {
    padding-bottom: 86px;
  }

  h1 {
    font-size: clamp(35px, 9vw, 45px);
  }

  h2 {
    font-size: clamp(28px, 7vw, 32px);
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 68px;
    gap: 10px;
  }

  .logo {
    font-size: 24px;
  }

  .logo-text {
    max-width: 206px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .desktop-nav, .header-actions .desktop-phone {
    display: none;
  }

  .hamburger {
    display: inline-block;
  }

  .mobile-sticky-call {
    display: block;
  }

  .hero {
    padding: 42px 0 26px;
  }

  .hero-grid, .split, .split.reverse, .cta-band, .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .image-panel, .split.reverse .text-panel {
    order: initial;
  }

  .hero-copy, .hero-visual, .hero-visual img {
    min-height: auto;
  }

  .hero-visual img {
    height: 380px;
  }

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .image-panel img {
    height: 280px;
  }

  .services-grid, .benefits-grid {
    grid-template-columns: 1fr;
  }

  .review-slide {
    min-width: 100%;
  }

  .cta-band {
    padding: 30px;
  }
}

@media (min-width: 768px) {
  .mobile-menu, .mobile-sticky-call, .hamburger {
    display: none !important;
  }
}
