:root {
  --brand-primary: #004f71;
  --brand-secondary: #083449;
  --brand-accent: #18a9c9;
  --bg: #ffffff;
  --bg-alt: #f3f9fb;
  --surface: #ffffff;
  --text: #102331;
  --text-muted: #526575;
  --border: #d9e8ee;
  --cta: #0077a3;
  --cta-hover: #005f84;
  --cta-text: #ffffff;
  --ppc-form-bg: #071826;
  --ppc-form-bg-alt: #0d2638;
  --ppc-form-text: #ffffff;
  --ppc-form-muted: rgba(255,255,255,.78);
  --ppc-form-border: rgba(255,255,255,.16);
  --shadow: 0 18px 50px rgba(16, 35, 49, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  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: 12px clamp(18px, 4vw, 56px);
  background: rgba(7, 24, 38, .96);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(7, 24, 38, .18);
}

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

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

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

.site-nav a:hover,
.header-phone:hover,
.ppc-phone:hover {
  color: #8ee2f3;
}

.header-phone,
.ppc-phone {
  border: 1px solid rgba(255,255,255,.24);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

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

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

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

.hero-overlay,
.ppc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,24,38,.84), rgba(7,24,38,.56), rgba(7,24,38,.25));
}

.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: 780px;
  margin: 0;
  font-size: clamp(44px, 7vw, 84px);
  line-height: .98;
  letter-spacing: 0;
}

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

.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: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.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,.35);
}

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

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

.section-inner,
.section-heading,
.card-grid,
.feature-grid,
.steps,
.mini-grid,
.cta-band,
.proof-strip,
.site-footer,
.ppc-trust {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2,
.section-inner h2,
.cta-band h2,
.image-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.section-inner p,
.cta-band p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.rounded-image {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px);
  transform: translateY(-30px);
}

.proof-strip div {
  min-height: 126px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.proof-strip span {
  color: var(--text-muted);
  font-size: 14px;
}

.card-grid,
.feature-grid,
.steps,
.mini-grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.feature-grid article,
.steps article,
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 35, 49, .08);
  overflow: hidden;
}

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

.service-card div,
.feature-grid article,
.steps article,
.mini-card {
  padding: 24px;
}

.service-card h3,
.feature-grid h3,
.steps h3,
.mini-card strong {
  margin: 0 0 10px;
  font-size: 21px;
}

.service-card p,
.feature-grid p,
.steps p,
.mini-card span {
  color: var(--text-muted);
}

.text-link,
.text-button {
  color: var(--brand-primary);
  font-weight: 900;
}

.text-link {
  text-decoration: none;
}

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

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

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 900;
}

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

.mini-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-accent);
}

.image-cta {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 4vw, 56px);
  color: #fff;
}

.image-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,24,38,.78), rgba(7,24,38,.35));
}

.image-cta > div {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.image-cta p {
  max-width: 660px;
  color: rgba(255,255,255,.88);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 0;
  padding: clamp(42px, 6vw, 70px) clamp(24px, 5vw, 64px);
  background: var(--brand-secondary);
  color: #fff;
  border-radius: var(--radius);
}

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

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-method {
  display: block;
  padding: 16px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method span {
  color: var(--text-muted);
}

.contact-form-card,
.ppc-form-card {
  background: var(--ppc-form-bg);
  color: var(--ppc-form-text);
  border: 1px solid var(--ppc-form-border);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(7, 24, 38, .25);
  padding: clamp(24px, 4vw, 34px);
}

.contact-form-card h2,
.ppc-form-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

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

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

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

.form-embed-wrap[data-form-kind="ppc"] {
  min-height: 500px;
}

.form-embed-placeholder {
  min-height: inherit;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.form-embed-placeholder span {
  color: var(--ppc-form-muted);
  font-weight: 800;
}

.form-embed-placeholder i {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.22), rgba(255,255,255,.12));
}

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

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

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

.text-button {
  border: 0;
  background: transparent;
  color: #8ee2f3;
  cursor: pointer;
  padding: 0;
}

.form-choice-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: var(--ppc-form-muted);
  font-size: 13px;
  font-weight: 800;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 19px;
}

.legal-copy p,
.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, .6fr));
  gap: 28px;
  padding: 60px clamp(18px, 4vw, 56px);
  background: #06131e;
  color: rgba(255,255,255,.82);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,.58);
}

.ppc-page {
  background: #fff;
}

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

.ppc-bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.ppc-bullets span {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 800;
}

.ppc-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  transform: translateY(-20px);
  color: var(--brand-secondary);
}

.ppc-trust span {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.ppc-final-cta {
  margin-bottom: clamp(48px, 8vw, 86px);
}

.ppc-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  background: #06131e;
  color: rgba(255,255,255,.78);
}

.ppc-footer a {
  text-decoration: none;
}

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

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

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 19, .72);
}

.booking-dialog {
  position: relative;
  width: min(820px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ppc-form-bg);
  color: #fff;
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.booking-close {
  float: right;
  border: 1px solid var(--ppc-form-border);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

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

  .site-nav {
    display: none;
    flex-basis: 100%;
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
  }

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

  .header-phone {
    margin-left: auto;
  }

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

  .services-grid,
  .feature-grid,
  .steps,
  .mini-grid,
  .proof-strip,
  .ppc-trust,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .ppc-bullets {
    grid-template-columns: 1fr;
  }
}

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

  .brand img,
  .ppc-brand img {
    width: 138px;
  }

  .header-phone,
  .ppc-phone {
    padding: 8px 10px;
    font-size: 13px;
  }

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

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

  .proof-strip,
  .ppc-trust {
    transform: none;
    padding: 0;
  }

  .services-grid,
  .feature-grid,
  .steps,
  .mini-grid,
  .proof-strip,
  .ppc-trust,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .scheduler-option {
    display: grid;
  }
}
