:root {
  --ink: #101513;
  --ink-2: #17231f;
  --muted: #66726d;
  --muted-2: #89938f;
  --forest: #107C41;
  --forest-2: #0b5c30;
  --forest-3: #0f6b3a;
  --forest-soft: #e8f5ee;
  --gold: #c5a756;
  --gold-soft: #fbf6e6;
  --paper: #fbfaf6;
  --soft: #f2f0e8;
  --white: #ffffff;
  --dark: #0c100f;
  --dark-2: #111917;
  --line: rgba(15, 35, 27, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 22px 70px rgba(11, 17, 16, .11);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1160px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .35s cubic-bezier(.22, 1, .36, 1), color .35s cubic-bezier(.22, 1, .36, 1);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.page {
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
}

.page.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(16, 124, 65, .2), transparent 40%), linear-gradient(135deg, #09100d 0%, #111716 55%, #0b0f0e 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.page-transition.is-active {
  opacity: 1;
  pointer-events: auto;
}

.page-transition .loader {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, .16);
  border-top-color: #7fe2ad;
  animation: pageSpin 1s linear infinite;
}

body.is-transitioning {
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 12px;
}

.skip:focus {
  left: 10px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
}

.mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--forest);
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(16, 124, 65, .25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-size: .94rem;
  letter-spacing: -.02em;
}

.brand span {
  font-size: .72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-links a {
  font-size: .82rem;
  color: #34413c;
  padding: 8px 11px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--forest-soft);
  color: var(--forest-2);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  font-size: .82rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s cubic-bezier(.22, 1, .36, 1), background .25s cubic-bezier(.22, 1, .36, 1), color .25s cubic-bezier(.22, 1, .36, 1);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(16, 124, 65, .24);
}

.btn-primary:hover {
  background: var(--forest-2);
}

.btn-secondary {
  background: rgba(255, 255, 255, .09);
  color: var(--white);
  border-color: rgba(255, 255, 255, .24);
}

.btn-light {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.mobile-menu {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  color: var(--ink);
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu panel */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 16px;
  border-top: 1px solid var(--line);
}

.mobile-nav a:not(.btn) {
  padding: 12px;
  border-radius: 12px;
  font-size: .98rem;
  font-weight: 600;
  color: #34413c;
}

.mobile-nav a:not(.btn):hover {
  background: var(--forest-soft);
  color: var(--forest-2);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 8px;
}

.hero {
  position: relative;
  color: var(--white);
  background: radial-gradient(circle at 82% 18%, rgba(16, 124, 65, .34), transparent 28%), linear-gradient(135deg, #0b0f0e 0%, #111716 54%, #09100d 100%);
  padding: 74px 0 46px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -12% auto auto -8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(127, 226, 173, .14), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: heroGlow 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 167, 86, .7), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, .64fr);
  gap: 44px;
  align-items: center;
  z-index: 1;
}

.hero .kicker,
.hero h1,
.hero .hero-copy,
.hero .hero-actions,
.hero .proof-row {
  position: relative;
  z-index: 1;
  animation: heroFadeUp .8s cubic-bezier(.2, .8, .2, 1) both;
}

.hero .kicker {
  animation-delay: .06s;
}

.hero h1 {
  animation-delay: .12s;
}

.hero .hero-copy {
  animation-delay: .2s;
}

.hero .hero-actions {
  animation-delay: .28s;
}

.hero .proof-row {
  animation-delay: .36s;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #7fe2ad;
  background: rgba(16, 124, 65, .16);
  border: 1px solid rgba(127, 226, 173, .22);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: currentColor;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.55rem);
  line-height: .98;
  letter-spacing: -.07em;
  margin: 0 0 24px;
  max-width: 850px;
}

.hero-copy {
  font-size: clamp(1.04rem, 1.9vw, 1.26rem);
  color: rgba(255, 255, 255, .72);
  max-width: 720px;
  margin: 0 0 28px;
}

.hero-proof {
  position: relative;
  z-index: 1;
  margin: -12px 0 18px;
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  font-size: clamp(.86rem, 1.7vw, .98rem);
  letter-spacing: .01em;
  line-height: 1.5;
  animation: heroFadeUp .8s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: .16s;
}

.hero-proof span {
  color: var(--gold);
  font-weight: 900;
  margin: 0 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  background: rgba(255, 255, 255, .04);
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), background .25s cubic-bezier(.2, .8, .2, 1), border-color .25s cubic-bezier(.2, .8, .2, 1), color .25s cubic-bezier(.2, .8, .2, 1);
}

.proof-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(127, 226, 173, .28);
}

.proof-pill svg {
  color: #7fe2ad;
}

.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
  overflow: hidden;
  animation: heroPanelFloat 8s ease-in-out infinite;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s cubic-bezier(.2, .8, .2, 1);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -100px -90px auto auto;
  width: 210px;
  height: 210px;
  background: rgba(197, 167, 86, .16);
  filter: blur(34px);
  border-radius: 999px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .08) 40%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.hero-panel:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .28);
}

.hero-panel:hover::after {
  transform: translateX(120%);
}

.panel-card {
  position: relative;
  background: rgba(251, 250, 246, .96);
  color: var(--ink);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1), box-shadow .35s cubic-bezier(.2, .8, .2, 1), border-color .35s cubic-bezier(.2, .8, .2, 1);
}

.panel-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.panel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 17, 16, .08);
  border-color: rgba(16, 124, 65, .2);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-label {
  color: var(--forest);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.panel-card h2 {
  font-size: 1.45rem;
  letter-spacing: -.04em;
  line-height: 1.12;
  margin: 0 0 6px;
}

.panel-sub {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
  margin: 0 0 18px;
}

.panel-card .btn {
  width: 100%;
}

.mini-badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8a6f27;
  font-size: .74rem;
  font-weight: 900;
  white-space: nowrap;
}

.checklist {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #43504b;
  font-size: .92rem;
}

.tick {
  flex: 0 0 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: var(--forest-soft);
  color: var(--forest) !important;
  font-size: .82rem;
  font-weight: 900;
}

.quick-metric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.metric-box {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 16px;
  padding: 13px;
}

.metric-box strong {
  display: block;
  color: var(--forest);
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.metric-box span {
  color: var(--muted);
  font-size: .78rem;
}

.section {
  padding: 74px 0;
  position: relative;
}

.section.tight {
  padding: 54px 0;
}

.section-soft {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(16, 124, 65, .1);
}

.section-dark .eyebrow {
  color: #7fe2ad;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -.06em;
  margin: 0 0 16px;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 690px;
  margin: 0;
}

.section-dark .lede {
  color: rgba(255, 255, 255, .62);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.reveal-card {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .38s cubic-bezier(.2, .8, .2, 1), transform .38s cubic-bezier(.2, .8, .2, 1), box-shadow .22s cubic-bezier(.2, .8, .2, 1), border-color .22s cubic-bezier(.2, .8, .2, 1);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(11, 17, 16, .055);
}

.intro-card .icon,
.service-icon,
.trust-icon,
.path-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--forest-soft);
  color: var(--forest);
  margin-bottom: 16px;
}

.intro-card h3,
.service-card h3,
.trust-card h3,
.path-card h3 {
  font-size: 1.02rem;
  letter-spacing: -.025em;
  margin: 0 0 8px;
}

.intro-card p,
.service-card p,
.trust-card p,
.path-card p {
  color: var(--muted);
  margin: 0;
  font-size: .94rem;
}

.service-wrap {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 26px;
  align-items: start;
}

.service-side {
  position: sticky;
  top: 92px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 22px 62px rgba(11, 17, 16, .07);
}

.service-side h3 {
  font-size: 1.32rem;
  letter-spacing: -.04em;
  margin: 0 0 10px;
}

.service-side p {
  color: var(--muted);
  margin: 0 0 18px;
}

.service-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  display: flex;
  gap: 10px;
  color: #4b5853;
  font-size: .92rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s cubic-bezier(.22, 1, .36, 1), border-color .3s cubic-bezier(.22, 1, .36, 1);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  opacity: .9;
}

.service-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.service-card li+li {
  margin-top: 5px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 900;
  font-size: .88rem;
  margin-top: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1), box-shadow .35s cubic-bezier(.22, 1, .36, 1);
}

.step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: var(--forest);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 7px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.step-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: green !important;
}

.step-meta svg {
  flex: 0 0 auto;
}

.section-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.trust-layout {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 28px;
  align-items: center;
}

.trust-stat {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .2);
}

.trust-stat h2 {
  color: var(--white);
}

.trust-stat p {
  color: rgba(255, 255, 255, .62);
  margin-bottom: 22px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
}

.stat strong {
  display: block;
  color: #7fe2ad;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.stat span {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: .77rem;
  margin-top: 6px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, .045);
}

.trust-card p {
  color: rgba(255, 255, 255, .56);
}

.section-dark .section-title h2 {
  color: var(--white);
}

.cred-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  text-align: left;
}

.cred-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .74);
  font-size: .9rem;
}

.cred-list li::before {
  content: "\2013";
  color: #7fe2ad;
  font-weight: 900;
  flex: 0 0 auto;
}

.trust-icon {
  background: rgba(16, 124, 65, .18);
  color: #7fe2ad;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.path-card .spacer {
  flex: 1;
}

.path-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}

.path-quote {
  position: relative;
  font-style: italic;
  color: var(--ink) !important;
  font-size: 1rem !important;
  line-height: 1.5;
  margin: 16px 0 20px 0 !important
}

.path-quote::before {
  content: "\201C";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: .4;
  color: rgba(16, 124, 65, .32);
  margin-bottom: 0px;
}

.path-route-block {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.path-route-label {
  font-size: .64rem !important;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest) !important;
  margin: 0 0 5px !important;
}

.path-route {
  color: var(--muted);
  margin: 0 0 12px;
  font-size: .9rem;
}

.path-take {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-weight: 900;
  font-size: .86rem;
  transition: gap .25s cubic-bezier(.22, 1, .36, 1);
}

.path-take:hover {
  gap: 11px;
}

.path-card.is-active {
  border-color: rgba(16, 124, 65, .42);
  box-shadow: 0 20px 60px rgba(16, 124, 65, .12);
}

.path-result {
  margin-top: 18px;
  border: 1px solid rgba(16, 124, 65, .24);
  background: var(--forest-soft);
  color: var(--forest-2);
  border-radius: 18px;
  padding: 16px 18px;
  font-size: .94rem;
}

.partners-wrap {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 30px;
  align-items: start;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s cubic-bezier(.22, 1, .36, 1), border-color .3s cubic-bezier(.22, 1, .36, 1);
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 124, 65, .14);
  border-color: rgba(16, 124, 65, .2);
}

.partner-logo {
  height: 54px;
  display: grid;
  place-items: center;
}

.partner-logo img {
  max-height: 54px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
}

.partner-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--forest-soft);
  color: var(--forest);
}

.partner-role {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--forest-soft);
  padding: 5px 10px;
  border-radius: 999px;
}

.partner-role.is-gold {
  color: #8a6f27;
  background: var(--gold-soft);
}

.partner-card h3 {
  font-size: 1.06rem;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
}

.partner-card p {
  color: var(--muted);
  margin: 0;
  font-size: .9rem;
  flex: 1;
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 900;
  font-size: .88rem;
  text-decoration: none;
  margin-top: 4px;
  transition: gap .25s cubic-bezier(.22, 1, .36, 1);
}

.partner-cta:hover {
  gap: 12px;
}

.markets {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.market {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: box-shadow .3s cubic-bezier(.22, 1, .36, 1), transform .3s cubic-bezier(.22, 1, .36, 1), border-color .3s cubic-bezier(.22, 1, .36, 1);
}

.market:hover {
  box-shadow: 0 12px 30px rgba(16, 124, 65, .14);
  transform: translateY(-2px);
}

.market strong {
  display: block;
  font-size: .94rem;
  margin-bottom: 2px;
  margin-top: 25px;
}

.market span {
  color: var(--muted);
  font-size: .82rem;
}

.market-code {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 99px;
  background: var(--forest-soft);
  color: var(--forest) !important;
  font-weight: 900;
  margin-bottom: 8px;
}

.market-badge {
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 999px;
  background: #b8eb00;
  color: #3f5a16 !important;
  font-size: .54rem !important;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.market-points {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.market-points li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.4;
}

.market-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--muted-2);
}

.market-action {
  margin-top: auto;
  padding-top: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  transition: color .25s cubic-bezier(.22, 1, .36, 1), transform .25s cubic-bezier(.22, 1, .36, 1);
}

.market:hover .market-action,
.market:focus-within .market-action {
  transform: translateX(2px);
}

.market-action:hover {
  text-decoration: underline;
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 30px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  transition: border-color .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s cubic-bezier(.22, 1, .36, 1);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  letter-spacing: -.015em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '▾';
  font-size: .95rem;
  color: var(--forest);
  transition: transform .2s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

details ul {
  color: var(--muted);
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

details ul li {
  line-height: 1.5;
}

details ul li strong {
  color: var(--ink, inherit);
}

.contact {
  background: linear-gradient(135deg, var(--dark), #0d1712);
  color: var(--white);
  border-top: 1px solid rgba(197, 167, 86, .5);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background: rgba(255, 255, 255, .055);
  padding: 26px;
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, .62);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-method {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 17px;
  padding: 14px;
  background: rgba(255, 255, 255, .04);
}

.contact-method strong {
  display: block;
  font-size: .9rem;
}

.contact-method span {
  color: rgba(255, 255, 255, .55);
  font-size: .86rem;
}

.contact .eyebrow {
  color: #7fe2ad;
}

.contact .tick {
  background: rgba(16, 124, 65, .22);
  color: #7fe2ad !important;
  border: 1px solid rgba(127, 226, 173, .3);
}

.form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: .8rem;
  font-weight: 900;
  color: #46524d;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(16, 124, 65, .55);
  box-shadow: 0 0 0 4px rgba(16, 124, 65, .1);
}

.footer {
  background: #080c0b;
  color: rgba(255, 255, 255, .58);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer a {
  color: rgba(255, 255, 255, .58);
}

.footer small {
  color: rgba(255, 255, 255, .38);
}

.mobile-sticky {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 200;
  background: rgba(251, 250, 246, .95);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
  gap: 8px;
}

.mobile-sticky .btn {
  flex: 1;
  min-height: 42px;
  padding: 10px 12px;
  font-size: .82rem;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(18px, -22px, 0) scale(1.08);
  }
}

@keyframes heroPanelFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1040px) {

  .nav-links,
  .phone-link,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .service-wrap,
  .trust-layout,
  .faq-grid,
  .contact-grid,
  .partners-wrap {
    grid-template-columns: 1fr;
  }

  .service-side {
    position: relative;
    top: 0;
  }

  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .markets {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-inner {
    height: 64px;
  }

  .brand {
    min-width: auto;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 48px 0 36px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
    letter-spacing: -.06em;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .panel-card .btn {
    width: 100%;
  }

  .hero-grid {
    gap: 24px;
  }

  .section {
    padding: 58px 0;
  }

  .intro-grid,
  .service-grid,
  .steps,
  .trust-grid,
  .path-grid,
  .partners-grid,
  .markets,
  .form-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .quick-metric {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky {
    display: flex;
  }

  .nav-cta .btn {
    width: auto;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 420px) {

  .hero-panel,
  .panel-card,
  .form,
  .contact-card {
    border-radius: 22px;
    padding: 18px;
  }

  .quick-metric {
    grid-template-columns: 1fr;
  }

  .proof-pill {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
  }
}

@keyframes pageSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
}

/* Back-to-top floating button */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 300;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(16, 124, 65, .32);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.92);
  transition: opacity .3s cubic-bezier(.22, 1, .36, 1), transform .3s cubic-bezier(.22, 1, .36, 1), background .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--forest-2);
  transform: translateY(-2px) scale(1.04);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 760px) {
  .back-to-top {
    right: 14px;
    bottom: 84px;
    width: 44px;
    height: 44px;
  }
}

/* How-it-works timeline (V2) — the eye travels left to right and lands on LIVE */
.how-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-top: 8px;
}

.how-flow::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 14%;
  right: 32px;
  border-top: 2px dashed var(--line);
  z-index: 0;
}

.how-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-node {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 2px solid var(--forest);
  color: var(--forest);
  font-weight: 900;
  font-size: 1.02rem;
  box-shadow: 0 0 0 6px var(--soft);
  margin-bottom: 20px;
}

.how-step .step {
  width: 100%;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s cubic-bezier(.22, 1, .36, 1), opacity .6s cubic-bezier(.22, 1, .36, 1);
}

.how-step .step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(11, 17, 16, .12);
}

.how-flow .step::before {
  content: none;
  display: none;
}

.step-badge {
  display: inline-flex;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.how-live {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.how-node--live {
  width: 58px;
  height: 58px;
  margin: -7px 0 0;
  background: var(--forest);
  border: 2px solid var(--forest);
  color: #fff;
  box-shadow: 0 0 0 6px var(--soft), 0 16px 34px rgba(16, 124, 65, .55);
  animation: howLivePulse 2.6s ease-in-out infinite;
}

.how-node--live svg {
  width: 28px;
  height: 28px;
}

.how-live-label {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest);
}

@keyframes howLivePulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px var(--soft), 0 12px 26px rgba(16, 124, 65, .38);
  }

  50% {
    box-shadow: 0 0 0 6px var(--soft), 0 20px 46px rgba(16, 124, 65, .8);
  }
}

@media (max-width: 860px) {
  .how-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .how-flow::before {
    display: none;
  }

  .how-node {
    margin-bottom: 12px;
  }

  .how-node--live {
    margin: 6px 0 0;
  }

  .how-live {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-node--live {
    animation: none;
  }
}

/* How-it-works closing banner */
.how-banner {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 24px;
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  border-radius: 22px;
  padding: 24px 30px;
  box-shadow: 0 22px 60px rgba(16, 124, 65, .24);
}

.how-banner-text strong {
  display: block;
  color: #fff;
  font-size: 1.14rem;
  letter-spacing: -.02em;
}

.how-banner-text p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.how-banner .btn {
  background: #c5a756;
  color: #16321f;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
  transition: background .25s cubic-bezier(.2, .8, .2, 1), transform .25s cubic-bezier(.2, .8, .2, 1);
}

.how-banner .btn:hover {
  background: #d4bd6d;
  transform: translateY(-2px);
}

@media (max-width: 620px) {
  .how-banner {
    padding: 22px;
  }

  .how-banner .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Credentials section — two-column layout (intro + registrations | compliance grid) */
.creds-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: start;
}

.creds-panel {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 26px;
  padding: 30px;
}

.creds-panel .section-title {
  margin-bottom: 0;
}

.creds-reg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.creds-reg-card {
  padding: 18px;
}

.creds-reg-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.creds-reg-card h3 {
  margin: 0;
  font-size: .82rem;
  letter-spacing: .04em;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Certificate-stamp seal (SVG) — lime scalloped badge */
.creds-seal {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .42));
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.creds-reg-card:hover .creds-seal {
  transform: rotate(6deg) scale(1.05);
}

.creds-seal text {
  font-family: inherit;
}

.creds-seal .scal-lime {
  fill: #a3d13a;
}

.creds-seal .seal-core {
  fill: #0d3d1f;
}

.creds-seal .seal-coreline {
  fill: none;
  stroke: #a3d13a;
  stroke-width: 1;
  opacity: .45;
}

.creds-seal .seal-code {
  fill: #bfe84f;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .01em;
}

.creds-seal .seal-code--sm {
  font-size: 12px;
  letter-spacing: .02em;
}

.creds-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
}

.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 980px) {
  .creds-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .creds-panel {
    padding: 22px;
  }

  .creds-grid {
    grid-template-columns: 1fr;
  }

  .creds-reg {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .creds-reg-card {
    padding: 14px;
  }

  .creds-reg-head {
    gap: 9px;
  }

  .creds-seal {
    width: 56px;
    height: 56px;
  }
}

/* Pathways closing banner */
.path-banner {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px 22px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  border-radius: 22px;
  padding: 22px 28px;
  box-shadow: 0 22px 60px rgba(16, 124, 65, .24);
}

.path-banner-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(212, 229, 30, .65);
  color: #d4e51e;
}

.path-banner-text {
  flex: 1 1 300px;
}

.path-banner-text strong {
  display: block;
  color: #fff;
  font-size: 1.06rem;
  letter-spacing: -.01em;
}

.path-banner-text p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.path-banner .btn {
  background: #c5a756;
  color: #16321f;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
}

.path-banner .btn:hover {
  background: #c6d61a;
  transform: translateY(-2px);
}

@media (max-width: 620px) {
  .path-banner {
    padding: 20px;
  }

  .path-banner .btn {
    width: 100%;
    justify-content: center;
  }
}