:root {
  --ink: #1d2622;
  --muted: #60706a;
  --line: #dce4df;
  --soft: #f5f8f6;
  --panel: #ffffff;
  --accent: #146c5f;
  --accent-2: #0f4f7a;
  --warn: #945b13;
  --dark: #10251f;
  --shadow: 0 14px 36px rgba(20, 43, 35, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfb;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.topline {
  background: var(--dark);
  color: #f6fbf8;
  font-size: 15px;
}

.topline-inner,
.nav,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topline-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
}

.topline a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  font-size: 17px;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
}

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.brand strong {
  color: var(--dark);
  font-size: 18px;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: white;
  color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #09231e;
}

.hero .section-inner {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 54px 0 64px;
}

.lead-hero .section-inner {
  min-height: 680px;
}

.hero-grid {
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  grid-template-areas:
    "copy visual"
    "form visual";
  gap: 18px 34px;
  align-items: stretch;
}

.hero-grid > * {
  min-width: 0;
}

.hero-content {
  grid-area: copy;
  align-self: end;
  width: 100%;
  min-width: 0;
  color: white;
}

.eyebrow {
  color: #bdebdc;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  margin-top: 12px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-content > p {
  max-width: 590px;
  margin-top: 18px;
  color: #eef8f3;
  font-size: 19px;
  line-height: 1.55;
}

.hero-phone {
  display: grid;
  width: fit-content;
  gap: 2px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: #ffffff;
  color: var(--dark);
  text-decoration: none;
}

.hero-phone span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-phone strong {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.hero-visual {
  grid-area: visual;
  align-self: stretch;
  margin: 0;
  min-width: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  box-shadow: none;
  object-fit: cover;
  object-position: center center;
}

.service-photo {
  margin: 0;
  min-width: 0;
}

.service-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
}

.service-photo-section {
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-grid {
  margin-top: 24px;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .10);
  color: #f7fffb;
  font-size: 13px;
  font-weight: 800;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .10);
  color: #f7fffb;
  font-size: 13px;
  font-weight: 800;
}

section {
  padding: 74px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.section-title p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.card h3 {
  font-size: 20px;
  line-height: 1.25;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.55;
}

.card p {
  margin-top: 10px;
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.service-card {
  display: grid;
  gap: 10px;
}

.service-card a {
  color: var(--accent);
  font-weight: 850;
  text-decoration: none;
}

.service-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--dark);
  text-decoration: none;
  font-weight: 800;
}

.band {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

.split h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}

.split p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

.quote-box {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
  padding: 24px;
  color: var(--ink);
  max-width: 100%;
  min-width: 0;
}

.hero-form {
  grid-area: form;
  align-self: start;
  width: min(100%, 460px);
  padding: 20px;
}

@media (min-width: 861px) {
  .hero-form form {
    grid-template-columns: 1fr 1fr;
  }

  .hero-form button,
  .hero-form .form-status,
  .hero-form .fine-print,
  .hero-form label:has(textarea) {
    grid-column: 1 / -1;
  }
}

.hero-form .fine-print,
.hero-form p {
  color: var(--muted);
}

.quote-box h2 {
  font-size: 26px;
}

form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.fine-print {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.contact-phone {
  margin-top: 22px;
}

.contact-phone a {
  color: var(--accent);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  text-decoration: none;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h1 {
  color: var(--dark);
}

.legal-copy h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-copy p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.form-status {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.form-status[data-state="success"] {
  border-color: rgba(20, 108, 95, .35);
  background: #edf8f4;
  color: var(--accent);
}

.form-status[data-state="error"] {
  border-color: rgba(148, 91, 19, .35);
  background: #fff7ed;
  color: var(--warn);
}

button:disabled {
  cursor: wait;
  opacity: .7;
}

.faq details {
  border: 1px solid var(--line);
  background: white;
}

.faq summary {
  cursor: pointer;
  padding: 17px 18px;
  font-weight: 850;
}

.faq details p {
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.55;
}

footer {
  background: var(--dark);
  color: #dbe8e3;
  padding: 38px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

footer a {
  color: #ffffff;
}

.disclaimer {
  max-width: 680px;
  color: #b8c9c3;
  font-size: 13px;
  line-height: 1.5;
}

.disclosure-section h2 {
  font-size: 32px;
}

.disclosure-section p {
  max-width: 920px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.sticky-call {
  display: none;
}

@media (max-width: 860px) {
  .section-inner,
  .nav,
  .topline-inner,
  .footer-inner {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links,
  .topline-inner,
  .footer-inner {
    flex-direction: column;
  }

  .topline-inner {
    gap: 8px;
  }

  .topline a {
    font-size: 18px;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .quote-layout,
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    background: #09231e;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "form";
  }

  .hero .section-inner {
    min-height: 560px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .hero-content > p,
  .quote-box p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h1 {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.05;
  }

  .hero-phone {
    width: 100%;
    text-align: center;
  }

  .hero-visual img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
}

@media (max-width: 560px) {
  .nav-links {
    align-items: stretch;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  section {
    padding: 54px 0;
  }

  .hero .section-inner {
    padding: 48px 0 58px;
  }

  .hero-content,
  .hero-visual,
  .quote-box {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .hero-form {
    padding: 20px;
  }

  .trust-row span {
    max-width: 100%;
  }

  body {
    padding-bottom: 72px;
  }

  .sticky-call {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border: 1px solid #0f5d52;
    background: #147b6c;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
  }
}
