:root {
  --deep: #005f64;
  --aqua: #139aa0;
  --green: #46a33a;
  --forest: #087a4a;
  --soft: #f5faf7;
  --mist: #e5f0eb;
  --ink: #1f2a2a;
  --muted: #5d6b68;
  --white: #fff;
  --line: #d7e4df;
  --shadow: 0 18px 45px rgba(0, 95, 100, .13);
  --radius: 8px;
}

* { 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(--ink);
  background: var(--white);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.2rem; }
li + li { margin-top: .35rem; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--deep);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 850;
  color: var(--deep);
  letter-spacing: 0;
}
.brand-mark {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 0;
  flex: 0 0 auto;
}
.brand-text span { display: block; line-height: 1.05; }
.brand-text small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  margin-top: .15rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--deep);
  font-size: 1.35rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 750;
  font-size: .92rem;
}
.site-nav a {
  padding: .65rem .55rem;
  border-radius: var(--radius);
  color: #29413f;
  line-height: 1.1;
  text-align: center;
}
.site-nav a span {
  display: inline-block;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: var(--soft);
  color: var(--deep);
}
.nav-item {
  position: relative;
}
.nav-item-has-submenu {
  padding-bottom: .65rem;
  margin-bottom: -.65rem;
}
.nav-link-row {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link-row .nav-link::after {
  content: " ▾";
  font-size: .72em;
}
.submenu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 25;
  display: none;
  width: min(640px, calc(100vw - 32px));
  transform: translateX(-50%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .15rem;
  padding: .7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
}
.nav-item-has-submenu:hover > .submenu,
.nav-item-has-submenu:focus-within > .submenu,
.nav-item-has-submenu.is-open > .submenu {
  display: grid;
}
.submenu a {
  display: block;
  padding: .65rem .7rem;
  border-radius: var(--radius);
  color: #29413f;
  font-size: .9rem;
  white-space: nowrap;
}
.submenu a:first-child {
  grid-column: 1 / -1;
  color: var(--deep);
  font-weight: 900;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: .25rem;
}
.submenu a:hover,
.submenu a:focus-visible {
  background: var(--soft);
  color: var(--deep);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.header-call {
  flex-direction: column;
  gap: .12rem;
  min-width: 132px;
  padding-block: .55rem;
  white-space: nowrap;
  text-align: center;
}
.header-call span {
  font-size: .74rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.header-call strong {
  display: block;
  font-size: .94rem;
  line-height: 1.05;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(70, 163, 58, .25);
}
.btn-primary:hover { background: var(--forest); }
.btn-secondary {
  color: var(--deep);
  background: var(--white);
  border-color: var(--line);
}
.btn-secondary:hover { background: var(--soft); }
.btn-dark {
  color: var(--white);
  background: var(--deep);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, rgba(0,95,100,.92) 0%, rgba(0,95,100,.78) 42%, rgba(0,0,0,.08) 100%), var(--deep);
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  align-content: center;
  max-width: 760px;
  padding: 5.5rem 0 7rem;
}
.eyebrow {
  margin: 0 0 .85rem;
  color: #d8fff2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.35rem, 6vw, 4.85rem); max-width: 900px; }
h2 { font-size: clamp(1.85rem, 3.5vw, 3rem); }
h3 { font-size: 1.22rem; }
.lead {
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 790px;
}
.hero .lead { color: rgba(255,255,255,.92); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.45rem;
}
.trust-line {
  margin-top: 1rem;
  color: rgba(255,255,255,.9);
  font-weight: 750;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust-item {
  background: var(--white);
  padding: 1rem;
  font-weight: 800;
  color: #29413f;
  min-height: 74px;
  display: flex;
  align-items: center;
}
.trust-item::before {
  content: "";
  width: .55rem;
  height: .55rem;
  margin-right: .55rem;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

section, .page-section { padding: 4.5rem 0; }
.section-soft { background: var(--soft); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-head p {
  max-width: 620px;
  color: var(--muted);
  font-weight: 600;
}
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 8px 28px rgba(0, 95, 100, .06);
}
.card h3 { color: var(--deep); margin-bottom: .55rem; }
.card p { color: var(--muted); }
.card-link {
  display: block;
  height: 100%;
}
.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 95, 100, .12);
}
.card-link span {
  display: inline-block;
  margin-top: .4rem;
  color: var(--deep);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: .2rem;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 8px 28px rgba(0, 95, 100, .06);
}
.review-stars {
  color: #d99a00;
  font-weight: 900;
  letter-spacing: .08rem;
  margin-bottom: .45rem;
}
.review-card h3 {
  color: var(--deep);
  margin-bottom: .65rem;
}
.review-text {
  color: var(--ink);
  font-weight: 650;
}
.review-source {
  margin-top: 1rem;
  color: var(--deep);
  font-weight: 850;
}
.review-source span {
  color: var(--muted);
  font-weight: 700;
}
.bin-card img {
  width: 100%;
  aspect-ratio: 510 / 194;
  object-fit: contain;
  margin-bottom: 1rem;
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.bin-card strong {
  color: var(--ink);
}
.image-panel {
  margin: 1.75rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 10px 30px rgba(0, 95, 100, .08);
}
.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--forest);
  margin-bottom: .85rem;
  font-weight: 900;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.step {
  counter-increment: step;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.step::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--white);
  font-weight: 850;
  margin-bottom: .8rem;
}

.list-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 0;
  list-style: none;
}
.list-cloud li, .pill {
  border: 1px solid var(--line);
  background: var(--white);
  color: #29413f;
  padding: .55rem .75rem;
  border-radius: 999px;
  font-weight: 750;
}
.notice {
  border-left: 4px solid var(--green);
  background: var(--soft);
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  color: #29413f;
}

.page-hero {
  background: linear-gradient(135deg, var(--deep), #074846);
  color: var(--white);
  padding: 4.6rem 0;
}
.page-hero .lead { color: rgba(255,255,255,.88); }
.breadcrumbs {
  margin-bottom: 1rem;
  color: rgba(255,255,255,.82);
  font-weight: 750;
  font-size: .9rem;
}
.breadcrumbs a { text-decoration: underline; text-underline-offset: .2rem; }

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 2rem;
  align-items: start;
}
.content-main > * + * { margin-top: 1.5rem; }
.sidebar {
  position: sticky;
  top: 96px;
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}
.quote-form h2, .quote-form h3 { color: var(--deep); margin-bottom: .4rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #29413f; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c9d9d3;
  border-radius: var(--radius);
  padding: .7rem .75rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(19,154,160,.25);
  border-color: var(--aqua);
}
.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note {
  color: var(--muted);
  font-size: .92rem;
}
.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--deep);
  font-weight: 800;
}
.form-status.show { display: block; }
.turnstile-placeholder {
  border: 1px dashed #b8cec7;
  background: #fbfdfc;
  border-radius: var(--radius);
  padding: .8rem;
  color: var(--muted);
  font-size: .9rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq-item h3 {
  color: var(--deep);
  margin-bottom: .4rem;
}
.link-list {
  display: grid;
  gap: .55rem;
}
.link-list a {
  color: var(--deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.cta-band {
  background: var(--deep);
  color: var(--white);
}
.cta-band p { color: rgba(255,255,255,.9); }
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer {
  background: #122524;
  color: rgba(255,255,255,.86);
  padding: 3rem 0 5.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: .7rem; }
.site-footer a { color: rgba(255,255,255,.88); }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-phone {
  display: grid;
  gap: .12rem;
  margin: 1rem 0;
}
.footer-phone strong {
  color: var(--white);
}
.footer-phone span,
.footer-phone a {
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.15;
}
.footer-phone small {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
}
.phone-mobile { display: none; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .9rem;
  color: rgba(255,255,255,.72);
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 18;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  padding: .65rem;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
}

@media (max-width: 1040px) {
  .nav-toggle { display: grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: .9rem; }
  .nav-item {
    width: 100%;
  }
  .nav-link-row {
    justify-content: space-between;
  }
  .nav-link-row .nav-link {
    flex: 1;
  }
  .submenu-toggle {
    display: inline-flex;
  }
  .submenu {
    position: static;
    display: none;
    width: 100%;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: .35rem;
    box-shadow: none;
    background: var(--soft);
  }
  .nav-item-has-submenu:hover > .submenu {
    display: none;
  }
  .nav-item-has-submenu.is-open > .submenu,
  .nav-item-has-submenu:focus-within.is-open > .submenu {
    display: grid;
  }
  .header-actions .btn-secondary { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1140px); }
  .header-inner { min-height: 68px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-text small { display: none; }
  .header-actions .btn-primary { display: none; }
  .site-nav { inset-top: 68px; }
  .hero-content { min-height: 620px; padding: 4rem 0 6.5rem; }
  .cta-row .btn { width: 100%; }
  .trust-grid, .grid-2, .grid-3, .grid-4, .review-grid, .steps, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .section-head, .cta-band .container { display: block; }
  section, .page-section { padding: 3.25rem 0; }
  .page-hero { padding: 3.5rem 0; }
  .field.full { grid-column: auto; }
  .mobile-cta { display: grid; }
  .phone-desktop { display: none; }
  .phone-mobile { display: inline; }
  .submenu {
    grid-template-columns: 1fr;
  }
}
