:root {
  --green: #2f8f5b;
  --green-dark: #123b2a;
  --green-soft: #eaf5ee;
  --ink: #12191f;
  --ink-2: #283541;
  --muted: #62707c;
  --paper: #ffffff;
  --soft: #f5f8f4;
  --soft-gold: #fff6e3;
  --line: #dce8df;
  --gold: #f2b447;
  --blue: #1f5f8f;
  --plum: #42315d;
  --radius: 7px;
  --shadow: 0 24px 70px rgba(15, 28, 24, 0.14);
  --soft-shadow: 0 14px 34px rgba(15, 28, 24, 0.09);
  --font: Barlow, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.08; letter-spacing: 0; }
p { margin: 0; color: var(--muted); line-height: 1.72; }
main,
section,
article,
aside,
header,
footer,
.wrap,
.card,
.form-panel,
.section-head,
.site-footer,
.page-hero-inner,
.hero-copy {
  min-width: 0;
}
p,
li,
a,
span,
label,
summary,
input,
select,
textarea,
button {
  overflow-wrap: break-word;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 4vw;
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(220,232,223,0.72);
  box-shadow: none;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-nav.is-scrolled,
.site-nav[data-open="true"] {
  background: rgba(255,255,255,0.98);
  border-bottom-color: rgba(220,232,223,0.94);
  box-shadow: 0 10px 30px rgba(18,25,31,0.06);
}
.nav-logo {
  min-width: 160px;
  display: flex;
  align-items: center;
}
.nav-logo img {
  width: 160px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li { position: relative; }
.nav-links a,
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0.62rem 0.78rem;
  border: 0;
  border-radius: 7px;
  color: #43505b;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.65;
}
.nav-links a:hover,
.nav-links a.active,
.nav-group:hover > .nav-parent,
.nav-group:focus-within > .nav-parent {
  color: var(--green);
  background: rgba(47,143,91,0.09);
}
.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 285px;
  padding: 0.55rem;
  border: 1px solid rgba(220,232,223,0.95);
  border-radius: 8px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-menu a {
  display: grid;
  gap: 2px;
  min-height: auto;
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
  color: var(--ink);
}
.nav-menu a span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-actions {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.site-nav[data-open="true"] .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-nav[data-open="true"] .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-nav[data-open="true"] .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn-primary,
.btn-secondary,
.btn-light,
.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
}
.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(47,143,91,0.2);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.76rem 1.05rem;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 800;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(47,143,91,0.22);
}
.btn-primary:hover,
.nav-cta:hover {
  background: #257b4d;
  color: #fff;
}
.btn-secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}
.btn-light { color: var(--ink); background: #fff; }
.btn-text {
  min-height: auto;
  padding: 0;
  color: var(--green);
  border: 0;
  background: transparent;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5rem 4vw;
  background-color: #0f2118;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero {
  min-height: calc(100vh - 78px);
  align-items: flex-end;
  padding-bottom: 6rem;
}
.page-hero {
  min-height: 58vh;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 0;
  padding-bottom: 0;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero::before {
  background: linear-gradient(to top, rgba(7,24,17,0.64), rgba(7,24,17,0.1) 62%, transparent);
}
/* Bottom-up gradient: image stays clean at top, dark band rises from bottom */
.page-hero::before {
  background: linear-gradient(
    to top,
    rgba(7,24,17,0.97) 0%,
    rgba(7,24,17,0.88) 28%,
    rgba(7,24,17,0.45) 55%,
    rgba(7,24,17,0.08) 75%,
    transparent 100%
  );
}
/* Text content sits inside the dark band at the bottom */
.page-hero-inner {
  width: 100%;
  padding: 0 4vw 2.8rem;
  background: transparent;
}
.hero::after,
.page-hero::after { display: none; }
.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-inner { width: min(1240px, 100%); }
/* Homepage hero: content left-aligned inside dark overlay */
.hero .hero-inner {
  text-align: left;
  align-items: flex-start;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
.hero-copy {
  max-width: 560px;
  padding: 2.35rem 2rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(7,24,17,0.84);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.hero .eyebrow,
.page-hero .eyebrow {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 7px 12px;
}
.hero h1,
.page-hero h1 {
  margin-top: 1.1rem;
  color: #fff;
  max-width: 920px;
  font-size: clamp(3rem, 6.2vw, 6rem);
}
/* Homepage hero h1 left-aligned */
.hero h1 {
  text-align: left;
  max-width: 560px;
}
/* Homepage hero p left-aligned */
.hero p {
  text-align: left;
  max-width: 500px;
  line-height: 1.55;
}
.page-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  max-width: 820px;
  text-align: center;
}
.hero h1 span,
.page-hero h1 span { color: #fff; }
.hero p,
.page-hero p {
  max-width: 790px;
  margin-top: 1.1rem;
  color: rgba(255,255,255,0.84);
  font-size: 1.12rem;
}
.page-hero p {
  max-width: 640px;
  font-size: 1.15rem;
  line-height: 1.65;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  margin-top: 0;
}
/* Restored h1 as caption — compact, bright, sits above subtitle */
.page-hero h1.hero-caption {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 720px;
  line-height: 1.45;
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}
.page-hero .hero-actions {
  justify-content: center;
}
.hero-media,
.page-hero-image { display: none; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 960px;
  margin-top: 2.4rem;
}
.proof-item {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(9,28,20,0.72);
}
.proof-item strong {
  display: block;
  color: #fff;
  font-size: 1.28rem;
}
.proof-item span {
  display: block;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  margin-top: 0.25rem;
}

.section { padding: 5rem 4vw; }
.section.alt { background: var(--soft); }
.section.gold-soft { background: var(--soft-gold); }
.section.dark { color: #fff; background: var(--green-dark); }
.section.dark h2,
.section.dark h3 { color: #fff; }
.section.dark p { color: rgba(255,255,255,0.76); }



.section-bg {
  background-image: linear-gradient(90deg, rgba(18,59,42,0.94), rgba(18,59,42,0.58)), var(--section-image, none);
  background-size: cover;
  background-position: center;
}
.fade-photo {
  background-size: cover;
  background-position: center;
}
.wrap { width: min(1180px, 100%); margin: 0 auto; }

.top-trust-strip {
  background: var(--green-dark);
  padding: 0.7rem 4vw;
}
.top-trust-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
  justify-content: center;
}
.top-trust-item {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}
.top-trust-divider {
  color: rgba(255,255,255,0.32);
  font-size: 0.75rem;
}
.audience-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.audience-path-card {
  border-top: 4px solid var(--green);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.responsive-inline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* ── Home: Impact stats row ── */
.home-proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  background: var(--green-dark);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}
.home-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}
.home-proof-stat strong {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.home-proof-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
  font-weight: 500;
}
.home-proof-stat span a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 680px) {
  .home-proof-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
    padding: 1.25rem 1rem;
  }
  .home-proof-stat strong { font-size: 1.9rem; }
}
.section-head { max-width: 860px; margin-bottom: 2rem; }
.section-head h2 {
  margin-top: 0.65rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
}
.section-head p {
  margin-top: 0.85rem;
  font-size: 1.03rem;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.split {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(340px,0.84fr);
  gap: 2rem;
  align-items: center;
}
.split.wide {
  grid-template-columns: minmax(0,0.9fr) minmax(420px,1fr);
}
.card {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 0 rgba(18,25,31,0.02);
}
.card.dark-card {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.09);
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}
.card ul {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
}
.card li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.65;
}
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.card-link {
  margin-top: 1.1rem;
  color: var(--green);
  font-weight: 800;
}
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 0.44rem 0.7rem;
  font-size: 13px;
  font-weight: 800;
}
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
  padding: 0 4vw 2.4rem;
}
.trust-strip-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.trust-item {
  padding: 1.1rem 1.25rem;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}
.trust-item span {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
  font-size: 13px;
  line-height: 1.4;
}
.pathway-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.pathway-row {
  display: grid;
  grid-template-columns: 68px minmax(0,1fr);
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid var(--line);
}
.pathway-row:last-child { border-bottom: 0; }
.pathway-row strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
}
.pathway-row h3 {
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}
.timeline {
  display: grid;
  gap: 0.8rem;
  counter-reset: steps;
}
.step {
  display: grid;
  grid-template-columns: 54px minmax(0,1fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}
.step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}
.mini-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.mini-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0,1fr);
  border-bottom: 1px solid var(--line);
}
.mini-row:last-child { border-bottom: 0; }
.mini-row strong,
.mini-row span {
  padding: 1rem;
  line-height: 1.55;
}
.mini-row strong { background: var(--soft); color: var(--ink); }
.mini-row span { color: var(--muted); }

.image-panel {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.image-panel figcaption {
  padding: 0.8rem 1rem;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  line-height: 1.55;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.partner-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.partner-logo {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  border: 1px solid rgba(220,232,223,0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47,143,91,0.08), rgba(31,95,143,0.08)),
    #fff;
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
}
.partner-card h3 { font-size: 1.08rem; }
.partner-card p { font-size: 0.95rem; }
.partner-meta {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.partner-link {
  align-self: end;
  color: var(--green);
  font-weight: 800;
}

.partner-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.partner-hero-points span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  background: rgba(9,28,20,0.38);
  font-size: 0.86rem;
  font-weight: 700;
}
.partner-trust-grid,
.partner-feature-grid,
.partner-directory-grid,
.partner-inquiry-grid,
.verification-grid {
  display: grid;
  gap: 1rem;
}
.partner-trust-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}
.partner-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.partner-directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.partner-inquiry-grid,
.verification-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.partner-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.partner-logo-tile {
  position: relative;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.partner-logo-tile.large {
  min-height: 132px;
}
.partner-logo-img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.partner-logo-tile.large .partner-logo-img {
  max-height: 92px;
}
.partner-logo-fallback {
  position: absolute;
  inset: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(47,143,91,0.10), rgba(31,95,143,0.08)),
    #fff;
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
}
.partner-logo-tile.logo-loaded .partner-logo-img {
  opacity: 1;
}
.partner-logo-tile.logo-loaded .partner-logo-fallback {
  display: none;
}
.partner-feature-card,
.partner-directory-card,
.partner-inquiry-card,
.verification-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.partner-feature-card {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem;
}
.partner-feature-card h3,
.partner-directory-card h3,
.partner-inquiry-card h3,
.verification-step h3 {
  font-size: 1.05rem;
}
.partner-feature-card p,
.partner-directory-card p,
.partner-inquiry-card p,
.verification-step p {
  font-size: 0.94rem;
}
.partner-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}
.partner-directory-group {
  margin-top: 2.25rem;
}
.partner-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.partner-directory-head h3 {
  font-size: 1.25rem;
}
.partner-directory-head span,
.partner-type-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 800;
}
.partner-directory-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}
.partner-directory-card .partner-logo-tile {
  min-height: 92px;
  box-shadow: none;
}
.partner-muted-link {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}
.verification-step {
  padding: 1.1rem;
}
.verification-step strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.9rem;
}
.partner-inquiry-card {
  padding: 1rem;
}
.partner-inquiry-note {
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: var(--green-soft);
}
.partner-inquiry-note p {
  color: var(--green-dark);
  font-weight: 700;
}

.funnel-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1rem;
  align-items: start;
}
.funnel-aside {
  position: sticky;
  top: 98px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.funnel-aside a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}
.funnel-aside a:last-child { border-bottom: 0; }
.funnel-content { display: grid; gap: 1rem; }
.callout {
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.2rem;
  background: var(--soft-gold);
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0.85rem;
}
label {
  display: block;
  /* A4 fix: use ink (dark) not muted for form labels — ensures WCAG AA contrast */
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
/* Override: non-form labels (e.g. inline metadata) keep muted tone */
.card label,
.card-meta label,
.section label:not(.form-panel label) {
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  /* A4 fix: ensure typed text is always readable (not inherited muted) */
  color: var(--ink);
}
select {
  padding-right: 2.2rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1 / -1; }
/* A4 fix: form status message — high contrast, clearly readable */
.form-status { margin-top: 1rem; color: var(--green-dark); font-weight: 800; font-size: 0.95rem; }
.form-status:not(:empty) {
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green-dark);
  line-height: 1.45;
}
/* A4 fix: placeholder text — meets WCAG AA contrast on white background */
input::placeholder,
textarea::placeholder {
  color: #8a96a0;
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(47,143,91,0.26);
  outline-offset: 2px;
  border-color: var(--green);
}
input.field-invalid,
select.field-invalid,
textarea.field-invalid {
  border-color: #c9302c;
  box-shadow: 0 0 0 3px rgba(201,48,44,0.1);
}

.cta {
  text-align: center;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(18,59,42,0.95), rgba(18,59,42,0.62)), var(--section-image, none);
  background-size: cover;
  background-position: center;
  padding: 2.8rem 4vw;
}
.cta h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}
.cta p {
  max-width: 680px;
  margin: 0.7rem auto 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
}
.cta-actions { justify-content: center; }

.site-footer {
  color: #fff;
  background: var(--ink);
  padding: 3.5rem 4vw 1.5rem;
}
.footer-grid {
  width: min(1180px,100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3,1fr);
  gap: 1.5rem;
}
.footer-logo {
  width: 200px;
  margin-bottom: 1.1rem;
}
.footer-logo img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.site-footer h3 {
  color: #fff;
  margin-bottom: 0.8rem;
}
.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li + li {
  margin-top: 0.25rem;
}
.footer-bottom {
  width: min(1180px,100%);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .site-nav { flex-wrap: wrap; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-links {
    flex: 0 0 100%;
    order: 5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #fff;
    padding: 0 0.7rem;
    box-shadow: none;
    transition: max-height 0.22s ease, opacity 0.18s ease, padding 0.18s ease, border-color 0.18s ease;
  }
  .nav-actions {
    flex: 0 0 100%;
    order: 4;
    display: flex;
    justify-content: stretch;
    gap: 0.55rem;
    margin-top: 0.2rem;
  }
  .nav-links a,
  .nav-parent {
    width: 100%;
    justify-content: space-between;
  }
  .nav-menu {
    position: static;
    width: 100%;
    margin: 0.2rem 0 0.65rem;
    padding: 0.2rem;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-color: rgba(220,232,223,0.75);
    background: var(--soft);
  }
  .nav-group[data-open="true"] .nav-menu { display: block; }
  .site-nav[data-open="true"] .nav-links {
    max-height: 920px;
    opacity: 1;
    pointer-events: auto;
    border-color: var(--line);
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }
  .nav-actions a { flex: 1; }
  .split,
  .split.wide,
  .funnel-grid,
  .partner-trust-grid,
  .grid-3,
  .grid-2,
  .partner-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4,
  .grid-5,
  .proof-grid,
  .trust-strip-inner,
  .partner-logo-wall,
  .partner-feature-grid,
  .partner-directory-grid,
  .partner-inquiry-grid,
  .verification-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .funnel-aside { position: relative; top: auto; }
  .audience-path-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  body { overflow-x: hidden; }
  .site-nav { min-height: 70px; padding-inline: 5vw; gap: 0.55rem; }
  .nav-logo { min-width: 132px; max-width: 132px; }
  .nav-logo img { width: 132px; height: 38px; }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  /* Keep optional header actions from crowding the mobile menu. */
  .nav-actions {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 3.4rem;
    padding-bottom: 4.2rem;
  }
  /* On mobile, hero overlay: strong centre-weighted dark overlay so text is legible */
  .hero::before {
    background: radial-gradient(
      ellipse at 50% 55%,
      rgba(7,24,17,0.92) 0%,
      rgba(7,24,17,0.82) 55%,
      rgba(7,24,17,0.65) 100%
    );
  }
  .hero .hero-inner {
    text-align: center;
    align-items: center;
  }
  .hero h1, .hero p { text-align: center; max-width: 100%; }
  .page-hero::before {
    background: linear-gradient(
      to top,
      rgba(7,24,17,0.97) 0%,
      rgba(7,24,17,0.88) 32%,
      rgba(7,24,17,0.5) 58%,
      rgba(7,24,17,0.1) 78%,
      transparent 100%
    );
  }
  .page-hero-inner {
    padding: 0 5vw 2rem;
  }
  .hero-copy {
    min-width: 0;
    width: min(100%, 340px);
    max-width: 100%;
    padding: 1.45rem 1.25rem;
  }
  .hero .eyebrow,
  .page-hero .eyebrow {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }
  .page-hero h1 { font-size: clamp(1.65rem, 7vw, 2.35rem); }
  .page-hero h1,
  .page-hero h1.hero-caption,
  .page-hero p {
    max-width: min(100%, 340px);
  }
  .hero p,
  .page-hero p {
    max-width: 100%;
    font-size: 1rem;
  }
  .hero-actions { gap: 0.65rem; }
  .hero-actions,
  .cta-actions {
    width: 100%;
  }
  .hero-actions a,
  .cta-actions a {
    flex: 1 1 100%;
    min-height: 44px;
  }
  .section { padding: 3.7rem 5vw; }
  .section-head {
    max-width: min(100%, 340px);
  }
  .top-trust-strip {
    padding: 1rem 4vw;
  }
  .top-trust-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .top-trust-item {
    width: 100%;
    padding: 0.62rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 7px;
    background: rgba(255,255,255,0.06);
    text-align: center;
  }
  .top-trust-divider { display: none; }
  .audience-path-grid { grid-template-columns: 1fr; }
  .audience-path-card { padding: 1.35rem 1.15rem; }
  .grid-4,
  .grid-5,
  .proof-grid,
  .trust-strip-inner,
  .form-grid,
  .partner-logo-wall,
  .partner-feature-grid,
  .partner-directory-grid,
  .partner-inquiry-grid,
  .verification-grid { grid-template-columns: 1fr; }
  .partner-feature-card { grid-template-columns: 1fr; }
  .partner-directory-head {
    display: block;
  }
  .partner-directory-head span {
    margin-top: 0.65rem;
  }
  .trust-item {
    border-right: 0;
    border-bottom: 0;
    margin-bottom: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
  }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .trust-item:last-child { margin-bottom: 0; }
  .mini-row,
  .pathway-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; font-size: 0.82rem; }
  .site-footer {
    padding-top: 2.7rem;
  }
  .site-footer h3 {
    margin-top: 0.35rem;
  }
  .site-footer a,
  .site-footer li,
  .site-footer p {
    font-size: 0.93rem;
  }
  .form-panel {
    padding: 1.1rem;
    box-shadow: var(--soft-shadow);
  }
  .consent-check {
    padding: 0.8rem;
  }
  .consent-check label {
    font-size: 0.9rem;
  }
  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }
  .section-head h2 { font-size: clamp(1.45rem, 5.6vw, 1.9rem); }
}

@media (min-width: 641px) and (max-width: 900px) {
  .grid-4,
  .grid-5,
  .proof-grid,
  .trust-strip-inner,
  .partner-grid,
  .partner-logo-wall,
  .partner-feature-grid,
  .partner-directory-grid,
  .partner-inquiry-grid,
  .verification-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split,
  .split.wide,
  .funnel-grid,
  .partner-trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* ── Audience intro banner ── */
.audience-intro {
  background: var(--green-dark);
  padding: 2.2rem 4vw;
  text-align: center;
}
.audience-intro-inner {
  width: min(860px, 100%);
  margin: 0 auto;
}
.audience-intro h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.audience-intro p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
}

/* ── Available landing pages strip ── */
.lp-strip {
  background: var(--soft-gold);
  border-top: 1px solid #f0d89a;
  border-bottom: 1px solid #f0d89a;
  padding: 2.8rem 4vw;
}
.lp-strip-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.lp-strip-head {
  margin-bottom: 1.5rem;
}
.lp-strip-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--green-dark);
  margin-top: 0.5rem;
}
.lp-strip-head p { color: var(--muted); font-size: 0.97rem; margin-top: 0.5rem; }
.lp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.lp-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid #f0d89a;
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(242,180,71,0.1);
  text-decoration: none;
  transition: box-shadow .15s, transform .15s;
}
.lp-card:hover { box-shadow: 0 8px 28px rgba(242,180,71,0.22); transform: translateY(-2px); }
.lp-card-icon { font-size: 1.7rem; }
.lp-card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
}
.lp-card h3 { font-size: 1.05rem; color: var(--ink); font-weight: 800; margin: 0; }
.lp-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; margin: 0; }
.lp-card-cta { margin-top: auto; font-size: 0.85rem; font-weight: 800; color: var(--green); }

/* ── Privacy link in footer more visible ── */
.footer-bottom a { color: rgba(255,255,255,0.72) !important; font-weight: 700; }
.footer-bottom a:hover { color: #fff !important; }

@media (max-width: 640px) {
  .lp-cards { grid-template-columns: 1fr; }
  .audience-intro h2 { font-size: 1.5rem; }
}

/* ── Data consent checkbox ── */
.consent-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  margin-top: 0.25rem;
  cursor: pointer;
}
.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.consent-check label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  cursor: pointer;
}
.consent-check label a { color: var(--green); font-weight: 700; }

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 98px;
  z-index: 9997;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18,25,31,0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 12px 28px rgba(18,25,31,0.16);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .back-to-top {
    right: 18px;
    bottom: 82px;
  }
}

/* ── Team placeholder cards ── */
.team-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  flex-shrink: 0;
}
.team-placeholder h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-placeholder span { color: var(--green); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.team-placeholder p { font-size: 0.88rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.55; }

/* ── Cookie consent banner ── */
/* ── Cookie Banner ─────────────────────────────────────
   Slim bar at bottom. Mobile: single compact line with × dismiss.
   JS: accept sets localStorage cmh_cookie_ok = '1'
────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 4vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.15);
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.cookie-banner.hidden { transform: translateY(110%); pointer-events: none; }
.cookie-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
  flex: 1;
}
.cookie-banner a { color: var(--gold); font-weight: 700; }
.cookie-banner-actions { display: flex; gap: 0.5rem; flex-shrink: 0; align-items: center; }
.cookie-accept {
  padding: 0.38rem 1rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 5px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.cookie-accept:hover { background: #257b4d; }
.cookie-dismiss {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: color .15s, border-color .15s;
}
.cookie-dismiss:hover { color: #fff; border-color: rgba(255,255,255,0.45); }
@media (max-width: 640px) {
  .cookie-banner {
    padding: 0.55rem 4vw;
    gap: 0.6rem;
  }
  .cookie-banner p {
    font-size: 0.75rem;
    line-height: 1.35;
  }
  .cookie-accept {
    padding: 0.32rem 0.75rem;
    font-size: 0.78rem;
  }
}

/* ─────────────────────────────────────────
   UTILITY CLASSES
   Common patterns extracted from inline styles
   Add these class names to elements instead of
   writing inline style="" attributes.
───────────────────────────────────────── */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.75rem !important; }
.mt-2 { margin-top: 1.5rem !important; }
.mt-3 { margin-top: 2rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.75rem !important; }
.mb-2 { margin-bottom: 1.5rem !important; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.text-muted-light { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.max-860 { max-width: 860px; margin-left: auto; margin-right: auto; }
.max-640 { max-width: 640px; margin-left: auto; margin-right: auto; }
.max-480 { max-width: 480px; margin-left: auto; margin-right: auto; }
.font-sm { font-size: 0.88rem; }
.font-xs { font-size: 0.82rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 800; }
.color-green { color: var(--green); }
.color-white { color: #fff; }

/* ─────────────────────────────────────────
   COMPONENT: Inline figure (content images)
   Applies to: .inline-figure
   Used in long-content pages (career guidance,
   study abroad, equivalence risk) to break up
   text with relevant imagery
───────────────────────────────────────── */
.inline-figure {
  margin: 2.25rem 0;
  border-radius: 10px;
  overflow: hidden;
  max-height: 340px;
  line-height: 0;
}
.inline-figure img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .inline-figure img {
    height: 200px;
  }
}

/* ─────────────────────────────────────────
   COMPONENT: Privacy footer link
   Ensures privacy link is always visible on mobile
───────────────────────────────────────── */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}
.footer-privacy-link {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.footer-privacy-link:hover { color: var(--green); }

/* ─────────────────────────────────────────
   NAV ENHANCEMENTS
   .btn-nav-cta   — "Book Consultation" green CTA pill in nav
   .nav-home      — Home link, slightly muted
   .nav-cta       — wrapping <li> for the CTA
───────────────────────────────────────── */
.nav-cta { display: flex; align-items: center; }
.btn-nav-cta {
  display: inline-block;
  padding: 0.38rem 1rem;
  background: var(--green);
  color: #fff !important;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .1s;
  line-height: 1.4;
}
.btn-nav-cta:hover {
  background: #1e7a42;
  transform: translateY(-1px);
}
.nav-home {
  font-weight: 600;
  color: var(--muted) !important;
  font-size: 0.9rem;
}
.nav-home:hover { color: var(--ink) !important; }

/* Mobile: CTA button shows on mobile nav too */
@media (max-width: 860px) {
  .btn-nav-cta {
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
}
