:root {
  --brand-primary: #075c9d;
  --brand-secondary: #11a6c9;
  --brand-accent: #f8c744;
  --bg: #ffffff;
  --bg-alt: #f4f9fb;
  --surface: #ffffff;
  --text: #102333;
  --text-muted: #5e6d78;
  --border: #d8e7ee;
  --cta: #f47a20;
  --cta-hover: #d95f11;
  --cta-text: #ffffff;
  --shadow: 0 22px 65px rgba(8, 44, 71, .16);
  --radius: 8px;
  --ppc-hero-bg: #063a65;
  --ppc-body-bg: #f4f9fb;
  --ppc-cta: #f47a20;
  --ppc-cta-hover: #d95f11;
  --ppc-form-bg: #082033;
  --ppc-form-bg-alt: #0d2f49;
  --ppc-form-text: #ffffff;
  --ppc-form-muted: rgba(255, 255, 255, .78);
  --ppc-form-border: rgba(255, 255, 255, .18);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
}

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

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

a {
  color: inherit;
}

p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.35rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.2rem;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  background: var(--text);
  color: white;
  padding: .75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.top-strip {
  background: var(--brand-primary);
  color: white;
  font-size: .88rem;
}

.top-strip-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .55rem 0;
}

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

.nav-shell,
.ppc-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .2rem .55rem;
  font-size: .95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: #254255;
  padding: .55rem .45rem;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--bg-alt);
  color: var(--brand-primary);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--cta);
  color: var(--cta-text);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(244, 122, 32, .26);
  cursor: pointer;
}

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

.button-small {
  min-height: 42px;
  padding: .65rem .85rem;
  white-space: nowrap;
}

.button-secondary {
  background: white;
  color: var(--brand-primary);
  border: 1px solid var(--border);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--bg-alt);
}

.button-light {
  background: white;
  color: var(--brand-primary);
}

.button-light:hover {
  background: var(--brand-accent);
  color: var(--text);
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 690px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 43, 76, .88), rgba(5, 43, 76, .54) 46%, rgba(5, 43, 76, .12));
}

.hero-content {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-copy {
  max-width: 750px;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow {
  color: white;
}

.hero-copy p {
  font-size: 1.18rem;
  max-width: 660px;
}

.eyebrow,
.ppc-eyebrow {
  margin: 0 0 .75rem;
  color: var(--brand-primary);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.ppc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.proof-card {
  align-self: end;
  background: rgba(255, 255, 255, .94);
  padding: 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-card img {
  width: 130px;
  margin-bottom: 1rem;
}

.proof-card p {
  margin: 0;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.trust-grid div,
.ppc-trust-grid span {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 84px;
  padding: 1rem;
  font-weight: 800;
  background: white;
}

.trust-grid .icon {
  color: var(--cta);
}

.content-section,
.split-section,
.reviews-section,
.locations-band,
.timeline-section,
.cta-section {
  padding: 5rem 0;
}

.content-section,
.reviews-section {
  background: var(--bg);
}

.split-section,
.locations-band,
.timeline-section {
  background: var(--bg-alt);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.card-grid,
.three-grid,
.review-grid,
.proof-grid,
.process-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.service-card,
.info-card,
.location-card,
blockquote,
.process-step,
.big-stat,
.contact-form-card,
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(8, 44, 71, .08);
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--bg-alt);
  padding: 1rem;
}

.service-card div,
.info-card,
blockquote,
.process-step,
.big-stat {
  padding: 1.25rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--brand-primary);
  font-weight: 900;
  text-decoration: none;
}

.split-grid,
.inner-hero-grid,
.contact-grid,
.feature-band-grid,
.ppc-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: 2rem;
  align-items: center;
}

.image-card,
.inner-hero-image,
.ppc-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}

.image-card img,
.inner-hero-image img,
.ppc-image img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.check-list {
  list-style: none;
  margin: 1.2rem 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--text);
  font-weight: 700;
}

.check-list .icon {
  color: var(--cta);
}

.feature-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brand-primary), #033452);
  color: white;
}

.feature-band h2,
.feature-band p,
.feature-band .eyebrow {
  color: white;
}

.inner-hero {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #e8f7fc, #ffffff);
}

.inner-hero p {
  font-size: 1.1rem;
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  color: var(--brand-primary);
  background: #e4f6fb;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-left: 5px solid var(--cta);
  background: white;
  border-radius: var(--radius);
}

.timeline-item strong {
  color: var(--brand-primary);
  font-size: 1.5rem;
}

.stat-stack {
  display: grid;
  gap: 1rem;
}

.stat-stack div {
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-stack strong,
.stat-stack span {
  display: block;
}

.stat-stack span {
  color: var(--text-muted);
}

blockquote {
  margin: 0;
}

blockquote p {
  color: var(--text);
  font-size: 1.05rem;
}

blockquote cite {
  color: var(--brand-primary);
  font-style: normal;
  font-weight: 900;
}

.big-stat strong {
  display: block;
  color: var(--brand-primary);
  font-size: 3.5rem;
  line-height: 1;
}

.big-stat span {
  display: block;
  margin-top: .5rem;
  color: var(--text-muted);
  font-weight: 700;
}

.location-card {
  overflow: hidden;
}

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

.location-card div {
  padding: 1.25rem;
}

.location-card a,
.contact-location a {
  color: var(--brand-primary);
  font-weight: 900;
}

.narrow {
  max-width: 790px;
}

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

.contact-location {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-form-card {
  padding: 1.4rem;
}

.form-embed-wrap,
.calendar-embed-wrap {
  min-height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f7fbfd;
  border: 1px solid var(--border);
}

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

.form-embed-placeholder {
  min-height: 640px;
  display: grid;
  align-content: center;
  gap: .85rem;
  padding: 1.2rem;
  color: var(--text-muted);
  background: linear-gradient(180deg, #ffffff, #eef7fb);
}

.form-embed-placeholder span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(7, 92, 157, .12);
}

.form-embed-placeholder span:first-child {
  width: 70%;
}

.form-embed-placeholder span:nth-child(2) {
  width: 48%;
}

.form-embed-placeholder strong {
  color: inherit;
}

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

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

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
}

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

.legal-page {
  max-width: 820px;
  padding: 5rem 0;
}

.legal-page h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.sitemap-links {
  display: grid;
  gap: .7rem;
}

.sitemap-links a {
  display: block;
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--brand-primary);
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, .78);
  background: #082033;
}

.site-footer h2,
.site-footer strong {
  color: white;
  font-size: 1rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
  background: white;
  border-radius: var(--radius);
  padding: .35rem;
}

.site-footer a {
  display: block;
  margin: .4rem 0;
  color: white;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.footer-bottom span:last-child {
  display: flex;
  gap: 1rem;
}

.ppc-body {
  background: var(--ppc-body-bg);
}

.ppc-header {
  background: white;
  border-bottom: 1px solid var(--border);
}

.ppc-alert {
  padding: .65rem 1rem;
  background: var(--brand-accent);
  color: #332400;
  text-align: center;
  font-weight: 900;
}

.ppc-nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

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

.ppc-hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(248, 199, 68, .24), transparent 30%),
    linear-gradient(135deg, var(--ppc-hero-bg), #096c9e);
  color: white;
  padding: 4rem 0;
}

.ppc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 2rem;
  align-items: center;
}

.ppc-hero-copy,
.ppc-form-card {
  min-width: 0;
}

.ppc-hero h1 {
  color: white;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
}

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

.ppc-bullets {
  list-style: none;
  display: grid;
  gap: .75rem;
  margin: 1.4rem 0 0;
  padding: 0;
}

.ppc-bullets li {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: white;
  font-weight: 900;
}

.ppc-bullets .icon {
  color: var(--brand-accent);
}

.ppc-form-card {
  padding: 1.25rem;
  border: 1px solid var(--ppc-form-border);
  border-radius: var(--radius);
  color: var(--ppc-form-text);
  background: var(--ppc-form-bg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.ppc-form-card h2,
.ppc-form-card p {
  color: white;
}

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

.scheduler-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin: 1rem 0;
  padding: .8rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.scheduler-option p {
  margin: 0;
  font-size: .9rem;
}

.scheduler-option button {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  background: white;
  color: var(--brand-primary);
  padding: .55rem .7rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.form-choice-divider {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--ppc-form-muted);
  font-size: .85rem;
  margin: .8rem 0;
}

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

.ppc-trust {
  background: white;
  border-bottom: 1px solid var(--border);
}

.ppc-section {
  padding: 4.5rem 0;
  background: white;
}

.ppc-section-alt {
  background: var(--ppc-body-bg);
}

.ppc-proof-band {
  padding: 3rem 0;
  background: var(--brand-primary);
}

.ppc-proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ppc-proof-inner p {
  margin: 0;
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.ppc-footer {
  padding: 1.25rem 0;
  background: #082033;
  color: white;
}

.ppc-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.ppc-footer a {
  color: white;
  text-decoration: none;
  margin-left: .75rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, .12);
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 58px;
  color: var(--brand-primary);
  font-weight: 900;
  text-decoration: none;
}

.mobile-sticky-cta a:last-child {
  background: var(--cta);
  color: white;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.booking-modal.is-visible {
  pointer-events: auto;
}

.booking-modal.is-open {
  opacity: 1;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 18, 31, .74);
}

.booking-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  max-height: min(840px, calc(100vh - 32px));
  overflow: auto;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--ppc-form-bg);
  color: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

.booking-modal-dialog h2,
.booking-modal-dialog p {
  color: white;
}

.booking-modal-close {
  position: absolute;
  right: .8rem;
  top: .8rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.calendar-embed-wrap {
  min-height: 650px;
  background: var(--ppc-form-bg);
  border-color: var(--ppc-form-border);
}

@media (max-width: 1020px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: .7rem 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .4rem;
  }

  .hero-content,
  .ppc-hero-grid,
  .split-grid,
  .inner-hero-grid,
  .contact-grid,
  .feature-band-grid,
  .ppc-problem-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    max-width: 420px;
  }

  .card-grid,
  .trust-grid,
  .ppc-trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .top-strip-inner,
  .footer-bottom,
  .ppc-footer-inner,
  .ppc-proof-inner,
  .cta-card,
  .scheduler-option {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-shell .button-small {
    display: none;
  }

  .ppc-nav {
    min-height: 74px;
    gap: .5rem;
  }

  .ppc-nav .brand img {
    width: 118px;
  }

  .ppc-nav-actions .button-small {
    display: none;
  }

  .text-phone {
    font-size: .9rem;
    white-space: nowrap;
  }

  .ppc-nav-actions .text-phone {
    display: none;
  }

  .ppc-alert {
    padding: .55rem .75rem;
    font-size: .9rem;
    line-height: 1.35;
  }

  .ppc-hero {
    padding: 3.2rem 0;
  }

  .ppc-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    overflow-wrap: anywhere;
  }

  .ppc-form-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    overflow-wrap: break-word;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 5rem 0;
  }

  .hero::after {
    background: rgba(5, 43, 76, .78);
  }

  .content-section,
  .split-section,
  .reviews-section,
  .locations-band,
  .timeline-section,
  .cta-section,
  .ppc-section {
    padding: 3.4rem 0;
  }

  .card-grid,
  .three-grid,
  .review-grid,
  .proof-grid,
  .process-grid,
  .location-grid,
  .trust-grid,
  .ppc-trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .form-embed-wrap,
  .calendar-embed-wrap,
  .form-embed-placeholder {
    min-height: 560px;
  }

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

  .ppc-footer {
    padding-bottom: 5.2rem;
  }
}

@media (max-width: 520px) {
  .ppc-body .container {
    width: min(358px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: auto;
  }

  .ppc-alert {
    text-align: left;
  }
}
