/* ── Grantado Design System ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Source+Serif+4:wght@400;600;700&display=swap');

:root {
  --navy:        #0C1B2E;
  --navy-mid:    #162640;
  --teal:        #00B5A5;
  --teal-dark:   #009688;
  --lime:        #72C02C;
  --lime-dark:   #5CA020;
  --white:       #FFFFFF;
  --text:        #0C1B2E;
  --text-muted:  #5A6A7A;
  --bg:          #F4F7FA;
  --border:      #DDE3EA;
  --green-light: #EBF9F4;
  --green-dark:  #009688;
  --radius:      10px;
  --shadow-sm:   0 1px 3px rgba(12,27,46,.08);
  --shadow-md:   0 4px 20px rgba(12,27,46,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }

/* ── Container ──────────────────────────────────────── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--teal { background: var(--teal); color: var(--white); }
.btn--teal:hover { background: var(--teal-dark); }
.btn--lime { background: var(--lime); color: var(--white); }
.btn--lime:hover { background: var(--lime-dark); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-mid); }
.btn--green { background: var(--lime); color: var(--white); }
.btn--green:hover { background: var(--lime-dark); }
.btn--outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn--outline:hover { background: var(--green-light); }
.btn--sm  { padding: 10px 18px; font-size: 0.875rem; }
.btn--full { width: 100%; }
.btn--lg  { padding: 18px 36px; font-size: 1.1rem; }

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px;
}
.nav__logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img { height: 32px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  text-decoration: none; padding: 8px 12px;
  border-radius: 6px; transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--teal); background: var(--green-light); }
.nav__hamburger {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--text); padding: 6px;
}
.nav__overlay { display: none; }
.nav__mobile-header { display: none; }
.nav__close { display: none; }

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 24px; gap: 4px; z-index: 200; overflow-y: auto;
  }
  .nav__links--open { display: flex; }
  .nav__mobile-header {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav__close {
    display: flex; background: none; border: none;
    cursor: pointer; color: var(--text); padding: 6px;
  }
  .nav__overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.4); z-index: 150;
  }
  .nav__overlay--visible { display: block; }
  .nav__link { width: 100%; font-size: 1rem; padding: 12px 16px; }
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 88px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(0,181,165,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(114,192,44,.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,181,165,.15); border: 1px solid rgba(0,181,165,.35);
  color: var(--teal); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero__badge-dot {
  width: 7px; height: 7px; background: var(--teal);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(.75); }
}
.hero__h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero__h1 em { font-style: normal; color: var(--teal); }
.hero__h1 strong { font-style: normal; color: var(--lime); }
.hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  line-height: 1.72; margin-bottom: 0; max-width: 500px;
}

/* ── SIGNUP CARD ────────────────────────────────────── */
.signup-card {
  background: var(--white); border-radius: 18px;
  padding: 36px 32px 32px;
  box-shadow: 0 16px 64px rgba(0,0,0,.32);
  border-top: 4px solid var(--teal);
}
/* card header */
.signup-card__head { margin-bottom: 20px; text-align: center; }
.signup-card__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--text); margin-bottom: 6px; line-height: 1.18;
}
.signup-card__sub { font-size: 0.84rem; color: var(--text-muted); }
.signup-card__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border);
}
.signup-card__trust span {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.76rem; font-weight: 600; color: var(--text-muted);
}
.signup-card__trust svg { flex-shrink: 0; color: var(--teal); }

/* form fields */
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block; font-size: 0.8125rem;
  font-weight: 600; color: var(--text); margin-bottom: 5px;
}
.form-field__hint { font-weight: 400; color: var(--text-muted); font-size: 0.76rem; }
.form-field input[type="email"] {
  width: 100%; height: 48px; padding: 0 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.9375rem;
  color: var(--text); background: #fff;
  transition: border-color 0.15s; appearance: none;
}
.form-field input[type="email"]:focus { outline: none; border-color: var(--teal); }
.signup-card .btn { margin-top: 6px; }
.signup-card__privacy {
  font-size: 0.74rem; color: var(--text-muted);
  margin-top: 10px; line-height: 1.5; text-align: center;
}
.signup-card__privacy a { color: var(--teal); text-decoration: none; }
.signup-card__privacy a:hover { text-decoration: underline; }
.signup-error { color: #dc2626; font-size: 0.85rem; margin-top: 6px; display: none; }

/* ── MULTI-SELECT ────────────────────────────────────── */
.ms { position: relative; }

.ms__trigger {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 46px; padding: 6px 12px 6px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: #fff; cursor: pointer;
  transition: border-color 0.15s; user-select: none;
}
.ms__trigger:focus { outline: none; border-color: var(--teal); }
.ms--error > .ms__trigger {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}
.ms--error > .ms__trigger:focus { border-color: #dc2626 !important; }
.form-field__err {
  color: #dc2626; font-size: 0.8rem; margin-top: 4px;
  display: none;
}
.ms--open .ms__trigger {
  border-color: var(--teal);
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
}

.ms__tags-wrap {
  display: flex; flex-wrap: wrap; gap: 4px; flex: 1; min-width: 0;
}
.ms__placeholder { font-size: 0.9375rem; color: #9aabb8; line-height: 1; }

.ms__tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,181,165,.12); color: var(--teal);
  font-size: 0.75rem; font-weight: 600;
  padding: 2px 7px 2px 9px; border-radius: 999px;
  white-space: nowrap; max-width: 150px; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.6;
}
.ms__tag--more {
  background: rgba(12,27,46,.07); color: var(--text-muted);
  padding: 2px 9px;
}
.ms__tag-x {
  background: none; border: none; cursor: pointer;
  color: var(--teal); display: flex; align-items: center;
  padding: 0; line-height: 1; flex-shrink: 0; opacity: .65;
}
.ms__tag-x:hover { opacity: 1; }

.ms__arrow {
  flex-shrink: 0; color: var(--text-muted); margin-left: 8px;
  transition: transform 0.18s;
}
.ms--open .ms__arrow { transform: rotate(180deg); }

.ms__panel {
  display: none; position: absolute; z-index: 100;
  left: 0; right: 0; top: 100%;
  background: #fff;
  border: 1.5px solid var(--teal); border-top: 1px solid var(--border);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 20px rgba(12,27,46,.14);
  overflow: hidden;
}
.ms--open .ms__panel { display: block; }

.ms__search-row {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 10px; border-bottom: 1px solid var(--border);
  color: var(--text-muted); background: var(--bg);
}
.ms__search {
  border: none; outline: none; font-family: inherit;
  font-size: 0.85rem; color: var(--text); flex: 1;
  background: transparent;
}

.ms__list {
  max-height: 180px; overflow-y: scroll;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,181,165,.4) rgba(0,0,0,.05);
}
.ms__list::-webkit-scrollbar { width: 6px; }
.ms__list::-webkit-scrollbar-track { background: rgba(0,0,0,.04); }
.ms__list::-webkit-scrollbar-thumb {
  background: rgba(0,181,165,.4); border-radius: 99px;
}
.ms__list::-webkit-scrollbar-thumb:hover { background: var(--teal); }

.ms__opt {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 12px; cursor: pointer;
  font-size: 0.875rem; color: var(--text);
  transition: background 0.1s; line-height: 1;
}
.ms__opt span { line-height: 1.15; }
.ms__opt:hover { background: rgba(0,181,165,.07); }
.ms__opt input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 14px; height: 14px; min-width: 14px; flex-shrink: 0;
  border: 1.5px solid #c5d0d8; border-radius: 3px;
  background: #fff; cursor: pointer; margin: 0;
  position: relative; transition: background 0.12s, border-color 0.12s;
  align-self: center;
}
.ms__opt input[type="checkbox"]:checked {
  background: var(--teal); border-color: var(--teal);
}
.ms__opt input[type="checkbox"]:checked::after {
  content: ''; position: absolute;
  top: 1px; left: 3px;
  width: 5px; height: 7px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 56px; }
}
@media (max-width: 600px) { .signup-card { padding: 28px 20px 24px; } }

/* ── SECTIONS ───────────────────────────────────────── */
.section { padding: 88px 0; }
.section--gray { background: var(--bg); }
.section--navy { background: var(--navy); }

.section__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.section__label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--teal); border-radius: 2px; flex-shrink: 0;
}
.section--navy .section__label { color: rgba(0,181,165,.8); }
.section--navy .section__label::before { background: rgba(0,181,165,.8); }
.section__h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.65rem, 3.5vw, 2.3rem);
  font-weight: 700; color: var(--text);
  margin-bottom: 16px; line-height: 1.18;
  letter-spacing: -0.01em;
}
.section--navy .section__h2 { color: var(--white); }
.section__sub { font-size: 1.02rem; color: var(--text-muted); max-width: 560px; line-height: 1.68; }
.section--navy .section__sub { color: rgba(255,255,255,.65); }
.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; }
.section__header--center .section__sub { margin: 0 auto; }
.section__header--center .section__label { justify-content: center; }

/* ── PROBLEM CARDS ──────────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 16px 16px 0 0;
}
.problem-card:nth-child(1)::before { background: var(--teal); }
.problem-card:nth-child(2)::before { background: var(--lime); }
.problem-card:nth-child(3)::before { background: var(--navy); }
.problem-card:hover { box-shadow: 0 8px 32px rgba(12,27,46,.12); transform: translateY(-2px); }
.problem-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.problem-card__icon--teal { background: rgba(0,181,165,.1); color: var(--teal); }
.problem-card__icon--lime  { background: rgba(114,192,44,.12); color: var(--lime-dark); }
.problem-card__icon--navy  { background: rgba(12,27,46,.08); color: var(--navy); }
.problem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.problem-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.68; }

/* ── HOW IT WORKS ───────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 26px; left: calc(16.666% + 26px);
  right: calc(16.666% + 26px); height: 2px;
  background: rgba(0,181,165,.25);
  pointer-events: none;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
}

.step { text-align: center; padding: 0 24px; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 8px rgba(0,181,165,.12);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.step p { font-size: 0.9rem; color: rgba(255,255,255,.65); line-height: 1.68; }

/* ── GRANT TYPES ────────────────────────────────────── */
.grants-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media (max-width: 640px) { .grants-grid { grid-template-columns: 1fr; } }

.grant-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.grant-card:hover { box-shadow: 0 8px 28px rgba(12,27,46,.10); border-color: var(--teal); transform: translateY(-2px); }
.grant-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0,181,165,.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.grant-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.grant-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.62; }

/* ── TRUST STATS ────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 400px)  { .stats-grid { grid-template-columns: 1fr; } }

.stat {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
@media (max-width: 768px) {
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(2) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat:last-child { border-bottom: none; }
}
.stat__num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 700; color: var(--teal);
  line-height: 1; margin-bottom: 10px;
}
.stat__label { font-size: 0.875rem; color: rgba(255,255,255,.6); line-height: 1.45; max-width: 120px; margin: 0 auto; }

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  border: 1.5px solid rgba(0,181,165,.25);
  border-radius: 24px; padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,181,165,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(114,192,44,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--white); margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-banner p {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.cta-banner .btn { position: relative; z-index: 1; }
@media (max-width: 600px) { .cta-banner { padding: 52px 24px; } }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.8); }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding: 60px 0 48px;
}
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; } }
.footer__logo { display: flex; align-items: center; margin-bottom: 14px; }
.footer__logo img { height: 30px; width: auto; }
.footer__desc { font-size: 0.875rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 16px; max-width: 300px; }
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,.35); }
.footer__section-title {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.footer__section-links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 0.875rem; color: rgba(255,255,255,.65); text-decoration: none; transition: color 0.15s; }
.footer__link:hover { color: var(--teal); }
.footer__disclaimer { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.footer__disclaimer p { font-size: 0.75rem; color: rgba(255,255,255,.3); line-height: 1.65; }

/* ── LEGAL PAGES ────────────────────────────────────── */
.legal-hero { background: var(--bg); border-bottom: 1px solid var(--border); padding: 56px 0 48px; }
.legal-hero__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; color: var(--text); margin-bottom: 10px;
}
.legal-hero__date { font-size: 0.9rem; color: var(--text-muted); }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.legal-section p, .legal-section li { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.legal-section ul { padding-left: 20px; list-style: disc; }
.legal-section a { color: var(--teal); text-decoration: underline; }
.legal-contact-box { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; }
.legal-contact-box p { margin-bottom: 8px; }

/* ── THANK YOU ──────────────────────────────────────── */
.ty { min-height: 100vh; display: flex; flex-direction: column; }
.ty__main { flex:1; display:flex; align-items:center; justify-content:center; padding: 60px 24px; }
.ty__card { background:var(--white); border:1px solid var(--border); border-radius:18px; box-shadow:var(--shadow-md); max-width:560px; width:100%; padding:48px 40px 44px; text-align:center; }
.ty__icon { width:68px; height:68px; background:rgba(0,181,165,.12); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; color:var(--teal); }
.ty__heading { font-family:'Source Serif 4',Georgia,serif; font-size:1.75rem; font-weight:700; color:var(--text); margin-bottom:12px; }
.ty__sub { font-size:1rem; color:var(--text-muted); margin-bottom:32px; line-height:1.6; }
.ty__steps { background:var(--bg); border:1px solid var(--border); border-radius:12px; padding:24px 28px; margin-bottom:32px; text-align:left; }
.ty__steps-title { font-size:0.8125rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); margin-bottom:16px; }
.ty__step { display:flex; align-items:flex-start; gap:12px; margin-bottom:14px; }
.ty__step:last-child { margin-bottom:0; }
.ty__step-num { flex-shrink:0; width:24px; height:24px; background:var(--teal); color:var(--white); border-radius:50%; font-size:0.75rem; font-weight:700; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.ty__step-text { font-size:0.9375rem; color:var(--text-muted); line-height:1.5; }
.ty__step-text strong { color:var(--text); font-weight:600; }
.ty__cta { display:inline-block; background:var(--teal); color:var(--white); font-weight:700; font-size:1rem; padding:14px 32px; border-radius:10px; text-decoration:none; transition:background .15s; }
.ty__cta:hover { background:var(--teal-dark); }
.ty__note { font-size:0.8125rem; color:var(--text-muted); margin-top:16px; }
@media(max-width:600px){.ty__card{padding:36px 22px 32px;}.ty__heading{font-size:1.4rem;}}

/* ── CONTACT ────────────────────────────────────────── */
.contact-hero { background:var(--bg); border-bottom:1px solid var(--border); padding:56px 0 48px; text-align:center; }
.contact-hero__label { display:inline-block; font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--teal); margin-bottom:14px; }
.contact-hero__h1 { font-family:'Source Serif 4',Georgia,serif; font-size:clamp(1.8rem,4vw,2.5rem); font-weight:700; color:var(--text); margin-bottom:14px; }
.contact-hero__sub { font-size:1.02rem; color:var(--text-muted); max-width:500px; margin:0 auto; }
.contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:56px; }
@media(max-width:768px){.contact-grid{grid-template-columns:1fr;}}
.contact-card { background:var(--white); border:1px solid var(--border); border-radius:12px; padding:28px 24px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:12px; }
.contact-card__icon { width:52px; height:52px; border-radius:50%; background:rgba(0,181,165,.1); color:var(--teal); display:flex; align-items:center; justify-content:center; }
.contact-card__label { font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-muted); }
.contact-card__value { font-size:1rem; font-weight:600; color:var(--text); line-height:1.5; text-decoration:none; }
.contact-card__value:hover { color:var(--teal); }
.contact-card__note { font-size:0.82rem; color:var(--text-muted); }
.contact-form-wrap { background:var(--white); border:1px solid var(--border); border-radius:16px; padding:48px; max-width:680px; margin:0 auto; }
@media(max-width:640px){.contact-form-wrap{padding:28px 20px;}}
.contact-form-header { text-align:center; margin-bottom:32px; }
.contact-form-header__icon { width:52px; height:52px; border-radius:50%; background:rgba(0,181,165,.1); color:var(--teal); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.contact-form-header__title { font-size:1.3rem; font-weight:700; color:var(--text); margin-bottom:8px; }
.contact-form-header__sub { font-size:0.9rem; color:var(--text-muted); }
.contact-form { display:flex; flex-direction:column; gap:16px; }
.contact-form__row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:560px){.contact-form__row{grid-template-columns:1fr;}}
.contact-form__field { display:flex; flex-direction:column; gap:6px; }
.contact-form__label { font-size:0.875rem; font-weight:600; color:var(--text); }
.contact-form__opt { font-weight:400; color:var(--text-muted); }
.contact-form__input { width:100%; height:48px; padding:0 14px; border:1.5px solid var(--border); border-radius:8px; font-family:inherit; font-size:0.9375rem; color:var(--text); background:#fff; transition:border-color 0.15s; box-sizing:border-box; }
.contact-form__input:focus { outline:none; border-color:var(--teal); }
.contact-form__textarea { height:auto; padding:12px 14px; resize:vertical; line-height:1.55; }
.contact-form__error { font-size:0.875rem; color:#dc2626; margin:0; }
.contact-form__success { display:flex; align-items:center; gap:10px; background:rgba(0,181,165,.1); border:1px solid rgba(0,181,165,.3); border-radius:10px; padding:14px 18px; font-size:0.9375rem; font-weight:500; color:var(--teal); }
.contact-form__submit { width:100%; height:52px; font-size:1rem; }

/* ── BREADCRUMB ─────────────────────────────────────── */
.fp-breadcrumb { background:var(--bg); border-bottom:1px solid var(--border); padding:10px 0; font-size:0.8125rem; color:var(--text-muted); }
.fp-breadcrumb a { color:var(--teal); text-decoration:none; }
.fp-breadcrumb span { margin:0 6px; }

/* ── ALERT PREVIEW ──────────────────────────────────── */
.alert-preview { max-width:680px; margin:0 auto; }
.alert-preview__email { background:#fff; border:1.5px solid var(--border); border-radius:14px; overflow:hidden; box-shadow:0 4px 24px rgba(12,27,46,.08); }
.alert-preview__header { background:var(--bg); border-bottom:1px solid var(--border); padding:16px 24px; display:flex; flex-direction:column; gap:4px; }
.alert-preview__from { font-size:0.8125rem; color:var(--text-muted); }
.alert-preview__subject { font-size:0.9375rem; font-weight:700; color:var(--text); }
.alert-preview__body { padding:28px 24px; }
.alert-preview__grant-name { font-family:'Source Serif 4',Georgia,serif; font-size:1.2rem; font-weight:700; color:var(--text); margin-bottom:12px; }
.alert-preview__grant-tags { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px; }
.alert-tag { display:inline-block; font-size:0.72rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; padding:3px 10px; border-radius:99px; }
.alert-tag--teal { background:rgba(0,181,165,.12); color:var(--teal); }
.alert-tag--lime { background:rgba(114,192,44,.12); color:#4a8a00; }
.alert-tag--navy { background:rgba(12,27,46,.08); color:var(--navy); }
.alert-preview__grant-desc { font-size:0.9375rem; color:var(--text-muted); line-height:1.6; margin-bottom:16px; }
.alert-preview__deadline { display:flex; align-items:center; gap:6px; font-size:0.875rem; color:var(--text-muted); margin-bottom:20px; }
.alert-preview__deadline svg { color:var(--teal); flex-shrink:0; }
.alert-preview__cta { display:inline-block; background:var(--teal); color:#fff; font-weight:700; font-size:0.9375rem; padding:10px 22px; border-radius:8px; text-decoration:none; }
.alert-preview__cta:hover { background:var(--teal-dark); }

/* ── RECENT GRANTS ──────────────────────────────────── */
.recent-grants { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:36px; }
@media(max-width:768px){.recent-grants{grid-template-columns:1fr;}}
.recent-grant-card { background:#fff; border:1.5px solid var(--border); border-radius:14px; padding:24px; display:flex; flex-direction:column; gap:10px; }
.recent-grant-card__top { display:flex; align-items:center; justify-content:space-between; }
.recent-grant-card__amount { font-size:0.8125rem; font-weight:700; color:var(--text-muted); }
.recent-grant-card h3 { font-size:1rem; font-weight:700; color:var(--text); line-height:1.4; margin:0; }
.recent-grant-card p { font-size:0.875rem; color:var(--text-muted); line-height:1.55; margin:0; flex:1; }
.recent-grant-card__meta { font-size:0.78rem; font-weight:600; color:var(--teal); }
.recent-grants__cta { text-align:center; }

/* ── INDUSTRIES GRID ────────────────────────────────── */
.industries-grid { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; max-width:880px; margin:0 auto; }
.industry-chip { display:flex; align-items:center; gap:8px; background:#fff; border:1.5px solid var(--border); border-radius:99px; padding:10px 18px; font-size:0.9rem; font-weight:500; color:var(--text); }
.industry-chip svg { color:var(--teal); flex-shrink:0; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-list { max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:4px; }
.faq-item { border:1.5px solid var(--border); border-radius:12px; background:#fff; overflow:hidden; }
.faq-item[open] { border-color:var(--teal); }
.faq-item__q { list-style:none; padding:20px 24px; font-size:1rem; font-weight:600; color:var(--text); cursor:pointer; display:flex; align-items:center; justify-content:space-between; user-select:none; }
.faq-item__q::-webkit-details-marker { display:none; }
.faq-item__q::after { content:'+'; font-size:1.3rem; font-weight:400; color:var(--teal); flex-shrink:0; margin-left:16px; transition:transform .2s; }
.faq-item[open] .faq-item__q::after { content:'−'; }
.faq-item__a { padding:0 24px 20px; font-size:0.9375rem; color:var(--text-muted); line-height:1.65; margin:0; }
