:root {
  --ink: #081f3d;
  --muted: #526272;
  --line: #d7e1e9;
  --panel: #f5f8fa;
  --panel-strong: #e8f2e6;
  --blue: #082840;
  --blue-2: #082040;
  --green: #48a038;
  --green-dark: #3d8f31;
  --green-2: #e6f4e2;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(8, 31, 61, 0.12);
  --shadow-soft: 0 10px 30px rgba(8, 31, 61, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.top-strip {
  background: var(--blue-2);
  color: var(--white);
  font-size: 0.92rem;
}

.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 8px;
}

.top-strip a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.top-strip span {
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  width: min(245px, 48vw);
  min-width: 185px;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-links a {
  padding: 8px 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--green-2);
}

.nav-links .nav-cta {
  margin-left: 4px;
  background: var(--green);
  color: var(--white);
  padding-inline: 14px;
}

.nav-links .nav-cta:hover {
  background: var(--green-dark);
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(72, 160, 56, 0.22);
}

.button:hover {
  background: var(--green-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--panel);
}

.button.dark {
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(8, 40, 64, 0.18);
}

.button.dark:hover {
  background: var(--blue-2);
}

.button.full {
  width: 100%;
}

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

.actions.centered {
  justify-content: center;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 20%, rgba(72, 160, 56, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -220px auto;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: rgba(72, 160, 56, 0.08);
  pointer-events: none;
}

.hero .wrap {
  padding: 78px 0 92px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-lead,
.hero p,
.page-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 740px;
  margin-top: 34px;
}

.hero-facts span {
  padding: 9px 12px;
  border: 1px solid rgba(72, 160, 56, 0.24);
  border-radius: 999px;
  background: var(--green-2);
  color: #24591d;
  font-weight: 800;
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 30px;
  border: 1px solid rgba(215, 225, 233, 0.9);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border-top: 5px solid var(--green);
  pointer-events: none;
}

.hero-card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--green-2);
  color: var(--green);
  font-size: 1.7rem;
  font-weight: 900;
}

.hero-card h2 {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 1.45rem;
  line-height: 1.2;
}

/* Trust strip */

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.trust-item {
  padding: 22px 20px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--blue-2);
  font-size: 1rem;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Page hero */

.page-hero {
  padding: 70px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(72, 160, 56, 0.24), transparent 28%),
    linear-gradient(120deg, var(--blue-2), var(--blue));
  color: var(--white);
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero .eyebrow {
  color: #bdecb7;
}

/* Sections */

.section {
  padding: 72px 0;
}

.section.tight {
  padding: 48px 0;
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section h2 {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.centered-text {
  text-align: center;
  margin-inline: auto;
}

.centered-text .section-lead {
  margin-inline: auto;
}

/* Grids and cards */

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

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

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

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

.card {
  position: relative;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--green-2);
  color: var(--green);
  font-weight: 900;
  stroke: currentColor;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-card {
  border-top: 5px solid var(--green);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

/* Lists */

.check-list,
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list.compact li {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.04em;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* Legacy pricing tables */

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.price-table th,
.price-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  background: var(--blue);
  color: var(--white);
}

.price-table tr:last-child td {
  border-bottom: 0;
}

/* Pricing cards */

.pricing-section {
  padding-top: 64px;
}

.pricing-grid {
  display: grid;
  gap: 22px;
}

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

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

.pricing-card,
.pricing-extra {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.pricing-card {
  text-align: center;
}

.pricing-card.highlight {
  border-color: rgba(72, 160, 56, 0.45);
  box-shadow: 0 18px 42px rgba(72, 160, 56, 0.16);
  transform: translateY(-8px);
}

.pricing-label {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-2);
  color: #24591d;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card h3 {
  margin: 0;
  color: var(--blue-2);
  font-size: 1.35rem;
  line-height: 1.2;
}

.item-range {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.price,
.pricing-card .price,
.pricing-card.highlight .price {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 18px 0 14px !important;
  color: var(--green) !important;
  font-size: clamp(2.7rem, 5vw, 4rem) !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 2;
}

.description {
  margin: 0;
  color: var(--muted);
}

.pricing-card-wide {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  text-align: left;
  background:
    radial-gradient(circle at 90% 10%, rgba(72, 160, 56, 0.12), transparent 28%),
    var(--white);
}

.pricing-details {
  display: grid;
  gap: 12px;
}

.pricing-details p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--panel);
  color: var(--ink);
}

.pricing-details strong {
  color: var(--blue-2);
}

.pricing-extra p {
  margin: 0;
  text-align: center;
}

.pricing-extra p + p {
  margin-top: 8px;
  color: var(--blue-2);
  font-weight: 900;
  font-size: 1.08rem;
}

/* CTA and notes */

.cta-band {
  padding: 46px;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(72, 160, 56, 0.34), transparent 28%),
    linear-gradient(120deg, var(--blue-2), var(--blue));
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 760px;
  margin-bottom: 0;
}

.cta-band .eyebrow {
  color: #bdecb7;
}

.note-box {
  padding: 22px 24px;
  border-left: 5px solid var(--green);
  border-radius: 14px;
  background: var(--green-2);
}

.note-box h3 {
  margin: 0 0 8px;
  color: #24591d;
}

.note-box p {
  margin: 0;
  color: #24591d;
  font-weight: 700;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 30px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.cta-split h3 {
  margin: 0 0 8px;
  color: var(--blue-2);
}

.cta-split p {
  margin: 0;
  color: var(--muted);
}

.cta-split .actions {
  margin-top: 0;
}

/* Areas and FAQs */

.areas {
  columns: 3;
  column-gap: 36px;
}

.areas li {
  break-inside: avoid;
}

.areas-preview {
  background: #ffffff;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 1.1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* Forms */

.form {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.fieldset {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  min-inline-size: 0;
  box-shadow: var(--shadow-soft);
}

.fieldset legend {
  padding: 0 8px;
  color: var(--blue);
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #b8c6cf;
  border-radius: 9px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  min-width: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(72, 160, 56, 0.16);
}

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

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 400;
}

.check input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.notice {
  display: none;
  padding: 16px 18px;
  border: 1px solid #9fcf95;
  border-radius: var(--radius);
  background: var(--green-2);
  color: #24591d;
  font-weight: 800;
}

.notice.is-visible {
  display: block;
}

.notice.is-error {
  border-color: #d38a8a;
  background: #fff0f0;
  color: #7a1f1f;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.site-footer .wrap,
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding: 46px 0;
}

.site-footer a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin-top: 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-logo {
  width: min(245px, 100%);
  height: auto;
  margin: 0 0 14px;
  border-radius: 6px;
  background: var(--white);
}

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

.legal {
  font-size: 0.92rem;
}

/* Mobile CTA */

.mobile-cta {
  display: none;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

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

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

  .pricing-grid.three,
  .pricing-grid.four,
  .pricing-card-wide,
  .cta-split {
    grid-template-columns: 1fr;
  }

  .pricing-card.highlight {
    transform: none;
  }
}

@media (max-width: 860px) {
  .top-strip .wrap,
  .nav-bar,
  .split {
    display: block;
  }

  .top-strip {
    font-size: 0.84rem;
  }

  .top-strip .wrap span + span {
    display: none;
  }

  .nav-bar {
    padding: 14px 0;
  }

  .brand {
    width: min(230px, 72vw);
  }

  .nav-links {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .hero .wrap {
    padding: 58px 0 72px;
  }

  .grid.two,
  .form-grid,
  .checks,
  .site-footer .wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .areas {
    columns: 1;
  }

  .section {
    padding: 54px 0;
  }

  .cta-band {
    padding: 30px;
  }

  .mobile-cta {
    position: sticky;
    bottom: 0;
    z-index: 18;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
  }

  .mobile-cta a {
    border-radius: 0;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .grid.three,
  .grid.four,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:last-child {
    border-inline: 0;
    border-top: 1px solid var(--line);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
    letter-spacing: -0.035em;
  }

  .hero-lead,
  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-card {
    padding: 24px;
  }

  .fieldset {
    padding: 18px;
  }

  .actions {
    display: grid;
  }

  .price-table th,
  .price-table td {
    padding: 12px 10px;
  }
}