/* ============================================================
   Track it Forward — recreation stylesheet
   Hand-authored, self-contained (no build step required)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --green-900: #0f3d24;
  --green-800: #14532d;
  --green-700: #15803d;
  --green-600: #17a34a;
  --green-500: #22b85a;
  --lime-500: #7ac943;
  --lime-400: #96db5e;

  --ink: #14231a;
  --body: #47584d;
  --muted: #7c8a80;

  --cream: #faf8f2;
  --cream-2: #f2ede0;
  --tan: #efe7d6;
  --card: #ffffff;
  --line: #e7e0d0;

  --shadow-sm: 0 2px 8px rgba(20, 53, 32, .06);
  --shadow-md: 0 14px 34px rgba(20, 53, 32, .10);
  --shadow-lg: 0 30px 60px rgba(20, 53, 32, .16);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1200px;

  --font: "Instrument Sans", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }
button { font-family: inherit; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-tan { background: var(--cream-2); }
.bg-deep {
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(122,201,67,.20), transparent 55%),
    linear-gradient(160deg, var(--green-900), var(--green-800) 60%, #0c3320);
  color: #dcefe0;
}
.bg-deep h1, .bg-deep h2, .bg-deep h3, .bg-deep h4 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime-500); border-radius: 2px; }
.bg-deep .eyebrow { color: var(--lime-400); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--body); }
.bg-deep .section-head p { color: #bcdcc4; }

/* ---------- Buttons ---------- */
.btn {
  --btnbg: var(--green-600);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 16px;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff; box-shadow: 0 12px 26px rgba(23,163,74,.34);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(23,163,74,.44); }
.btn--ghost { background: rgba(255,255,255,.7); color: var(--green-800); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background:#fff; }
.btn--ondark { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.28); }
.btn--ondark:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.btn--white { background:#fff; color: var(--green-800); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn-note { font-size: 14px; color: var(--muted); margin-top: 14px; }
.bg-deep .btn-note { color: #a9cbb2; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(150%) blur(12px);
  background: rgba(250,248,242,.82);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(250,248,242,.94); }
.nav__inner { display: flex; align-items: center; gap: 20px; height: 74px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; flex: 0 0 auto; }
.brand__mark { width: 36px; height: 36px; flex: 0 0 36px; }
.brand__tree { width: 40px; height: auto; flex: 0 0 40px; }
.brand__word { height: 26px; width: auto; display: block; }
.brand--footer { font-size: 20px; }
.brand--footer .brand__tree { width: 44px; flex-basis: 44px; }
.brand b { color: var(--green-700); }

/* Desktop nav links; hidden mobile panel by default */
.nav__panel { display: none; }
.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; flex: 0 1 auto; }
.nav__links a {
  padding: 9px 11px; border-radius: 10px; font-weight: 600; font-size: 14.5px; color: #33453a;
  white-space: nowrap; transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--green-700); background: rgba(23,163,74,.08); }
.nav__links a.active { color: var(--green-700); }
.nav__cta { display: flex; align-items: center; gap: 8px; margin-left: 8px; flex: 0 0 auto; }
.nav__cta .btn { padding: 11px 18px; font-size: 14.5px; white-space: nowrap; }
.nav__signin { font-weight: 700; color: var(--green-800); padding: 11px 12px; white-space: nowrap; }

.nav__toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background:#fff; cursor: pointer; position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transform: translate(-50%,-50%); transition: .25s var(--ease);
}
.nav__toggle span::before { transform: translate(-50%,-8px); }
.nav__toggle span::after  { transform: translate(-50%, 6px); }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { transform: translate(-50%,0) rotate(45deg); }
.nav.open .nav__toggle span::after  { transform: translate(-50%,0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 88px 0 96px; background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .5; z-index: 0; }
.hero__blob--1 { width: 520px; height: 520px; top: -180px; right: -120px; background: radial-gradient(circle at 30% 30%, rgba(122,201,67,.55), transparent 70%); }
.hero__blob--2 { width: 460px; height: 460px; bottom: -220px; left: -160px; background: radial-gradient(circle at 30% 30%, rgba(23,163,74,.30), transparent 70%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); letter-spacing: -.03em; }
.hero h1 .accent { background: linear-gradient(120deg, var(--green-600), var(--lime-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 20px; margin-top: 22px; max-width: 560px; color: #40514600; color: var(--body); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; align-items: center; }
.hero__trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 14px; }
.hero__avatars { display: flex; }
.hero__avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--cream); margin-left: -10px; background-size: cover; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px; }

/* Hero visual: floating app-like cards */
.hero__visual { position: relative; height: 460px; }
.floaty { position: absolute; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.floaty--main { inset: 20px 0 20px 20px; padding: 22px; display: flex; flex-direction: column; }
.floaty--main .bar { height: 10px; border-radius: 6px; background: var(--cream-2); }
.mini-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.mini-dot { width: 11px; height: 11px; border-radius: 50%; background: #e4dcc9; }
.mini-dot.g { background: var(--green-500); }
.log-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.log-row:last-child { border-bottom: 0; }
.log-ic { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, rgba(122,201,67,.25), rgba(23,163,74,.18)); display: grid; place-items: center; color: var(--green-700); flex: 0 0 40px; }
.log-ic svg { width: 20px; height: 20px; }
.log-row .t1 { font-weight: 700; color: var(--ink); font-size: 15px; }
.log-row .t2 { font-size: 13px; color: var(--muted); }
.log-row .hrs { margin-left: auto; font-weight: 800; color: var(--green-700); }
.floaty--stat { right: -14px; top: 40px; width: 190px; padding: 18px; text-align: left; animation: floaty 6s var(--ease) infinite; }
.floaty--badge { left: -18px; bottom: 40px; padding: 14px 18px; display: flex; gap: 12px; align-items: center; animation: floaty 7s var(--ease) infinite .6s; }
.floaty--stat .n { font-size: 30px; font-weight: 800; color: var(--green-700); letter-spacing: -.02em; }
.floaty--stat .l { font-size: 13px; color: var(--muted); }
.floaty--badge .ring { width: 40px; height: 40px; border-radius: 50%; background: conic-gradient(var(--green-500) 78%, #e7e0d0 0); display: grid; place-items: center; }
.floaty--badge .ring::after { content:""; width: 28px; height: 28px; border-radius: 50%; background: #fff; }
.floaty--badge .ring b { position: absolute; font-size: 12px; color: var(--green-700); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Logos strip ---------- */
.logos { padding: 40px 0 8px; text-align: center; }
.logos p { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 22px; }
.logos__row { display: flex; flex-wrap: wrap; gap: 18px 44px; justify-content: center; align-items: center; opacity: .8; }
.logos__row span { font-weight: 800; font-size: 19px; color: #9aa79d; letter-spacing: -.01em; }
@media (max-width: 860px) {
  .logos { padding: 30px 0 40px; }
  .logos p { font-size: 12px; margin-bottom: 18px; }
  .logos__row { gap: 10px 12px; opacity: 1; }
  .logos__row span {
    font-size: 14px; font-weight: 700; color: #6f7d72;
    background: var(--card); border: 1px solid var(--line);
    padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow-sm);
  }
}

/* ---------- Stat band ---------- */
.statband { text-align: center; }
.statband .big { font-size: clamp(46px, 8vw, 84px); font-weight: 800; letter-spacing: -.03em; line-height: 1; background: linear-gradient(120deg,#fff, var(--lime-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.statband p { font-size: 19px; margin-top: 14px; color: #cfe7d5; }
.statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 54px; }
.statgrid .cell { text-align: center; }
.statgrid .cell .n { font-size: 34px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.statgrid .cell .l { font-size: 14px; color: #a9cbb2; margin-top: 6px; }

/* ---------- Value cards (3 up) ---------- */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.vcard__ic { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(122,201,67,.22), rgba(23,163,74,.16)); color: var(--green-700); }
.vcard__ic svg { width: 30px; height: 30px; }
.vcard h3 { font-size: 22px; margin-bottom: 10px; }
.vcard p { font-size: 15.5px; }

/* ---------- Feature alternating rows ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.frow + .frow { margin-top: 92px; }
.frow--rev .frow__media { order: 2; }
.frow__text h3 { font-size: clamp(26px, 3.4vw, 36px); }
.frow__text p.sub { margin-top: 14px; font-size: 17px; }
.flist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.flist li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.flist .tick { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--green-500), var(--green-700)); display: grid; place-items: center; margin-top: 1px; }
.flist .tick svg { width: 14px; height: 14px; color: #fff; }
.frow__link { margin-top: 26px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green-700); }
.frow__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.frow__link:hover svg { transform: translateX(5px); }

/* media mock panel */
.mock { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.mock__top { display: flex; align-items: center; gap: 7px; padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--cream); }
.mock__top i { width: 11px; height: 11px; border-radius: 50%; background: #e0d8c6; display: block; }
.mock__top i:nth-child(1){ background:#ff6b6b52;} .mock__top i:nth-child(2){ background:#ffd16b63;} .mock__top i:nth-child(3){ background:#7ac9435e;}
.mock__body { padding: 24px; }
.mock__row { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 12px; }
.mock__row + .mock__row { margin-top: 8px; }
.mock__row.alt { background: var(--cream); }
.mock__av { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg,var(--green-500),var(--lime-500)); color:#fff; display:grid; place-items:center; font-weight:800; flex:0 0 38px; }
.mock__yr { min-width: 60px; height: 36px; padding: 0 12px; border-radius: 999px; background: linear-gradient(135deg,var(--green-600),var(--lime-500)); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; letter-spacing:.01em; flex:0 0 auto; }
.mock__row .l1 { font-weight: 700; color: var(--ink); font-size: 14.5px; }
.mock__row .l2 { font-size: 12.5px; color: var(--muted); }
.mock__row .pill { margin-left: auto; font-weight: 800; font-size: 13px; color: var(--green-700); background: rgba(23,163,74,.1); padding: 5px 11px; border-radius: 999px; }
.mock__bars { display: flex; align-items: flex-end; gap: 12px; height: 150px; padding: 10px 4px 0; }
.mock__bars .b { flex: 1; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--lime-500), var(--green-600)); opacity: .9; }
.progress { height: 10px; background: var(--cream-2); border-radius: 999px; overflow: hidden; margin-top: 6px; }
.progress > i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--lime-500), var(--green-600)); }

/* ---------- Tabs (features overview) ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.tabs a { padding: 11px 20px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 700; color: #3a4b40; font-size: 15px; transition: .2s; }
.tabs a:hover { border-color: var(--green-500); color: var(--green-700); transform: translateY(-2px); }

/* ---------- Testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tcard .stars { color: #f4b740; letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.tcard p { font-size: 16px; color: #34443a; }
.tcard .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.tcard .who .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--green-600),var(--lime-500)); color:#fff; display:grid; place-items:center; font-weight:800; }
.tcard .who .nm { font-weight: 800; color: var(--ink); font-size: 15px; }
.tcard .who .org { font-size: 13px; color: var(--muted); }
.tcard mark { background: linear-gradient(180deg, transparent 62%, rgba(122,201,67,.45) 0); color: inherit; padding: 0 2px; font-weight: 600; }

/* ---------- Pricing ---------- */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.plan--featured { border-color: var(--green-500); box-shadow: var(--shadow-md); background: linear-gradient(180deg, #d6e7c4, #c7dcb0); }
.plan--featured h3 { color: #14431f; }
.plan h3 { font-size: 21px; }
.plan .desc { font-size: 14.5px; color: var(--muted); margin-top: 6px; min-height: 44px; }
.plan .price { margin: 20px 0 4px; display: flex; align-items: flex-end; gap: 6px; }
.plan .price .amt { font-size: 48px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.plan .price .per { color: var(--muted); font-weight: 600; padding-bottom: 8px; }
.plan .basis { font-size: 13.5px; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: #38493e; }
.plan ul .tick { flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%; background: rgba(23,163,74,.14); display: grid; place-items: center; margin-top: 3px; }
.plan ul .tick svg { width: 11px; height: 11px; color: var(--green-700); }
.plan .btn { width: 100%; margin-top: auto; }
.pricing-toggle { display:flex; justify-content:center; align-items:center; gap:14px; margin-bottom: 40px; font-weight:700; color: var(--ink); }
.pricing-toggle .save { background: rgba(23,163,74,.12); color: var(--green-700); font-size: 12.5px; padding: 4px 10px; border-radius: 999px; font-weight: 800; }

/* ---------- Price calculator ---------- */
.calc { text-align: center; max-width: 640px; margin: 0 auto 8px; }
.calc h2 { color: var(--green-700); font-size: clamp(26px, 3.6vw, 34px); }
.calc__q { font-size: 18px; color: var(--body); margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; }
.calc__q .info { width: 18px; height: 18px; border-radius: 50%; background: var(--green-700); color:#fff; font-size: 12px; font-weight: 800; display: grid; place-items: center; cursor: help; }
.calc__count { font-size: 30px; font-weight: 800; color: var(--ink); margin: 18px 0 14px; letter-spacing: -.02em; }
.calc__count span { color: var(--ink); }
.calc__slider { -webkit-appearance: none; appearance: none; width: 100%; max-width: 420px; height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--green-600) 0%, var(--green-600) var(--fill,20%), #e6e0d0 var(--fill,20%), #e6e0d0 100%); outline: none; cursor: pointer; }
.calc__slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green-800); border: 3px solid #fff; box-shadow: 0 3px 8px rgba(15,61,36,.35); cursor: pointer; }
.calc__slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--green-800); border: 3px solid #fff; box-shadow: 0 3px 8px rgba(15,61,36,.35); cursor: pointer; }
.calc__toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 22px; font-weight: 700; color: var(--ink); font-size: 15.5px; }
.calc__toggle .save { color: var(--green-700); font-size: 13px; font-weight: 800; }
.switch { position: relative; display: inline-block; width: 54px; height: 28px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__track { position: absolute; inset: 0; background: var(--green-600); border-radius: 999px; transition: .25s; }
.switch__knob { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: .25s; box-shadow: 0 2px 5px rgba(0,0,0,.25); }
.switch input:checked ~ .switch__knob { transform: translateX(26px); }
.calc__demo { display: inline-block; margin-top: 16px; font-weight: 700; color: #2a70e0; }
.calc__demo:hover { text-decoration: underline; }
.calc__popular { text-align: center; font-weight: 800; letter-spacing: .1em; color: var(--green-700); font-size: 14px; margin: 44px 0 -2px; }

/* pricing plan plant images + calculator cards */
.plan__art { height: 120px; display: grid; place-items: center; margin: 8px 0 10px; }
.plan__art img { max-height: 120px; width: auto; }
.plan--calc { text-align: center; }
.plan--calc .price { justify-content: center; margin: 6px 0 4px; min-height: 52px; align-items: center; }
.plan--calc .price .amt { font-size: 30px; }
.plan--calc .price .amt.contact { font-size: 23px; color: #2a70e0; }
.plan--calc .basis { font-style: italic; min-height: 20px; }
.plan--calc .btn { width: 100%; margin-top: 18px; }
.plan--calc .ncc { font-size: 13px; color: var(--muted); font-style: italic; margin-top: 12px; }
.plan__feat { text-align: left; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.plan--featured .plan__feat { border-top-color: rgba(20,67,31,.18); }
.plan__feat h5 { font-size: 13.5px; color: var(--ink); margin-bottom: 13px; font-weight: 800; }
.plan__feat ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.plan__feat li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: #38493e; }
.plan__feat .tick { flex: 0 0 19px; width: 19px; height: 19px; border-radius: 50%; background: rgba(23,163,74,.16); display: grid; place-items: center; margin-top: 2px; }
.plan__feat .tick svg { width: 11px; height: 11px; color: var(--green-700); }

/* ---------- Who it's for ---------- */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.aud { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.aud:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.aud__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(122,201,67,.2), rgba(23,163,74,.14)); color: var(--green-700); margin-bottom: 16px; }
.aud__ic svg { width: 26px; height: 26px; }
.aud h3 { font-size: 18px; margin-bottom: 8px; }
.aud p { font-size: 14.5px; }

/* ---------- Steps / How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; }
.step__n { counter-increment: step; width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg,var(--green-500),var(--green-700)); color:#fff; font-weight:800; font-size:20px; display:grid; place-items:center; margin-bottom: 18px; }
.step__n::after { content: counter(step); }
.step h3 { font-size: 20px; margin-bottom: 8px; }

/* ---------- CTA band ---------- */
.ctaband { text-align: center; }
.ctaband h2 { font-size: clamp(30px, 4.4vw, 48px); max-width: 760px; margin: 0 auto; }
.ctaband p { font-size: 18px; margin-top: 16px; color: #cfe7d5; }
.ctaband .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ---------- Contact / forms ---------- */
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; color: var(--ink); font-size: 14.5px; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  font-family: inherit; font-size: 15.5px; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(23,163,74,.14); }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.contact-info { display: grid; gap: 22px; }
.contact-info .item { display: flex; gap: 16px; }
.contact-info .item .ic { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, rgba(122,201,67,.2), rgba(23,163,74,.14)); color: var(--green-700); display: grid; place-items: center; }
.contact-info .item .ic svg { width: 22px; height: 22px; }
.contact-info h4 { font-size: 16px; margin-bottom: 3px; }
.contact-info p { font-size: 15px; }

/* ---------- Page hero (inner pages) ---------- */
.phero { padding: 70px 0 56px; text-align: center; background: linear-gradient(180deg, var(--cream), var(--cream-2)); position: relative; overflow: hidden; }
.phero h1 { font-size: clamp(34px, 5vw, 54px); }
.phero p { font-size: 19px; margin: 18px auto 0; max-width: 660px; }
.phero__deco { position: absolute; right: 6%; bottom: -18px; opacity: .9; z-index: 0; pointer-events: none; }
@media (max-width: 860px){ .phero__deco { display: none; } }

/* ---------- Feature grid (grouped by plan) ---------- */
.tier-head { display: flex; align-items: center; gap: 14px; margin: 0 0 26px; }
.tier-head h3 { font-size: 22px; white-space: nowrap; }
.tier-head .tag { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--green-700); background: rgba(23,163,74,.1); padding: 5px 12px; border-radius: 999px; }
.tier-head .rule { flex: 1; height: 1px; background: var(--line); }
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fcard__ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; background: linear-gradient(135deg, rgba(122,201,67,.2), rgba(23,163,74,.14)); color: var(--green-700); }
.fcard__ic svg { width: 25px; height: 25px; }
.fcard h4 { font-size: 17.5px; margin-bottom: 8px; }
.fcard p { font-size: 14.5px; color: var(--body); }
.fcard .badge { display: inline-block; margin-top: 12px; font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px){ .fgrid { grid-template-columns: 1fr; } .tier-head h3 { white-space: normal; } }
@media (max-width: 1024px){ .fgrid { grid-template-columns: 1fr 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 24px; font-weight: 700; font-size: 17px; color: var(--ink); cursor: pointer; display: flex; align-items: center; gap: 14px; }
.faq__q .pm { margin-left: auto; flex: 0 0 24px; width: 24px; height: 24px; position: relative; transition: transform .3s var(--ease); }
.faq__q .pm::before, .faq__q .pm::after { content:""; position:absolute; inset: 0; margin: auto; background: var(--green-700); border-radius: 2px; }
.faq__q .pm::before { width: 14px; height: 2px; }
.faq__q .pm::after { width: 2px; height: 14px; transition: transform .3s var(--ease); }
.faq__item.open .pm::after { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 24px 22px; font-size: 15.5px; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member { text-align: center; }
.member .ph { aspect-ratio: 1; border-radius: 20px; background: linear-gradient(135deg, rgba(23,163,74,.9), rgba(122,201,67,.9)); display: grid; place-items: center; color: #fff; font-size: 40px; font-weight: 800; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.member h4 { font-size: 17px; }
.member p { font-size: 14px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, #0c3320, #082416); color: #a9cbb2; padding: 72px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 34px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer p.blurb { font-size: 14.5px; color: #8fb298; max-width: 260px; }
.footer h5 { color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: .01em; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: #9cbca4; transition: color .2s; }
.footer ul a:hover { color: var(--lime-400); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe7d5; transition: .2s; }
.footer__social a:hover { background: var(--green-600); color:#fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bar { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #7fa389; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .floaty--stat, .floaty--badge { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { height: 400px; max-width: 520px; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brandcol { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__panel { display: flex; }
  .nav__panel { display: none; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; gap: 4px; padding: 16px 24px 24px; background: rgba(250,248,242,.98); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
  .nav__panel a { padding: 13px 12px; border-radius: 12px; font-weight: 700; font-size: 16px; color: #23342a; }
  .nav__panel a:hover { background: rgba(23,163,74,.08); color: var(--green-700); }
  .nav__panel .btn { margin-top: 8px; }
  .cards3, .tgrid, .pgrid, .steps { grid-template-columns: 1fr; }
  .frow, .frow--rev .frow__media { grid-template-columns: 1fr; order: 0; }
  .frow__media { order: -1 !important; }
  .frow + .frow { margin-top: 56px; }
  .formgrid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 70px 0; }
}
@media (max-width: 560px) {
  .statgrid, .audience, .team { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__cta .btn { width: 100%; }
  .wrap { padding-inline: 18px; }
}
