:root {
  --ink: #17211d;
  --muted: #5c6b66;
  --line: #dbe5e0;
  --paper: #ffffff;
  --soft: #f4f8f6;
  --soft-blue: #eef6f8;
  --green: #0f765d;
  --green-dark: #0f513f;
  --blue: #246b83;
  --amber: #f2b84b;
  --coral: #d86f45;
  --shadow: 0 20px 50px rgba(23, 33, 29, 0.12);
  color-scheme: light;
}

* {
  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(--paper);
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--green-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 100;
}

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

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

.narrow {
  width: min(820px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 224, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 -4px 0 rgba(242, 184, 75, 0.75);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  color: #34443f;
}

.main-nav a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green-dark);
  color: #fff !important;
  padding: 10px 14px;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: min(720px, calc(100svh - 104px));
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 112px 0 72px;
  isolation: isolate;
}

.hero-compact {
  min-height: 520px;
  padding: 96px 0 64px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 22, 18, 0.82), rgba(12, 22, 18, 0.58) 48%, rgba(12, 22, 18, 0.2)),
    linear-gradient(0deg, rgba(12, 22, 18, 0.38), rgba(12, 22, 18, 0.08));
  z-index: -1;
}

.hero-content {
  color: #fff;
  max-width: 780px;
}

.eyebrow,
.kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--amber);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-compact h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.2vw, 23px);
  color: rgba(255, 255, 255, 0.9);
}

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

.center-action {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--amber);
  color: #1b1608;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary-dark {
  color: var(--green-dark);
  border-color: var(--line);
  background: #fff;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-signals li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.trust-band {
  background: var(--green-dark);
  color: #fff;
  padding: 26px 0;
}

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

.trust-grid div,
.stat-stack div {
  display: grid;
  gap: 4px;
}

.trust-grid strong,
.stat-stack strong {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.trust-grid span,
.stat-stack span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section-muted {
  background: var(--soft);
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-intro h2,
.conversion h2,
.two-col h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-intro p:not(.kicker),
.lead {
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(23, 33, 29, 0.04);
}

.link-card {
  min-height: 190px;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 93, 0.4);
  box-shadow: var(--shadow);
}

.link-card h3 {
  margin: 6px 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

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

.two-col,
.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.comparison-list {
  display: grid;
  gap: 12px;
}

.comparison-list div {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.comparison-list span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill-cloud a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 800;
}

.answer-section .lead {
  margin-top: 16px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #273631;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #dff1eb;
}

.media-panel {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-panel figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--green-dark);
  background: var(--soft-blue);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

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

.system-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 218px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.system-logo {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
}

.system-card h3,
.channel-card h3,
.handoff-card h3 {
  margin: 0 0 8px;
  line-height: 1.15;
}

.system-card h3 {
  font-size: 18px;
}

.system-card p,
.channel-card p,
.handoff-card p {
  margin: 0;
  color: var(--muted);
}

.system-card p + p {
  margin-top: 9px;
}

.system-method {
  color: var(--blue) !important;
  font-size: 13px;
  font-weight: 900;
}

.channel-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 32px;
  align-items: start;
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.channel-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

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

.channel-card {
  min-height: 188px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.channel-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
}

.channel-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.handoff-panel {
  margin-top: 46px;
}

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

.handoff-card {
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.handoff-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.conversion {
  background: var(--green-dark);
  color: #fff;
}

.conversion .lead {
  color: rgba(255, 255, 255, 0.82);
}

.quote-box {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-box span {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  color: #364640;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd9d4;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
  font: inherit;
  font-weight: 650;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 184, 75, 0.3);
  border-color: var(--amber);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

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

.package-card {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--soft);
}

.package-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 14px;
  height: 14px;
  border: 2px solid #9fb1aa;
  border-radius: 50%;
  background: #fff;
}

.package-card:has(input:checked) {
  border-color: rgba(15, 118, 93, 0.55);
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(15, 118, 93, 0.1);
}

.package-card:has(input:checked)::after {
  border-color: var(--green);
  background: radial-gradient(circle at center, var(--green) 0 42%, #fff 46%);
}

.package-card span,
.package-card small {
  display: block;
}

.package-card span {
  font-size: 16px;
  color: var(--ink);
}

.package-card small {
  color: var(--muted);
}

.check-line {
  display: flex;
  align-items: center;
  gap: 9px;
}

.check-line input {
  width: auto;
}

.cost-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 14px;
  align-items: end;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft-blue);
  border: 1px solid #cfe1e6;
}

.cost-summary span {
  color: var(--blue);
  font-weight: 900;
}

.cost-summary strong {
  font-size: 30px;
  line-height: 1;
  color: var(--green-dark);
}

.cost-summary small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 700;
}

.form-submit {
  width: 100%;
  border: 0;
  margin-top: 4px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  padding: 12px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--green-dark);
  font-weight: 800;
}

.form-status.error {
  background: #fff2ed;
  color: #9d3d1d;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}

.faq-item div {
  padding: 0 18px 18px;
  color: var(--muted);
}

.source-strip {
  padding: 20px 0;
  background: var(--soft-blue);
  border-top: 1px solid #d4e5e9;
  border-bottom: 1px solid #d4e5e9;
}

.source-strip .container {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.source-strip span {
  font-weight: 900;
}

.source-strip a {
  color: var(--blue);
  font-weight: 800;
}

.stat-stack {
  display: grid;
  gap: 14px;
}

.stat-stack div {
  padding: 24px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.process-grid span {
  display: inline-flex;
  color: var(--coral);
  font-weight: 950;
  margin-bottom: 12px;
}

.process-grid h3 {
  margin: 0 0 8px;
}

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

.legal-page {
  padding: 88px 0;
}

.legal-page h1 {
  font-size: clamp(34px, 6vw, 56px);
  margin: 0 0 24px;
}

.legal-page h2 {
  margin-top: 34px;
}

.site-footer {
  background: #101814;
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .trust-grid,
  .card-grid,
  .integration-grid,
  .handoff-grid,
  .two-col,
  .conversion-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .channel-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 56px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1140px);
  }

  .header-inner {
    min-height: 64px;
  }

  .main-nav {
    top: 64px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section {
    padding: 58px 0;
  }

  .trust-grid,
  .card-grid,
  .integration-grid,
  .handoff-grid,
  .two-col,
  .conversion-grid,
  .form-row,
  .package-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .hero-signals {
    display: grid;
  }

  .cost-summary {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
