:root {
  --brand-primary: #092f63;
  --brand-primary-2: #06417e;
  --brand-primary-dark: #061d3f;
  --brand-secondary: #67b346;
  --brand-accent: #f47b20;
  --brand-accent-dark: #ce5f0e;
  --bg: #ffffff;
  --bg-alt: #f3f7fb;
  --bg-soft: #fff5ed;
  --surface: #ffffff;
  --text: #132238;
  --text-muted: #5c6b7b;
  --border: #d9e3ed;
  --cta: #f47b20;
  --cta-hover: #d86012;
  --cta-text: #ffffff;
  --ppc-form-bg: #071a33;
  --ppc-form-text: #ffffff;
  --ppc-form-muted: rgba(255, 255, 255, .78);
  --ppc-form-border: rgba(255, 255, 255, .18);
  --shadow: 0 18px 45px rgba(13, 34, 58, .12);
  --shadow-strong: 0 26px 78px rgba(0, 0, 0, .28);
  --radius: 14px;
  --radius-small: 9px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}

body.booking-modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  line-height: .93;
  letter-spacing: -.055em;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}

p {
  color: var(--text-muted);
}

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

.narrow {
  width: min(820px, calc(100% - 40px));
}

.top-alert {
  color: #ffffff;
  background: var(--brand-primary-dark);
}

.top-alert-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: .9rem;
  font-weight: 800;
}

.top-alert .phone-link {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 84px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border-radius: var(--radius-small);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(9, 47, 99, .08);
}

.brand img {
  width: 136px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: .92rem;
  font-weight: 850;
  color: var(--brand-primary);
  white-space: nowrap;
}

.site-nav a,
.footer-grid a,
.footer-bottom a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--brand-accent);
}

.header-actions,
.hero-actions,
.cta-actions,
.ppc-actions,
.ppc-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.phone-link {
  font-weight: 900;
  color: var(--brand-primary);
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius-small);
  border: 1px solid transparent;
  font-weight: 900;
  font-family: inherit;
  text-decoration: none;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--cta-text);
  background: var(--cta);
  box-shadow: 0 10px 24px rgba(244, 123, 32, .25);
}

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

.btn-secondary {
  color: var(--brand-primary);
  background: #ffffff;
  border-color: var(--border);
}

.btn-secondary-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1);
}

.btn-text {
  min-height: 0;
  padding: 0;
  color: var(--brand-primary);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.btn-text::after {
  content: " →";
  color: var(--brand-accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--brand-primary);
}

.hero,
.page-hero,
.ppc-hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 720px;
  display: grid;
  align-items: center;
  color: #ffffff;
  background: var(--brand-primary-dark);
}

.hero-media,
.hero-overlay,
.ppc-hero-bg,
.ppc-hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-img,
.ppc-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 123, 32, .34), transparent 28%),
    linear-gradient(90deg, rgba(5, 24, 50, .94), rgba(7, 31, 66, .76), rgba(7, 31, 66, .28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  padding: 92px 0;
}

.hero-content p {
  max-width: 660px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.16rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span,
.ppc-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #ffffff;
  font-weight: 800;
  font-size: .9rem;
}

.eyebrow,
.mini-eyebrow {
  margin-bottom: 10px;
  color: var(--brand-secondary);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.mini-eyebrow {
  color: var(--brand-accent);
  font-size: .72rem;
}

.band,
.split-section,
.legal-page {
  padding: 92px 0;
}

.band.alt {
  background: var(--bg-alt);
}

.service-menu-band {
  padding-top: 74px;
}

.section-intro {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro p:last-child {
  font-size: 1.05rem;
}

.trust-strip {
  color: #ffffff;
  background: var(--brand-primary);
}

.trust-strip-inner {
  min-height: 72px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 850;
}

.service-finder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-column {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-column::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-secondary));
}

.service-column h3 {
  margin-bottom: 16px;
  color: var(--brand-primary);
  font-size: 1.6rem;
}

.service-column h3 a {
  text-decoration: none;
}

.service-column ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-column li a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.service-column li a::after {
  content: "→";
  color: var(--brand-accent);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.contact-card,
.side-panel,
.contact-form-card,
.price-card,
.note-panel,
.mini-card,
.service-column {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card {
  overflow: hidden;
}

.card-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}

.card-image img,
.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3,
.mini-card h3,
.side-panel h2,
.contact-card h2 {
  color: var(--brand-primary);
}

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

.mini-card {
  padding: 22px;
}

.mini-card p {
  margin-bottom: 0;
}

.mini-value {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-accent);
  font-size: 2.2rem;
  line-height: 1;
}

.guarantee-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clean-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 25px;
  color: var(--text-muted);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 10px;
  height: 10px;
  border: 3px solid var(--brand-secondary);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.danger-panel .clean-list li::before {
  border-color: var(--brand-accent);
}

.clean-list.large li {
  font-size: 1.05rem;
}

.split-grid,
.two-col,
.contact-grid,
.page-hero-grid,
.ppc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 52px;
  align-items: center;
}

.align-start {
  align-items: start;
}

.image-panel,
.page-hero-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel-raised {
  transform: rotate(1deg);
  border: 8px solid #ffffff;
}

.stat-strip,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-strip div,
.price-card {
  padding: 21px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
}

.stat-strip strong,
.price-card strong {
  display: block;
  color: var(--brand-primary);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
}

.stat-strip span,
.price-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-weight: 850;
}

.price-card small {
  display: block;
  margin-top: 9px;
  color: var(--text-muted);
}

.guarantee-preview {
  background: linear-gradient(180deg, #ffffff, var(--bg-soft));
}

.cta-band {
  padding: 62px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 20%, rgba(244, 123, 32, .22), transparent 28%),
    linear-gradient(90deg, var(--brand-primary), var(--brand-primary-dark));
}

.cta-band p,
.cta-band .eyebrow {
  color: rgba(255, 255, 255, .84);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.page-hero {
  padding: 82px 0;
  background:
    radial-gradient(circle at 100% 0, rgba(244, 123, 32, .12), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--bg-alt));
}

.page-hero h1 {
  color: var(--brand-primary);
}

.side-panel,
.note-panel,
.contact-form-card {
  padding: 28px;
}

.sticky-panel {
  position: sticky;
  top: 124px;
}

.steps {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 20px 20px 20px 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(13, 34, 58, .07);
}

.step-number {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-primary);
  font-weight: 950;
  font-size: .82rem;
}

.steps strong {
  color: var(--brand-primary);
}

.steps p {
  margin-bottom: 0;
}

.split-panels {
  display: grid;
  gap: 18px;
}

.comparison-table-wrap {
  margin-top: 32px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.comparison-table th {
  color: #ffffff;
  background: var(--brand-primary);
}

.comparison-table td:nth-child(2) {
  color: var(--brand-primary);
  font-weight: 950;
}

.stat-panel {
  min-height: 260px;
  display: grid;
  align-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-dark));
}

.stat-panel strong {
  color: var(--brand-accent);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: .9;
}

.stat-panel span {
  max-width: 360px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 900;
}

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

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--brand-primary);
  font-weight: 950;
}

details p {
  padding: 0 22px 22px;
}

.contact-grid {
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 22px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-scheduler-cta {
  border-left: 5px solid var(--cta);
}

.contact-scheduler-cta p {
  margin-bottom: 16px;
}

.contact-schedule-button {
  width: fit-content;
}

.form-embed-wrap {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.contact-form-card.is-compact .form-embed-wrap {
  min-height: 560px;
}

.form-embed-placeholder {
  min-height: 620px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
  color: var(--text-muted);
  text-align: center;
}

.skeleton-line {
  display: block;
  height: 14px;
  width: 100%;
  border-radius: 999px;
  background: rgba(10, 47, 99, .1);
}

.skeleton-line.short {
  width: 70%;
  margin-inline: auto;
}

.scheduler-option {
  display: grid;
  gap: 10px;
  margin: 18px 0 14px;
  padding: 16px;
  border: 1px solid var(--ppc-form-border);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, .08);
}

.scheduler-option p {
  margin: 0;
  color: #ffffff;
  font-weight: 950;
}

.btn-scheduler {
  width: 100%;
  color: #ffffff;
  background: var(--cta);
}

.btn-scheduler:hover {
  background: var(--cta-hover);
}

.form-choice-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 16px;
  color: var(--ppc-form-muted);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-choice-divider::before,
.form-choice-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--ppc-form-border);
}

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

.booking-modal.is-open {
  display: grid;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 37, .72);
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-strong);
  outline: none;
}

.booking-modal-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.booking-modal-header h2 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.booking-modal-header p:last-child {
  margin-bottom: 0;
}

.booking-modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  color: var(--brand-primary);
  background: #ffffff;
  font: inherit;
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.calendar-embed-wrap {
  min-height: min(720px, 70vh);
  background: var(--bg-alt);
}

.calendar-embed-placeholder {
  min-height: min(720px, 70vh);
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
  color: var(--text-muted);
  text-align: center;
}

.site-footer {
  padding: 58px 0 24px;
  color: #dfe8f2;
  background: var(--brand-primary-dark);
}

.site-footer p,
.site-footer .small {
  color: rgba(255, 255, 255, .78);
}

.footer-grid {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 34px;
}

.footer-grid h2 {
  color: #ffffff;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .84);
}

.footer-logo {
  width: 124px;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: var(--radius-small);
  background: #ffffff;
}

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.small {
  font-size: .92rem;
}

.legal-page {
  min-height: 68vh;
}

.ppc-header {
  position: absolute;
  inset: 58px 0 auto;
  z-index: 4;
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ppc-brand {
  padding: 8px;
  border-radius: var(--radius-small);
  background: #ffffff;
}

.ppc-header .phone-link {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(7, 26, 51, .45);
}

.ppc-alert {
  position: relative;
  z-index: 5;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  color: #ffffff;
  background: var(--brand-secondary);
  font-weight: 950;
  text-align: center;
}

.ppc-alert .phone-link {
  color: #ffffff;
}

.ppc-hero {
  min-height: 700px;
  color: #ffffff;
  background: var(--brand-primary-dark);
}

.ppc-hero-overlay {
  background:
    radial-gradient(circle at 88% 20%, rgba(244, 123, 32, .28), transparent 30%),
    linear-gradient(90deg, rgba(7, 26, 51, .95), rgba(7, 26, 51, .76), rgba(7, 26, 51, .42));
}

.ppc-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 700px;
  padding-top: 132px;
  padding-bottom: 64px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 440px);
}

.ppc-copy p,
.ppc-copy .eyebrow {
  color: rgba(255, 255, 255, .88);
}

.ppc-copy h1 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 5vw, 4.35rem);
}

.ppc-bullets {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.ppc-bullets li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .92);
  font-weight: 900;
}

.ppc-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-secondary);
}

.ppc-form-card {
  padding: 26px;
  color: var(--ppc-form-text);
  border: 1px solid var(--ppc-form-border);
  border-radius: var(--radius);
  background: var(--ppc-form-bg);
  box-shadow: var(--shadow-strong);
}

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

.ppc-form-card h2 {
  color: #ffffff;
  font-size: 1.55rem;
}

.site-form-card {
  position: relative;
}

.site-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(98, 177, 69, .14), transparent 38%);
}

.site-form-card > * {
  position: relative;
  z-index: 1;
}

.site-form-card .form-copy p:last-child {
  color: rgba(255, 255, 255, .78);
}


.ppc-form-card .form-embed-wrap,
.ppc-form-card iframe {
  min-height: 600px;
  background: var(--ppc-form-bg);
  border-color: var(--ppc-form-border);
}

.form-embed-placeholder-dark {
  min-height: 600px;
  color: var(--ppc-form-muted);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}

.form-embed-placeholder-dark .skeleton-line {
  background: rgba(255, 255, 255, .12);
}

.ppc-trust {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 20px;
  background: var(--brand-primary);
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.objection-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(13, 34, 58, .07);
}

.objection-card span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-secondary);
  font-weight: 950;
}

.objection-card p {
  margin: 0;
  font-weight: 850;
  color: var(--text);
}

.ppc-footer {
  padding: 32px 20px 86px;
  color: rgba(255, 255, 255, .78);
  background: var(--brand-primary-dark);
  text-align: center;
}

.ppc-footer p {
  color: rgba(255, 255, 255, .78);
}

.ppc-footer a {
  color: #ffffff;
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 1060px) {
  .service-finder,
  .card-grid,
  .footer-grid,
  .split-grid,
  .two-col,
  .contact-grid,
  .page-hero-grid,
  .ppc-hero-grid,
  .reviews-layout,
  .reviews-layout-compact,
  .google-review-grid,
  .review-card-grid {
    grid-template-columns: 1fr;
  }

  .mini-card-grid,
  .location-card-grid,
  .compact-location-grid,
  .guarantee-cards,
  .stat-strip,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

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

  .header-actions {
    display: none;
  }

  .ppc-header {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 18px 20px;
    background: var(--brand-primary-dark);
  }

  .ppc-hero,
  .ppc-hero-grid {
    min-height: 0;
  }

  .ppc-hero-grid {
    padding-top: 58px;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .top-alert-inner {
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    text-align: center;
  }

  .hero-home {
    min-height: 640px;
  }

  .hero-overlay {
    background: rgba(7, 31, 66, .8);
  }

  .band,
  .split-section,
  .legal-page,
  .page-hero {
    padding: 62px 0;
  }

  .mini-card-grid,
  .location-card-grid,
  .compact-location-grid,
  .guarantee-cards,
  .stat-strip,
  .pricing-grid,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .footer-bottom,
  .ppc-header,
  .ppc-header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .phone-link {
    width: 100%;
  }

  .phone-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .ppc-alert {
    font-size: .9rem;
  }

  .ppc-form-card,
  .contact-form-card,
  .site-form-card {
    padding: 18px;
  }

  .steps li {
    padding-left: 20px;
  }

  .step-number {
    position: static;
    margin-bottom: 8px;
  }

  .sticky-mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .18);
  }

  .sticky-mobile-cta a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--brand-primary);
    font-weight: 950;
    text-decoration: none;
  }

  .sticky-mobile-cta a + a {
    background: var(--cta);
  }
}


.review-band {
  background: linear-gradient(180deg, #ffffff, var(--bg-alt));
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.65fr);
  gap: 24px;
  align-items: start;
}

.reviews-layout-compact {
  grid-template-columns: minmax(240px, .62fr) minmax(0, 1.7fr);
}

.review-summary-card,
.google-review-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(19, 37, 64, .08);
}

.review-summary-card {
  padding: 28px;
  position: sticky;
  top: 104px;
}

.review-summary-card h2 {
  color: var(--brand-primary);
}

.google-summary-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #e8eaed;
  border-radius: 14px;
  background: #f8fbff;
}

.google-summary-score strong {
  color: #202124;
  font-size: 2.7rem;
  line-height: .95;
  letter-spacing: -.05em;
}

.google-summary-score span {
  display: block;
  margin-top: 5px;
  color: #5f6368;
  font-size: .88rem;
  font-weight: 750;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.google-review-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}

.google-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(19, 37, 64, .12);
}

.google-review-card-compact {
  padding: 17px;
}

.google-review-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.google-review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #1a73e8;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.google-review-person {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.google-review-person strong {
  color: #202124;
  font-size: .98rem;
  line-height: 1.15;
}

.google-review-person span {
  color: #5f6368;
  font-size: .8rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.google-review-source {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #dadce0;
  color: #4285f4;
  background: #ffffff;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
}

.google-review-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
}

.google-review-rating-row span {
  color: #70757a;
  font-size: .82rem;
  font-weight: 700;
}

.google-review-stars {
  color: #fbbc04;
  letter-spacing: .035em;
  font-size: 1.02rem;
  line-height: 1;
}

.google-review-card blockquote {
  margin: 14px 0 16px;
  color: #202124;
  font-size: .98rem;
  line-height: 1.5;
  font-weight: 650;
}

.google-review-service {
  width: fit-content;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: #185abc;
  background: #e8f0fe;
  font-size: .78rem;
  font-weight: 850;
}

@media (max-width: 980px) {
  .review-summary-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .google-review-grid {
    grid-template-columns: 1fr;
  }
}

.ppc-review-strip {
  padding: 14px 0;
  color: #ffffff;
  background: #08284f;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ppc-review-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .95rem;
}

.ppc-review-inner strong {
  color: #ffffff;
}

.ppc-review-inner span {
  color: rgba(255, 255, 255, .88);
}

@media (max-width: 1060px) {
  .reviews-layout,
  .reviews-layout-compact,
  .google-review-grid {
    grid-template-columns: 1fr;
  }
}


.what-we-take-grid,
.prep-grid,
.review-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .what-we-take-grid,
  .prep-grid,
  .review-proof-grid {
    grid-template-columns: 1fr;
  }
}
