:root {
  --navy: #10213d;
  --navy-deep: #071423;
  --blue: #1265b3;
  --orange: #ff7048;
  --orange-dark: #ed5f38;
  --cream: #f7f5f1;
  --soft: #eef1f5;
  --text: #172033;
  --muted: #687181;
  --white: #ffffff;
  --line: rgba(16, 33, 61, 0.12);
  --shadow: 0 24px 70px rgba(16, 33, 61, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 33, 61, 0.08);
}

.navbar {
  max-width: var(--max);
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  white-space: nowrap;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  transform: rotate(-10deg);
}
.brand-mark i {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 999px;
  display: block;
}
.brand-mark i:nth-child(2) { background: #ff8d69; }
.brand-mark i:nth-child(3) { background: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f4f5f7;
  border-radius: 999px;
  padding: 5px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: #394256;
  padding: 10px 15px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--white);
  color: var(--navy);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-btn,
.white-btn,
.dark-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.primary-btn {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 112, 72, .26);
}
.white-btn { color: var(--navy); background: var(--white); }
.dark-btn { color: var(--white); background: var(--navy); }
.ghost-btn { color: var(--navy); background: #f3f5f8; }
.primary-btn:hover,
.white-btn:hover,
.dark-btn:hover,
.ghost-btn:hover { transform: translateY(-2px); }
.primary-btn:focus-visible,
.white-btn:focus-visible,
.dark-btn:focus-visible,
.ghost-btn:focus-visible { outline: 3px solid rgba(255,112,72,.4); outline-offset: 3px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f2f4f7;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,20,35,0.92) 0%, rgba(7,20,35,0.78) 28%, rgba(7,20,35,0.2) 62%, rgba(7,20,35,0.04) 100%),
    url("https://images.unsplash.com/photo-1620653713380-7a34b773fef8?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=85&w=3000") center right / cover no-repeat;
  transform: scale(1.02);
  z-index: -3;
}
.hero-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(7,20,35,0.75), rgba(7,20,35,0));
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background: rgba(255, 112, 72, 0.24);
  filter: blur(35px);
  z-index: -1;
}
.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 70px 24px 130px;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: rgba(255,255,255,.78);
}
.eyebrow span {
  width: 32px;
  height: 2px;
  display: inline-block;
  background: var(--orange);
  border-radius: 999px;
}
.eyebrow.dark { color: var(--orange-dark); }
.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(3.5rem, 8.3vw, 7.4rem);
  line-height: .88;
  letter-spacing: -.08em;
  font-weight: 950;
}
.hero-text {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.trust-list li {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  backdrop-filter: blur(10px);
}
.hero-tabs {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: min(calc(100% - 36px), 1040px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: end;
}
.hero-tabs a {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  padding: 12px 18px;
  border: 1px solid rgba(16,33,61,.08);
  box-shadow: 0 -12px 30px rgba(7,20,35,.08);
}
.hero-tabs a:first-child { border-radius: 30px 0 0 0; }
.hero-tabs a:last-child { border-radius: 0 30px 0 0; }
.hero-tabs .highlight {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}

.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 96px 0;
}
.section-heading { max-width: 700px; margin-bottom: 36px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section h2,
.split-copy h2,
.areas-card h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 0;
  color: var(--navy);
}
.section-heading p:not(.eyebrow), .split-copy p, .areas-card p, .contact-copy p { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0 0 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 26px;
  background: var(--soft);
}
.service-card h3 {
  margin: 24px 0 8px;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--navy);
}
.service-card p { color: var(--muted); margin: 0 0 20px; }
.service-card h3,
.service-card p,
.service-card a { margin-left: 4px; margin-right: 4px; }
.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
  font-size: .9rem;
}
.service-card:nth-child(3) a { background: #f3f5f8; color: var(--navy); }

.split-section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 20px 0 30px;
}
.split-copy > p:not(.eyebrow) { max-width: 620px; }
.benefit-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefit-grid div {
  background: #f6f7f9;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}
.benefit-grid strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.benefit-grid span { color: var(--muted); font-size: .95rem; }
.feature-card {
  position: relative;
  padding: 18px;
  border-radius: 38px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.feature-card img {
  border-radius: 28px;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}
.round-badge {
  position: absolute;
  top: -28px;
  left: -22px;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 2.1rem;
  line-height: .84;
  font-weight: 950;
  letter-spacing: -.05em;
  box-shadow: 0 18px 34px rgba(255, 112, 72, .35);
}
.round-badge small { font-size: .8rem; letter-spacing: 0; text-transform: uppercase; }
.feature-note {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(12px);
}
.feature-note strong,
.feature-note span { display: block; }
.feature-note strong { color: var(--navy); }
.feature-note span { color: var(--muted); }
.feature-note a { color: var(--orange-dark); font-weight: 900; }

.stats-band {
  background: #f1f2f5;
  padding: 54px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stats-band div {
  min-height: 116px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 22px;
  border-left: 1px solid rgba(16, 33, 61, 0.12);
}
.stats-band span {
  color: var(--orange-dark);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
}
.stats-band strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.reviews { padding-top: 86px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
blockquote {
  margin: 0;
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}
blockquote p { margin: 0 0 22px; color: #384256; }
blockquote cite {
  font-style: normal;
  font-weight: 900;
  color: var(--navy);
}

.areas {
  padding: 0 24px 96px;
}
.areas-card {
  width: min(100%, var(--max));
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f3ef 0%, #f6f8fb 100%);
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(28px, 5vw, 62px);
}
.areas-card p { max-width: 860px; }
.zip-tags {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.zip-tags span {
  background: var(--white);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 850;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(16,33,61,.06);
}

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
  padding-top: 0;
}
.contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-form {
  background: var(--navy);
  color: var(--white);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  font-weight: 850;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  padding: 14px 15px;
  outline: none;
}
.contact-form select option { color: var(--navy); }
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,112,72,.22); }
.contact-form ::placeholder { color: rgba(255,255,255,.58); }
.contact-form .primary-btn { width: 100%; }

.site-footer {
  background: #f1f2f5;
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 36px;
  color: var(--muted);
}
.site-footer strong { color: var(--navy); display: block; margin-bottom: 10px; }
.site-footer a:not(.brand) { display: block; color: var(--navy); font-weight: 850; margin: 2px 0; }
.footer-brand { margin-bottom: 12px; }

@media (max-width: 980px) {
  .navbar { gap: 12px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .nav-actions .ghost-btn { display: none; }
  .hero-tabs { grid-template-columns: repeat(2, 1fr); width: min(calc(100% - 24px), 780px); }
  .hero-tabs a:first-child { border-radius: 26px 0 0 0; }
  .hero-tabs a:nth-child(2) { border-radius: 0 26px 0 0; }
  .hero-tabs a:last-child { border-radius: 0; }
  .service-grid, .review-grid, .split-section, .contact, .site-footer { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .navbar { height: 66px; padding: 0 16px; }
  .brand span:last-child { max-width: 178px; overflow: hidden; text-overflow: ellipsis; }
  .nav-actions .dark-btn { display: none; }
  .nav-links { top: 68px; left: 14px; right: 14px; }
  .hero { min-height: 760px; align-items: flex-start; }
  .hero-media { background-position: 62% center; }
  .hero-content { padding: 66px 18px 194px; }
  .hero h1 { font-size: clamp(3.25rem, 17vw, 5.25rem); max-width: 420px; }
  .hero-tabs { grid-template-columns: 1fr; width: calc(100% - 24px); }
  .hero-tabs a { min-height: 58px; border-radius: 18px !important; margin-bottom: 8px; }
  .section { width: min(100% - 32px, var(--max)); padding: 72px 0; }
  .section h2, .split-copy h2, .areas-card h2, .contact-copy h2 { font-size: 2.25rem; }
  .service-grid, .benefit-grid, .review-grid { grid-template-columns: 1fr; }
  .split-section { width: min(100% - 32px, var(--max)); margin-bottom: 72px; }
  .feature-card img { min-height: 330px; }
  .round-badge { width: 86px; height: 86px; font-size: 1.6rem; top: -20px; left: 14px; }
  .feature-note { left: 28px; right: 28px; bottom: 28px; }
  .stats-band { grid-template-columns: 1fr; padding: 36px 24px; }
  .stats-band div { min-height: auto; border-left: 0; border-bottom: 1px solid rgba(16,33,61,.12); }
  .areas { padding: 0 16px 72px; }
  .site-footer { padding: 38px 24px; }
}


.form-note {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 101, 179, 0.18);
  border-radius: 14px;
  background: #eef6ff;
  color: var(--navy);
  font-weight: 700;
}
