:root {
  --bg: #f0f2ee;
  --surface: #ffffff;
  --surface-2: #f6f8f4;
  --ink: #0c1914;
  --muted: #3a4e43;
  --forest: #0d3a2d;
  --forest-2: #176147;
  --forest-3: #228362;
  --line: #d3dbd2;
  --line-strong: #a9b6a9;
  --warm: #e4ebdf;
  --gold: #e5d8ae;
  --success: #196132;
  --brand-glow: rgba(34, 131, 98, 0.28);
  --danger: #8f2d1a;
  --radius: 16px;
  --radius-tight: 12px;
  --shadow: 0 30px 68px rgba(14, 34, 25, 0.2);
  --shadow-soft: 0 14px 32px rgba(14, 34, 25, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 82% 0%, #d9e6d7 0, #f0f2ee 42%),
    radial-gradient(circle at 0 90%, rgba(13, 58, 45, 0.07) 0, rgba(13, 58, 45, 0) 44%),
    repeating-linear-gradient(
      125deg,
      rgba(10, 37, 28, 0.012) 0,
      rgba(10, 37, 28, 0.012) 2px,
      transparent 2px,
      transparent 18px
    );
  color: var(--ink);
  font-family: 'Manrope', 'Avenir Next', 'Segoe UI', sans-serif;
  line-height: 1.6;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #111;
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 0 0 8px 0;
  z-index: 120;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid #1d74ff;
  outline-offset: 2px;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: var(--forest);
  color: #f0f7f4;
  font-size: 0.88rem;
  font-weight: 650;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  gap: 1rem;
  text-align: center;
}

.topbar strong {
  color: var(--gold);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 246, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 52, 40, 0.14);
  box-shadow: 0 10px 28px rgba(15, 33, 25, 0.09);
}

.navbar {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: 'Sora', 'Manrope', 'Avenir Next', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.08rem;
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.82rem;
  color: #1e3329;
  font-weight: 700;
  font-size: 0.89rem;
}

.nav-links > a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.42rem 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  color: #1b3329;
  font-weight: 760;
  white-space: nowrap;
}

.nav-links > a:hover,
.nav-dropdown-toggle:hover {
  text-decoration: none;
  background: rgba(16, 66, 50, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 1px solid transparent;
  background: transparent;
  font: inherit;
  cursor: pointer;
  gap: 0.36rem;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #1b3329;
  border-bottom: 2px solid #1b3329;
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.42rem);
  left: 0;
  min-width: 212px;
  display: none;
  padding: 0.52rem;
  border: 1px solid #c4d2c7;
  border-radius: 12px;
  background: #f8fbf9;
  box-shadow: 0 14px 28px rgba(16, 38, 29, 0.16);
  z-index: 30;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.52rem 0.62rem;
  border-radius: 8px;
  color: #1f372d;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 720;
}

.nav-dropdown-menu a:hover {
  background: #e7f1ec;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
  gap: 0.15rem;
}

.nav-toggle {
  display: none;
  min-height: 46px;
  padding: 0.65rem 0.9rem;
  border-radius: 11px;
  border: 1px solid #9eb8ab;
  background: #ecf4ef;
  color: #12372a;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 760;
  cursor: pointer;
}

.nav-toggle:hover {
  background: #e1ede6;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(29, 116, 255, 0.5);
  outline-offset: 2px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 231, 214, 0.62);
  background: linear-gradient(135deg, #0f3f30 0%, #1e7a58 100%);
  color: #f4fff9;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(11, 49, 36, 0.26);
}

.hero {
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding: clamp(3.8rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4.5rem);
  background:
    linear-gradient(135deg, #0d3025 0%, #175740 52%, #1f7658 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: clamp(280px, 34vw, 460px);
  height: clamp(280px, 34vw, 460px);
  right: -5%;
  top: -28%;
  background: radial-gradient(circle, rgba(229, 216, 174, 0.32) 0%, rgba(229, 216, 174, 0) 66%);
}

.hero::after {
  width: clamp(240px, 24vw, 360px);
  height: clamp(240px, 24vw, 360px);
  left: -7%;
  bottom: -35%;
  background: radial-gradient(circle, rgba(34, 131, 98, 0.26) 0%, rgba(34, 131, 98, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.9rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.hero-copy,
.card,
.form-card,
.feature,
.faq-item,
.cta-block,
.info-card,
.trust-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  background-clip: padding-box;
}

.hero-copy {
  padding: clamp(1.9rem, 3.4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 31, 24, 0.12) 0%, rgba(10, 31, 24, 0.03) 100%);
  border-color: rgba(233, 244, 238, 0.22);
  backdrop-filter: blur(3px);
}

.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(235, 247, 242, 0.16);
  border: 1px solid rgba(235, 247, 242, 0.28);
  color: #f4fbf8;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Sora', 'Manrope', 'Avenir Next', sans-serif;
  line-height: 1.1;
  color: #113d2e;
  letter-spacing: 0.01em;
  font-weight: 780;
}

h1 {
  font-size: clamp(2.5rem, 6.3vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.52rem);
}

p {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-copy p {
  font-size: 1.03rem;
  color: #e7f3ee;
  max-width: 58ch;
}

.hero-copy h1,
.hero-copy h2,
.hero-copy h3 {
  color: #f5fcf8;
}

.hero-copy .form-note,
.hero-copy .quick-points span,
.hero-copy .trust-mini {
  color: #d8ece4;
}

.quick-points {
  display: grid;
  gap: 0.62rem;
  margin: 1.2rem 0;
}

.quick-points span {
  padding-left: 1.6rem;
  position: relative;
  color: #ebf7f2;
  font-weight: 650;
}

.quick-points span::before {
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #79d7b2;
  position: absolute;
  left: 0;
  top: 0.44rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-tight);
  font-weight: 800;
  letter-spacing: 0.012em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #093125 0%, #166348 58%, #20865f 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(7, 43, 31, 0.36), 0 0 0 1px rgba(143, 233, 196, 0.24) inset;
}

.btn-secondary {
  background: #edf4ec;
  color: #153427;
  border: 1px solid #b7cab9;
}

.form-card button.btn-primary {
  background: linear-gradient(180deg, #eaf2ed 0%, #dfe9e3 100%);
  color: #113628;
  border: 1px solid #9fb7a9;
  box-shadow: 0 8px 16px rgba(21, 54, 41, 0.12);
}

.form-card button.btn-primary:hover {
  box-shadow: 0 12px 20px rgba(21, 54, 41, 0.16);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(31, 79, 62, 0.3);
  color: #1f4f3e;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.phone-pill,
.mobile-call,
.mobile-form {
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.phone-pill:hover,
.mobile-call:hover,
.mobile-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 32, 26, 0.2);
}

.card,
.form-card,
.feature,
.faq-item,
.info-card,
.trust-card,
.cta-block {
  padding: 1.25rem;
}

.feature,
.info-card,
.faq-item {
  border-color: #c7d2c8;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbf8 100%);
}

.feature p,
.info-card p,
.faq-item p,
.trust-card p {
  max-width: 60ch;
}

.form-card {
  background: linear-gradient(168deg, #ffffff 0, #f4f8f5 100%);
  border-color: #7e9e8b;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-self: start;
  position: sticky;
  top: 112px;
}

.form-card h2 {
  color: #0f3b2d;
}

.form-card p,
.form-card .form-note,
.form-card .trust-mini,
.form-card .trust-mini span {
  color: #214236;
}

.form-card::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 6px;
  border-radius: 0 0 var(--radius-tight) var(--radius-tight);
  background: linear-gradient(90deg, #1d7b5b 0%, #48b487 100%);
}

form {
  display: grid;
  gap: 0.82rem;
}

label {
  font-size: 0.85rem;
  font-weight: 780;
  color: #143226;
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
  display: inline-block;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 2px solid #7f9789;
  border-radius: 12px;
  padding: 0.74rem 0.85rem;
  font: inherit;
  color: #10281f;
  background: #fcfffd;
  transition: border-color 0.18s ease, box-shadow 0.2s ease, transform 0.2s ease,
    background-color 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #5a6e63;
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #146f50;
  box-shadow: 0 0 0 4px rgba(44, 149, 111, 0.24);
  transform: translateY(-1px);
  background-color: #ffffff;
  outline: none;
}

small,
.form-note {
  color: #465144;
  font-size: 0.85rem;
}

.form-success {
  display: none;
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: #e6f5ea;
  color: #144d26;
  border: 1px solid #8fc39c;
}

.form-error {
  display: none;
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.9rem;
  background: #fdebe7;
  color: #7c1f0f;
  border: 1px solid #e8b3a8;
}

.consent-block {
  background: #f6f1e2;
  border: 1px solid #d8ccb0;
  border-radius: 10px;
  padding: 0.7rem;
  display: grid;
  gap: 0.6rem;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: #2f3a2c;
}

.check-row input[type='checkbox'] {
  min-height: 16px;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex: 0 0 auto;
}

.trust-mini {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  color: #2e4338;
  font-size: 0.86rem;
  font-weight: 700;
}

.secure-pill {
  display: inline-block;
  width: fit-content;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: #e6f5ee;
  border: 1px solid #8cc8ac;
  color: #0f583f;
}

section {
  padding: clamp(2.6rem, 4.3vw, 3.8rem) 0;
}

section + section {
  border-top: 1px solid rgba(19, 54, 40, 0.08);
}

.band {
  background: linear-gradient(180deg, #e9f0e9 0%, #e2ebdf 100%);
  border-top: 1px solid #c6d3c6;
  border-bottom: 1px solid #c6d3c6;
}

.grid-2,
.grid-3,
.trust-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.trust-card {
  border-color: #bfcfc0;
  background: linear-gradient(165deg, #f8fbf8 0, #eef4ef 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: clip;
  display: grid;
  gap: 0.55rem;
}

.trust-card::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 123, 90, 0.18) 0, rgba(29, 123, 90, 0) 70%);
  pointer-events: none;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  background: linear-gradient(145deg, #1a7356 0%, #249267 100%);
  color: #f5fff9;
  box-shadow: 0 10px 18px rgba(17, 66, 50, 0.22);
}

.trust-micro {
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #2f5848;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #efe8d6;
  color: #364131;
  font-weight: 700;
  font-size: 0.82rem;
}

.cta-block {
  background: linear-gradient(140deg, #1f4f3e 0, #2d6b56 62%, #3f7d67 100%);
  color: #fff;
  border-color: rgba(214, 237, 226, 0.34);
  box-shadow: var(--shadow);
  position: relative;
  overflow: clip;
  isolation: isolate;
  padding: clamp(1.45rem, 3vw, 2.35rem);
}

.cta-block::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 247, 239, 0.2) 0, rgba(232, 247, 239, 0) 70%);
}

.cta-block h2,
.cta-block p {
  color: #fff;
}

.disclaimer {
  border-left: 4px solid #b5653f;
  background: #fff7eb;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  color: #3f3225;
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
}

th,
td {
  border: 1px solid #ddd4be;
  padding: 0.6rem;
  text-align: left;
  font-size: 0.92rem;
}

th {
  background: #f3ecd9;
  font-weight: 700;
}

.callout {
  border-left: 5px solid var(--forest);
  padding: 0.75rem 0.95rem;
  background: #eef5f0;
  border-radius: 6px;
  color: #274336;
  margin-top: 0.7rem;
}

.policy-block h2 {
  margin-top: 1.25rem;
}

.policy-block ul {
  margin: 0.6rem 0 0.4rem 1.15rem;
}

footer {
  padding: 2rem 0 6rem;
  background: #172f25;
  color: #f6f6ef;
}

footer .small {
  font-size: 0.84rem;
  color: #d7dfd6;
}

footer a {
  color: #f0f7eb;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
  background: rgba(13, 18, 13, 0.93);
  display: none;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-cta-bar a {
  min-height: 56px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-call {
  background: linear-gradient(135deg, #0f3f30 0%, #1f805c 100%);
  color: #f4fff9;
  box-shadow: 0 10px 18px rgba(8, 40, 29, 0.26);
}

.mobile-form {
  background: #e8efe9;
  color: #153427;
  border: 1px solid #c1d1c4;
}

.testimonial-placeholder {
  position: relative;
  overflow: hidden;
}

.testimonial-placeholder::after {
  content: 'Verification Program';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  background: #f0e8d2;
  color: #314132;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
}

@media (max-width: 1080px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid .form-card {
    order: -1;
    margin-bottom: 0.4rem;
    position: static;
  }

  .navbar {
    grid-template-columns: 1fr auto;
    gap: 0.65rem;
    padding: 0.75rem 0 0.85rem;
  }

  .brand {
    font-size: 1rem;
  }

  .phone-pill {
    min-height: 52px;
    padding: 0.75rem 1rem;
    font-size: 0.94rem;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 1 / 2;
    justify-self: start;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    gap: 0.35rem;
    margin-top: 0.2rem;
    padding: 0.6rem;
    border: 1px solid #c4d2c7;
    border-radius: 14px;
    background: #f7fbf8;
    box-shadow: 0 10px 20px rgba(18, 38, 30, 0.08);
  }

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

  .nav-links > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    padding: 0.54rem 0.65rem;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.3rem;
    box-shadow: none;
    border-color: #d0ddd3;
    background: #edf4ef;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    gap: 0.15rem;
  }

  .topbar .container {
    padding: 0.45rem 0;
    text-align: center;
  }

  .mobile-cta-bar {
    display: grid;
  }

  footer {
    padding-bottom: 8.3rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 1rem));
  }

  .btn {
    width: 100%;
    min-height: 58px;
  }

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

  .nav-toggle,
  .phone-pill {
    grid-column: 1 / -1;
    width: 100%;
  }

  main {
    padding-bottom: 1rem;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-copy {
    padding: 1.25rem;
  }
}
