:root {
  --brand-primary: #19191e;
  --brand-secondary: #255788;
  --brand-accent: #a5c554;
  --brand-accent-dark: #7f9f33;
  --bg: #ffffff;
  --bg-alt: #f4f7f5;
  --surface: #ffffff;
  --text: #17181c;
  --text-muted: #4c5563;
  --border: #dbe3dd;
  --cta: #a5c554;
  --cta-hover: #b9d86d;
  --cta-text: #111821;
  --ppc-form-bg: #111821;
  --ppc-form-bg-alt: #1a2532;
  --ink: #17181c;
  --ink-soft: #4c5563;
  --paper: #ffffff;
  --paper-alt: #f4f7f5;
  --line: #dbe3dd;
  --deep: #121419;
  --deep-2: #1d2430;
  --blue: #255788;
  --aqua: #70d7df;
  --warm: #f3efe7;
  --form-bg: #111821;
  --form-bg-2: #1a2532;
  --form-text: #ffffff;
  --form-muted: rgba(255,255,255,.76);
  --shadow: 0 18px 44px rgba(18, 20, 25, .14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header,
.ppc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(18, 20, 25, .97);
  color: #fff;
  box-shadow: 0 10px 30px rgba(18, 20, 25, .18);
}

.brand,
.ppc-brand {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
}

.brand img,
.ppc-brand img,
.site-footer img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a,
.header-phone,
.ppc-phone {
  text-decoration: none;
}

.site-nav a:hover,
.header-phone:hover,
.ppc-phone:hover {
  color: var(--brand-accent);
}

.header-phone,
.ppc-phone {
  border: 1px solid rgba(255,255,255,.24);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
  color: #fff;
  padding: 10px 13px;
  border-radius: 6px;
  font-weight: 900;
}

.ppc-header {
  justify-content: space-between;
}

.hero,
.ppc-hero {
  position: relative;
  isolation: isolate;
  background-color: var(--deep);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay,
.ppc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18,20,25,.88), rgba(18,20,25,.68), rgba(18,20,25,.30)),
    linear-gradient(0deg, rgba(37,87,136,.36), transparent 45%);
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: min(680px, calc(100vh - 78px));
  margin: 0 auto;
  padding: 104px 0 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.hero h1,
.ppc-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

.ppc-hero h1 {
  font-size: clamp(40px, 5.4vw, 70px);
}

.hero-copy,
.ppc-hero-copy p {
  max-width: 690px;
  font-size: 19px;
  color: rgba(255,255,255,.92);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
}

.button-primary {
  color: var(--cta-text);
  background: var(--cta);
}

.button-primary:hover {
  background: var(--cta-hover);
}

.button-secondary {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.34);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.section,
.ppc-section {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 4vw, 56px);
}

.section-alt {
  background: var(--paper-alt);
}

.section-inner,
.section-heading,
.card-grid,
.proof-strip,
.split,
.contact-layout,
.cta-band,
.ppc-final,
.footer-grid,
  .footer-bottom,
  .proof-card-grid,
  .google-review-grid,
  .logo-grid,
  .leader-grid,
.mini-grid {
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2,
.section-inner h2,
.cta-band h2,
.ppc-final h2,
.contact-layout h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.section-inner p,
.contact-layout p,
.proof-card p,
.service-card p,
.mini-card span,
.legal-block p {
  color: var(--ink-soft);
}

.narrow {
  max-width: 820px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  transform: translateY(-34px);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip article {
  min-height: 170px;
  padding: 26px;
  background: #fff;
}

.proof-strip strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin: 8px 0;
  font-weight: 900;
  color: var(--blue);
}

.services-grid,
.proof-card-grid,
.google-review-grid,
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.google-review-grid {
  align-items: stretch;
}

.service-card,
.proof-card,
.google-review-card,
.leader-grid article,
.mini-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 20, 25, .08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div,
.proof-card,
.google-review-card,
.leader-grid article,
.mini-card {
  padding: 22px;
}

.service-card h3,
.proof-card h3,
.google-review-card h3,
.leader-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.google-review-section .section-heading p {
  color: var(--ink-soft);
}

.google-review-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.review-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.review-card-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.review-source {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.review-stars {
  color: #f6b700;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.google-review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.service-card a,
.mini-card {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.split-reverse {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
}

.feature-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--brand-accent);
  background: var(--paper-alt);
  font-weight: 800;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.logo-grid span {
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 900;
}

.leader-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card {
  display: grid;
  gap: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  align-items: start;
  gap: 34px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  font-weight: 800;
}

.contact-list a {
  color: var(--blue);
}

.contact-form-card,
.ppc-form-card {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--form-bg), var(--form-bg-2));
  color: var(--form-text);
  box-shadow: var(--shadow);
}

.contact-form-card {
  padding: 26px;
}

.ppc-form-card {
  padding: 24px;
}

.form-kicker {
  margin: 0 0 8px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-form-card h2,
.ppc-form-card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}

.contact-form-card p,
.ppc-form-card p {
  color: var(--form-muted);
}

.form-embed-wrap,
.calendar-embed-wrap {
  min-height: 220px;
  border-radius: 6px;
  overflow: hidden;
}

.form-embed-wrap-dark,
.calendar-embed-wrap {
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.12);
}

.form-embed-placeholder {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.form-embed-placeholder span {
  color: #fff;
  font-weight: 800;
}

.form-embed-placeholder i {
  display: block;
  height: 13px;
  border-radius: 5px;
  background: rgba(255,255,255,.16);
}

.form-embed-placeholder i:nth-child(3) {
  width: 76%;
}

.form-embed-placeholder i:nth-child(4) {
  width: 58%;
}

.scheduler-option {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 18px 0 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  color: var(--form-muted);
}

.text-button,
.close-button {
  border: 0;
  color: #111821;
  background: var(--brand-accent);
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.text-button {
  padding: 9px 10px;
}

.form-choice-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--form-muted);
  font-size: 13px;
}

.form-choice-divider::before,
.form-choice-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.16);
}

.ppc-hero-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 74px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  color: #fff;
}

.ppc-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.ppc-bullets span {
  padding: 9px 11px;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
}

.ppc-final,
.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(44px, 7vw, 70px);
  margin-top: clamp(42px, 7vw, 80px);
  margin-bottom: clamp(42px, 7vw, 80px);
  border-radius: var(--radius);
  background: var(--deep);
  color: #fff;
}

.ppc-final p,
.cta-band p {
  color: rgba(255,255,255,.78);
}

.legal-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.legal-block h2 {
  font-size: 25px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h2 {
  font-size: 26px;
}

.booking-modal[hidden] {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 44px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--form-bg);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.booking-header h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
}

.close-button {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.calendar-embed-wrap {
  margin: 22px;
  max-height: calc(100vh - 170px);
  overflow: auto;
}

.site-footer {
  padding: 58px clamp(18px, 4vw, 56px) 28px;
  background: var(--deep);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-accent);
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom,
.minimal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.minimal-footer {
  margin: 0;
  padding: 24px;
  background: var(--deep);
  color: rgba(255,255,255,.78);
}

.minimal-footer a,
.footer-bottom a {
  color: inherit;
}

@media (max-width: 940px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    padding: 16px;
    border-radius: 6px;
    background: var(--deep);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-phone {
    display: none;
  }

  .proof-strip,
  .services-grid,
  .proof-card-grid,
  .google-review-grid,
  .leader-grid,
  .logo-grid,
  .mini-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split-reverse,
  .contact-layout,
  .ppc-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .ppc-header {
    min-height: 70px;
    gap: 12px;
  }

  .ppc-phone {
    font-size: 13px;
    padding: 9px 10px;
  }

  .hero-inner,
  .ppc-hero-inner {
    min-height: auto;
    padding: 68px 0;
  }

  .ppc-hero-inner {
    padding: 46px 0 38px;
    gap: 22px;
  }

  .hero h1,
  .ppc-hero h1 {
    font-size: 39px;
  }

  .ppc-hero h1 {
    font-size: 33px;
    line-height: 1.02;
  }

  .ppc-hero-copy p {
    font-size: 17px;
  }

  .ppc-bullets {
    gap: 8px;
  }

  .ppc-bullets span {
    padding: 8px 10px;
  }

  .ppc-form-card {
    padding: 20px;
  }

  .proof-strip,
  .services-grid,
  .proof-card-grid,
  .google-review-grid,
  .leader-grid,
  .logo-grid,
  .mini-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    transform: none;
    margin-top: 24px;
  }

  .ppc-final,
  .cta-band {
    display: grid;
    padding: 28px;
  }

  .scheduler-option {
    display: grid;
  }

  .booking-dialog {
    max-height: calc(100vh - 24px);
  }

  .booking-modal {
    padding: 12px;
    align-items: start;
  }

  .calendar-embed-wrap {
    max-height: calc(100vh - 150px);
    overflow: auto;
  }
}
