/* ═══════════════════════════════════════════
   CARBON UNITY — SHARED STYLESHEET
   Used by: index.html, tools.html
═══════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --green:      #2d5a3d;
  --green2:     #3a6b4a;
  --amber:      #c8941a;
  --cream:      #f5f2eb;
  --sage:       #e8e5dc;
  --white:      #ffffff;
  --text:       #1a2e1f;
  --text2:      #4a5a4e;
  --text3:      #7a8a7e;
  --border:     rgba(45,90,61,0.15);
  --red:        #c0392b;
  --orange:     #e67e22;
  --pass:       #27ae60;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--text); line-height: 1.6; }
.hidden { display: none !important; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer; }
.nav-logo-icon { width: 34px; height: 34px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; }
.nav-logo-text strong { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.1; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 14px; color: var(--text2); text-decoration: none; font-weight: 500; cursor: pointer; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-outline { padding: 8px 18px; border-radius: 8px; border: 1.5px solid var(--green); background: transparent; color: var(--green); font-family: var(--font-sans); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-solid { padding: 8px 18px; border-radius: 8px; border: none; background: var(--green); color: var(--white); font-family: var(--font-sans); font-size: 13px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: background .2s; }
.btn-solid:hover { background: var(--green2); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 2px; user-select: none; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-6px); background: var(--white); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: 8px; min-width: 220px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; z-index: 200; }
.nav-dropdown-menu.open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--text2); cursor: pointer; text-decoration: none; transition: background .15s, color .15s; white-space: nowrap; }
.nav-dropdown-item:hover { background: var(--sage); color: var(--green); }
.nav-dropdown-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-dropdown-item--disabled { opacity: .55; cursor: default; pointer-events: none; }
.coming-soon-badge { margin-left: auto; font-size: 10px; font-weight: 600; background: #fef3d8; color: #a07010; padding: 2px 7px; border-radius: 99px; }

/* ── SECTION CHROME ── */
.section-label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.6rem,3.5vw,2.2rem); font-weight: 700; color: var(--text); margin-bottom: 14px; }
.section-sub { font-size: 15px; color: var(--text2); max-width: 560px; margin: 0 auto 50px; line-height: 1.7; }

/* ── CARD ── */
.card { background: var(--white); border-radius: 14px; padding: 28px 24px; text-align: left; border: 1px solid var(--border); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.icon-green { background: var(--green); }
.icon-amber { background: var(--amber); }
.card-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; }
.step-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }
.badge-green { background: #e8f2ec; color: var(--green); }
.badge-amber { background: #fef3d8; color: #a07010; }
.card h3 { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--sage); border-top: 1px solid var(--border); padding: 50px 2.5rem 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto 40px; }
.footer-brand p { font-size: 12px; color: var(--text3); line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h5 { font-size: 12px; font-weight: 600; color: var(--text2); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text2); text-decoration: none; margin-bottom: 10px; cursor: pointer; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-col a svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer-bottom { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text3); flex-wrap: wrap; gap: 8px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-box { background: var(--white); border-radius: 16px; padding: 40px 36px; width: 100%; max-width: 460px; text-align: center; position: relative; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text3); line-height: 1; }
.modal-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.modal-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--text2); stroke-width: 2; }
.modal-box h2 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.modal-box p { font-size: 14px; color: var(--text2); margin-bottom: 20px; line-height: 1.6; }
.token-label { display: block; text-align: left; font-size: 13px; font-weight: 500; color: var(--text2); margin-bottom: 8px; }
.token-input { width: 100%; padding: 11px 14px; border-radius: 8px; border: 1px solid var(--border); background: var(--sage); font-family: var(--font-sans); font-size: 14px; color: var(--text2); margin-bottom: 8px; outline: none; transition: border-color .2s; }
.token-input:focus { border-color: var(--green); background: var(--white); }
.token-error { font-size: 12px; color: var(--red); min-height: 18px; margin-bottom: 10px; text-align: left; }
.btn-resume-full { width: 100%; padding: 13px; background: var(--green); color: var(--white); border: none; border-radius: 8px; font-family: var(--font-sans); font-size: 15px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .2s; }
.btn-resume-full:hover { background: var(--green2); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--text); color: #fff; padding: 10px 20px; border-radius: 99px; font-size: 13px; z-index: 300; opacity: 0; transition: opacity .3s; pointer-events: none; }
.toast.show { opacity: 1; }

/* ── TOKEN BANNER ── */
.token-banner { background: var(--sage); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.token-banner-text { flex: 1; min-width: 0; }
.token-banner-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text3); margin-bottom: 2px; }
.token-banner-code { font-family: monospace; font-size: 14px; font-weight: 600; color: var(--text); word-break: break-all; }
.btn-copy { padding: 6px 12px; border-radius: 6px; border: 1.5px solid var(--border); background: var(--white); font-family: var(--font-sans); font-size: 12px; font-weight: 500; cursor: pointer; color: var(--text2); transition: all .2s; white-space: nowrap; }
.btn-copy:hover { border-color: var(--green); color: var(--green); }

/* ── PROGRESS BAR ── */
.progress-bar-wrap { background: var(--sage); padding: 14px 2rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 16px; }
.progress-label { font-size: 13px; color: var(--text2); white-space: nowrap; }
.progress-track { flex: 1; height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 99px; transition: width .4s ease; }
.progress-pct { font-size: 13px; font-weight: 600; color: var(--green); white-space: nowrap; }

/* ── ASSESSMENT ── */
.main-wrap { max-width: 860px; margin: 0 auto; padding: 40px 2rem 80px; }
.section-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; padding: 5px 14px; border-radius: 99px; font-size: 12px; font-weight: 600; letter-spacing: .04em; margin-bottom: 16px; }
.section-title-asm { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.section-sub-asm { font-size: 14px; color: var(--text3); margin-bottom: 32px; }
.section-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; }
.tab { padding: 6px 14px; border-radius: 99px; font-size: 12px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--border); background: var(--white); color: var(--text2); transition: all .2s; }
.tab.active { background: var(--green); border-color: var(--green); color: #fff; }
.tab.done { border-color: var(--pass); color: var(--pass); }
.tab.has-fail { border-color: var(--red); color: var(--red); }
.q-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px 26px; margin-bottom: 16px; transition: border-color .2s; }
.q-card:focus-within { border-color: var(--green); }
.q-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.q-id { font-size: 11px; font-weight: 600; color: var(--text3); background: var(--sage); padding: 3px 8px; border-radius: 5px; white-space: nowrap; margin-top: 2px; }
.q-registry { font-size: 11px; padding: 3px 8px; border-radius: 5px; white-space: nowrap; margin-top: 2px; font-weight: 600; }
.reg-both { background: #e8f2ec; color: var(--green); }
.reg-verra { background: #e6f0fb; color: #1a5c9e; }
.reg-puro { background: #fef3d8; color: #a07010; }
.q-text { font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.5; flex: 1; }
.q-note { font-size: 12px; color: var(--text3); margin-bottom: 12px; font-style: italic; padding: 8px 12px; background: var(--sage); border-radius: 6px; }
select, input[type=number] { width: 100%; padding: 10px 14px; border-radius: 8px; border: 1.5px solid var(--border); font-family: var(--font-sans); font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color .2s; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a8a7e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
input[type=number] { background-image: none; padding-right: 14px; }
select:focus, input[type=number]:focus { border-color: var(--green); }
.q-status { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 99px; margin-left: 6px; }
.status-eligible { background: #e8f7ef; color: #1e7a46; }
.status-ineligible { background: #fdecea; color: #c0392b; }
.status-maybe { background: #fff8e6; color: #a07010; }
.nav-btns { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.btn-nav { padding: 11px 24px; border-radius: 9px; font-family: var(--font-sans); font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s; }
.btn-prev { background: var(--white); border: 1.5px solid var(--border); color: var(--text2); }
.btn-prev:hover { border-color: var(--green); color: var(--green); }
.btn-next { background: var(--green); border: none; color: #fff; display: flex; align-items: center; gap: 8px; }
.btn-next:hover { background: var(--green2); }
.btn-next svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ── RESULTS ── */
.result-hero { text-align: center; padding: 48px 0 36px; }
.result-hero h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.verdict-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; text-align: center; }
.v-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.v-result { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.v-score { font-size: 13px; color: var(--text3); }
.v-eligible .v-result { color: var(--pass); }
.v-ineligible .v-result { color: var(--red); }
.v-maybe .v-result { color: var(--orange); }
.verdict-eligible { border-top: 4px solid var(--pass); }
.verdict-ineligible { border-top: 4px solid var(--red); }
.verdict-maybe { border-top: 4px solid var(--orange); }
.cat-breakdown { margin-bottom: 28px; }
.cat-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.cat-name { flex: 1; font-size: 14px; font-weight: 500; }
.cat-bar-wrap { width: 160px; height: 8px; background: var(--sage); border-radius: 99px; overflow: hidden; }
.cat-bar { height: 100%; border-radius: 99px; background: var(--green); }
.cat-pct { font-size: 12px; color: var(--text3); width: 36px; text-align: right; }
.flag-section { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; margin-bottom: 16px; }
.flag-section h3 { font-size: 15px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.flag-item { font-size: 13px; color: var(--text2); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; }
.flag-item:last-child { border-bottom: none; }
.flag-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.dot-red { background: var(--red); }
.dot-amber { background: var(--orange); }

/* ── HOME HERO ── */
.hero { background: var(--cream); padding: 80px 2rem; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--white); padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; margin-bottom: 28px; }
.hero-badge svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(2rem,5vw,3rem); font-weight: 800; color: var(--text); max-width: 700px; margin: 0 auto 20px; line-height: 1.15; }
.hero p { font-size: 16px; color: var(--text2); max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-btn-primary { padding: 13px 26px; background: var(--green); color: var(--white); border: none; border-radius: 10px; font-family: var(--font-sans); font-size: 15px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: background .2s; }
.hero-btn-primary:hover { background: var(--green2); }
.hero-btn-secondary { padding: 13px 26px; background: var(--white); color: var(--text); border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font-sans); font-size: 15px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all .2s; }
.hero-btn-secondary:hover { border-color: var(--green); }
.hero-legend { display: flex; justify-content: center; align-items: center; gap: 20px; font-size: 13px; color: var(--text2); flex-wrap: wrap; }
.legend-item { display: inline-flex; align-items: center; gap: 5px; }
.section-hiw { background: var(--sage); padding: 80px 2rem; text-align: center; border-top: 1px solid var(--border); }
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.section-cats { background: var(--sage); padding: 70px 2rem; text-align: center; border-top: 1px solid var(--border); }
.cards-9 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
.section-values { background: var(--cream); padding: 30px 2rem 80px; border-top: 1px solid var(--border); }
.values-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.values-title { font-family: var(--font-serif); font-size: clamp(1.6rem,3.5vw,2.2rem); font-weight: 700; text-align: center; color: var(--text); margin-bottom: 50px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 28px; max-width: 1000px; margin: 0 auto; }
.value-item h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.value-item p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.value-icon { width: 36px; height: 36px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 2; }
.section-cta { background: var(--green); padding: 70px 2rem; text-align: center; }
.section-cta h2 { font-family: var(--font-serif); font-size: clamp(1.7rem,4vw,2.4rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.section-cta p { font-size: 15px; color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.cta-btn { padding: 14px 30px; background: var(--white); color: var(--green); border: none; border-radius: 10px; font-family: var(--font-sans); font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: opacity .2s; }
.cta-btn:hover { opacity: .9; }

/* ── QUANTIFICATION CHART (home page) ── */
.section-quant { background: var(--cream); padding: 70px 2rem; border-top: 1px solid var(--border); }
.quant-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto; align-items: center; }
.quant-coming-soon { display: inline-flex; align-items: center; gap: 7px; background: #fef3d8; color: #a07010; font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 99px; margin-top: 4px; }
.quant-chart-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.quant-chart-title { font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 16px; }
.quant-chart { position: relative; padding-left: 36px; padding-bottom: 28px; }
.chart-y-label { position: absolute; left: 0; top: 50%; transform: translateY(-50%) rotate(-90deg); font-size: 11px; color: var(--text3); white-space: nowrap; letter-spacing: .06em; text-transform: uppercase; }
.chart-x-label { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); font-size: 11px; color: var(--text3); letter-spacing: .06em; text-transform: uppercase; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 160px; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0 8px; }
.chart-bar-group { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.chart-bar { width: 100%; background: var(--green); border-radius: 4px 4px 0 0; position: relative; min-height: 4px; }
.chart-bar--projected { background: rgba(45,90,61,.25); border: 1.5px dashed var(--green); border-bottom: none; }
.chart-bar-tip { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 600; color: var(--green); white-space: nowrap; }
.chart-bar-label { font-size: 11px; color: var(--text3); margin-top: 4px; }
.chart-legend-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 12px; color: var(--text3); }
.chart-legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-left: 8px; }
.chart-legend-dot--solid { background: var(--green); }
.chart-legend-dot--dashed { background: rgba(45,90,61,.25); border: 1.5px dashed var(--green); }

/* ── TOOLS PAGE ── */
.tools-hero { background: var(--green); padding: 80px 2rem; text-align: center; }
.tools-hero .section-label { color: rgba(255,255,255,.6); }
.tools-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem,5vw,2.8rem); font-weight: 800; color: var(--white); max-width: 640px; margin: 0 auto 18px; line-height: 1.15; }
.tools-hero p { font-size: 16px; color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.tools-cards-section { background: var(--cream); padding: 72px 2rem; }
.tools-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.tool-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.tool-card:hover { box-shadow: 0 8px 28px rgba(45,90,61,.12); transform: translateY(-2px); }
.tool-card--disabled { opacity: .65; pointer-events: none; }
.tool-card__img { width: 100%; height: 160px; object-fit: cover; display: block; }
.tool-card__img-placeholder { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; }
.tool-card__body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; }
.tool-card__label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--green); margin-bottom: 8px; }
.tool-card__label--amber { color: var(--amber); }
.tool-card__title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.tool-card__desc { font-size: 13px; color: var(--text2); line-height: 1.6; flex: 1; }
.tool-card__bullets { list-style: none; margin: 12px 0 18px; }
.tool-card__bullets li { font-size: 13px; color: var(--text2); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.tool-card__bullets li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); margin-top: 7px; flex-shrink: 0; }
.tool-card__action { margin-top: auto; }
.tool-card__btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; background: var(--green); color: var(--white); border: none; border-radius: 8px; font-family: var(--font-sans); font-size: 13px; font-weight: 500; cursor: pointer; transition: background .2s; text-decoration: none; }
.tool-card__btn:hover { background: var(--green2); }
.tool-card__btn--outline { background: transparent; color: var(--text3); border: 1.5px solid var(--border); cursor: default; }
.tool-card__btn svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.tools-contact { background: var(--sage); padding: 70px 2rem; text-align: center; border-top: 1px solid var(--border); }
.tools-contact h2 { font-family: var(--font-serif); font-size: clamp(1.6rem,3vw,2rem); font-weight: 700; color: var(--text); margin-bottom: 12px; }
.tools-contact p { font-size: 15px; color: var(--text2); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }
.tools-contact .cta-btn { background: var(--green); color: var(--white); }
.tools-contact .cta-btn:hover { background: var(--green2); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 60px 1.2rem; }
  .verdict-grid { grid-template-columns: 1fr; }
  .cat-row { flex-wrap: wrap; }
  .quant-inner { grid-template-columns: 1fr; gap: 32px; }
  .cards-9 { grid-template-columns: 1fr !important; }
  .tools-cards { grid-template-columns: 1fr !important; }
}
