:root {
  --navy: #071f33;
  --navy-2: #0b314d;
  --blue: #0878b9;
  --blue-dark: #075d8e;
  --orange: #f26430;
  --orange-dark: #d94818;
  --ice: #eaf5fa;
  --cream: #fff9f0;
  --ink: #102435;
  --muted: #526573;
  --line: #d5e2e8;
  --white: #fff;
  --shadow: 0 18px 50px rgba(7, 31, 51, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body, button { font-family: "Manrope", system-ui, sans-serif; }

img { display: block; width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus { top: 12px; }

.urgent-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.urgent-bar a { font-weight: 900; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 7px 25px rgba(7, 31, 51, 0.06);
  backdrop-filter: blur(12px);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand > span:last-child { display: grid; line-height: 1.15; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 0.72rem; font-weight: 700; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 7px;
  color: var(--white);
  background: var(--navy);
  border-bottom: 4px solid var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

nav { display: flex; gap: 26px; font-size: 0.88rem; font-weight: 800; }
nav a { text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--blue); }

.header-call {
  justify-self: end;
  display: grid;
  line-height: 1.15;
  text-align: right;
  text-decoration: none;
}

.header-call span { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.header-call strong { color: var(--orange-dark); font-size: 1.1rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.88fr);
  align-items: stretch;
  min-height: 630px;
  color: var(--white);
  background: var(--navy);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 82px) clamp(22px, 5.2vw, 78px);
  background:
    radial-gradient(circle at 10% 10%, rgba(8, 120, 185, 0.42), transparent 35%),
    linear-gradient(140deg, var(--navy-2), var(--navy));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span { width: 24px; height: 3px; background: var(--orange); }
.eyebrow.light { color: #acd9ed; }
.hero .eyebrow { color: #9fdcf4; }

h1, h2, h3 {
  margin-top: 0;
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
}

h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(3rem, 5.4vw, 5.6rem); }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 3.9vw, 3.55rem); }
h3 { margin-bottom: 8px; font-size: 1.2rem; }
p { margin-top: 0; }

.hero-lede {
  max-width: 690px;
  margin-bottom: 20px;
  color: #d6e6ee;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.hero-checks li::before { content: "✓"; margin-right: 7px; color: #77d6ff; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
}

.button.primary { color: var(--white); background: var(--orange); box-shadow: 0 8px 0 var(--orange-dark); }
.button.primary:hover, .button.primary:focus-visible { background: #ff7442; transform: translateY(-1px); }
.hero-call { align-self: flex-start; min-width: min(100%, 360px); font-size: 1.05rem; }
.hero-call strong { font-size: 1.18rem; }
.cta-note { margin: 15px 0 0; color: #a9c0cd; font-size: 0.83rem; font-weight: 700; }

.hero-photo { position: relative; min-width: 0; min-height: 520px; overflow: hidden; }
.hero-photo img { height: 100%; object-fit: cover; object-position: 52% center; }

.photo-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  max-width: 330px;
  padding: 18px 22px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border-left: 6px solid var(--orange);
}

.photo-proof span { margin-top: 2px; color: var(--muted); font-size: 0.84rem; }

.problem-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--orange);
}

.problem-strip div { display: grid; gap: 2px; padding: 20px clamp(16px, 2.5vw, 34px); color: var(--white); border-right: 1px solid rgba(255,255,255,.25); }
.problem-strip strong { font-size: 0.96rem; }
.problem-strip span { font-size: 0.78rem; opacity: 0.9; }

.pain-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(50px, 6vw, 84px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy-2);
}

.pain-panel h2 { margin-bottom: 0; }
.pain-copy { font-size: 1.05rem; color: #cfe2eb; }
.pain-copy p:last-child { margin-bottom: 0; }
.pain-copy strong { color: var(--white); }

.services, .areas, .faq { padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px); }
.section-head { max-width: 820px; margin-bottom: 34px; }
.section-head.compact { max-width: 760px; }
.section-head > p:last-child { color: var(--muted); font-size: 1.02rem; }

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

.service-grid article {
  min-height: 220px;
  padding: 25px;
  background: var(--ice);
  border: 1px solid #c9e1ec;
  border-top: 5px solid var(--blue);
}

.service-grid article:nth-child(even) { background: var(--cream); border-color: #f0d9c7; border-top-color: var(--orange); }
.service-number { display: inline-block; margin-bottom: 24px; color: var(--orange-dark); font-size: 0.77rem; font-weight: 900; }
.service-grid p { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }

.section-call {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  padding: 19px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
  text-align: center;
}
.section-call strong { color: #ff8d64; }

.why-us {
  display: grid;
  grid-template-columns: minmax(380px, .86fr) minmax(0, 1.14fr);
  background: var(--cream);
}

.why-photo { min-height: 650px; }
.why-photo img { height: 100%; object-fit: cover; object-position: center; }
.why-copy { padding: clamp(52px, 7vw, 96px) clamp(22px, 6vw, 86px); }
.why-copy > p:not(.eyebrow) { color: var(--muted); }
.benefit-list { display: grid; gap: 10px; margin: 24px 0 28px; }
.benefit-list > div { display: grid; grid-template-columns: 32px 1fr; gap: 8px; padding: 13px 0; border-top: 1px solid #e9d7c6; }
.benefit-list > div > span { display: grid; place-items: center; width: 25px; height: 25px; color: var(--white); background: var(--blue); border-radius: 50%; font-weight: 900; }
.benefit-list p { display: grid; margin: 0; color: var(--muted); }
.benefit-list strong { color: var(--ink); }

.process {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(480px, 1.2fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.process .section-head > p:last-child { color: #bcd1dc; }
.process-list { display: grid; gap: 1px; margin: 0; padding: 0; background: rgba(255,255,255,.16); list-style: none; }
.process-list li { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 22px; background: var(--navy-2); }
.process-list li > span { display: grid; place-items: center; width: 42px; height: 42px; color: var(--navy); background: #81dafc; font-weight: 900; }
.process-list strong { font-family: "Roboto Slab", Georgia, serif; font-size: 1.15rem; }
.process-list p { margin: 3px 0 0; color: #bfd4de; font-size: 0.9rem; }

.insurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background: var(--ice);
}
.insurance > div:first-child > p:last-child { color: var(--muted); }
.insurance-card { padding: 28px; background: var(--white); border-left: 7px solid var(--orange); box-shadow: var(--shadow); }
.insurance-card ul { margin: 15px 0 20px; padding-left: 22px; color: var(--muted); }
.insurance-card a { color: var(--orange-dark); font-weight: 900; }

.photo-band {
  position: relative;
  display: grid;
  min-height: 540px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.photo-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,31,51,.96) 0%, rgba(7,31,51,.8) 45%, rgba(7,31,51,.25) 100%); }
.photo-band img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.photo-band > div { position: relative; z-index: 1; align-self: center; max-width: 700px; padding: clamp(55px, 8vw, 105px) clamp(20px, 6vw, 92px); }
.photo-band p:not(.eyebrow) { color: #d4e4eb; }
.light-button { color: var(--navy); background: var(--white); }

.areas { background: var(--cream); }
.area-list { display: flex; flex-wrap: wrap; gap: 8px; }
.area-list span { padding: 10px 15px; background: var(--white); border: 1px solid #ead7c6; font-weight: 800; font-size: .88rem; }

.faq { background: var(--white); }
.faq-list { max-width: 940px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 52px 22px 0; cursor: pointer; font-family: "Roboto Slab", Georgia, serif; font-size: 1.13rem; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 10px; top: 16px; color: var(--orange); font-family: "Manrope", sans-serif; font-size: 1.7rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 820px; margin: -4px 0 22px; color: var(--muted); }
.faq details a { color: var(--blue-dark); font-weight: 800; }

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--orange);
}
.final-cta h2 { margin-bottom: 10px; }
.final-cta p:not(.eyebrow) { max-width: 760px; margin-bottom: 0; }
.final-cta .eyebrow.light { color: var(--white); }
.final-cta .eyebrow span { background: var(--navy); }
.final-call { display: grid; min-width: 330px; color: var(--white); background: var(--navy); box-shadow: 0 8px 0 #04121e; }
.final-call span { font-size: .78rem; }
.final-call strong { font-size: 1.25rem; }

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 25px clamp(20px, 5vw, 72px);
  color: #c6d9e2;
  background: #041522;
  font-size: .82rem;
}
footer > div { display: grid; }
footer strong { color: var(--white); }
footer > a { color: var(--white); font-weight: 900; }
.privacy-link { color: #a5bcc7; font-weight: 700; }

.mobile-call { display: none; }

.exit-reminder {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: min(380px, calc(100vw - 44px));
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 7px solid var(--orange);
  box-shadow: 0 24px 80px rgba(4, 21, 34, .3);
}
.exit-reminder[hidden] { display: none; }
.exit-reminder > strong { display: block; padding-right: 30px; font-family: "Roboto Slab", Georgia, serif; font-size: 1.5rem; line-height: 1.15; }
.exit-reminder > p:not(.eyebrow) { margin: 8px 0 18px; color: var(--muted); }
.exit-reminder .button { width: 100%; }
.exit-close { position: absolute; right: 10px; top: 8px; width: 42px; height: 42px; border: 0; color: var(--muted); background: transparent; cursor: pointer; font-size: 1.8rem; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  body { padding-bottom: 68px; }
  .urgent-bar span { display: none; }
  .site-header { position: relative; min-height: 66px; padding: 9px 14px; }
  .brand small { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .header-call { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 30px 16px 25px; }
  h1 { margin-bottom: 13px; font-size: clamp(2.25rem, 12vw, 3.15rem); }
  .hero-lede { margin-bottom: 15px; font-size: .98rem; }
  .hero-checks { gap: 5px 13px; margin-bottom: 19px; font-size: .82rem; }
  .hero-call { width: 100%; min-width: 0; }
  .cta-note { text-align: center; }
  .hero-photo { min-height: 310px; max-height: 380px; }
  .hero-photo img { object-position: 52% 45%; }
  .photo-proof { right: 10px; bottom: 10px; left: 10px; max-width: none; padding: 12px 14px; }
  .problem-strip { grid-template-columns: repeat(2, 1fr); }
  .problem-strip div { padding: 15px 14px; }
  .pain-panel, .process, .insurance, .final-cta { grid-template-columns: 1fr; }
  .pain-panel { gap: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 0; }
  .why-us { grid-template-columns: 1fr; }
  .why-photo { min-height: 390px; max-height: 460px; }
  .process { gap: 20px; }
  .insurance { gap: 20px; }
  .photo-band { min-height: 500px; }
  .photo-band::after { background: linear-gradient(rgba(7,31,51,.9), rgba(7,31,51,.82)); }
  .final-cta { gap: 22px; text-align: center; }
  .final-cta .eyebrow { justify-content: center; }
  .final-call { width: 100%; min-width: 0; }
  footer { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 66px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    color: var(--white);
    background: var(--orange);
    border-top: 4px solid #ffb094;
    box-shadow: 0 -8px 30px rgba(7,31,51,.22);
    text-decoration: none;
    font-weight: 900;
  }
  .mobile-call strong { font-size: 1.1rem; }
  .exit-reminder { display: none !important; }
}

@media (max-width: 430px) {
  .urgent-bar { min-height: 38px; padding: 6px 10px; }
  .brand { gap: 9px; font-size: .88rem; }
  .hero-copy { padding-top: 26px; }
  .eyebrow { margin-bottom: 10px; font-size: .67rem; }
  h1 { font-size: 2.36rem; }
  h2 { font-size: 2rem; }
  .hero-photo { min-height: 285px; }
  .problem-strip span { display: none; }
  .pain-panel, .services, .why-copy, .process, .insurance, .areas, .faq { padding: 42px 16px; }
  .service-grid article { padding: 22px; }
  .section-call { flex-direction: column; gap: 2px; }
  .why-photo { min-height: 350px; }
  .process-list li { grid-template-columns: 43px 1fr; padding: 18px 15px; }
  .process-list li > span { width: 36px; height: 36px; }
  .insurance-card { padding: 22px 18px; }
  .photo-band > div { padding: 50px 16px; }
  .faq summary { min-height: 68px; padding: 18px 46px 18px 0; font-size: 1.02rem; }
  .final-cta { padding: 40px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
