/* ═══════════════════════════════════════════════════════════════
   INDEX.CSS — MergerDomo Homepage
   Reuses full nav/footer/component system from consulting.css
   Breakpoints: 1100px | 1024px | 900px | 768px | 640px | 480px | 360px
═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --ann-h: 38px;
  --nav-h: 64px;
  --md-blue: #2d6cdf;
  --md-blue-dark: #1a4fad;
  --md-blue-light: #eef4ff;
  --md-blue-mid: #b8d0f8;
  --md-navy: #0d1b4c;
  --md-yellow: #ffc107;
  --md-yellow-dark: #e6ac00;
  --md-gray-50: #f8fafc;
  --md-gray-100: #f1f5f9;
  --md-gray-200: #e2e8f0;
  --md-gray-400: #94a3b8;
  --md-gray-600: #6b7280;
  --md-gray-800: #1e293b;
  --md-text: #111827;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 2px 12px rgba(0,0,0,.07);
  --shadow-card-lg: 0 8px 28px rgba(0,0,0,.09);
  --shadow-blue: 0 4px 20px rgba(45,108,223,.18);
  --t: 0.18s ease;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }
* { font-family: 'Roboto', sans-serif; }
a { text-decoration: none !important; color: inherit; }
body { color: var(--md-text); overflow-x: hidden; background: #fff; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

/* ── HEADER ── */
.header-height { height: calc(var(--ann-h) + var(--nav-h)); }
.body-margin { margin-top: calc(var(--ann-h) + var(--nav-h)); }

/* ── ANIMATIONS ── */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
[data-animate].animated { opacity: 1; transform: none; }

/* ═══════════════════════
   ANNOUNCEMENT BAR
═══════════════════════ */
.announcement-bar { background: var(--md-yellow); height: var(--ann-h); display: flex; align-items: center; justify-content: center; text-align: center; font-size: 13.5px; font-weight: 500; color: var(--md-navy); padding: 0 12px; overflow: hidden; }
.announcement-bar p { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announcement-bar .divider { margin: 0 10px; color: rgba(13,27,76,.35); }
.announcement-bar .cta-link { font-weight: 700; color: var(--md-navy); text-decoration: none !important; border-bottom: 1.5px solid rgba(13,27,76,.3); transition: border-color .18s ease; }
.announcement-bar .cta-link:hover { border-color: var(--md-navy); }

/* ═══════════════════════
   NAVBAR
═══════════════════════ */
.md-nav { background: var(--md-navy); height: var(--nav-h); display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; }
.md-nav__inner { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.md-nav__logo { flex-shrink: 0; margin-right: 32px; }
.md-nav__logo img { height: 28px; display: block; }
.md-nav__list { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center !important; list-style: none; margin: 0 auto; padding: 0; }
.md-nav__item { position: relative; }
.md-nav__link { display: flex; align-items: center; gap: 4px; height: var(--nav-h); padding: 0 13px; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.72); cursor: pointer; white-space: nowrap; transition: color .18s ease; position: relative; text-decoration: none !important; background: none; border: none; font-family: 'Roboto', sans-serif; }
.md-nav__link::after { content: ''; position: absolute; bottom: 0; left: 13px; right: 13px; height: 2px; background: var(--md-yellow); transform: scaleX(0); transition: transform .18s ease; border-radius: 2px 2px 0 0; }
.md-nav__link:hover, .md-nav__item:hover > .md-nav__link { color: #fff; }
.md-nav__link:hover::after, .md-nav__item:hover > .md-nav__link::after { transform: scaleX(1); }
.md-nav__chevron { font-size: 10px; color: rgba(255,255,255,.4); transition: transform .18s ease, color .18s ease; pointer-events: none; }
.md-nav__item:hover > .md-nav__link .md-nav__chevron { transform: rotate(180deg); color: var(--md-yellow); }
.md-nav__item--mkt { padding-left: 16px; }
.md-nav__item--mkt .md-nav__link { padding: 0; height: auto; }
.md-nav__item--mkt .md-nav__link::after { display: none; }
.md-nav__link-pill { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--md-yellow); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 6px; transition: border .18s ease; }
.md-nav__link-pill:hover { border: 1.5px solid var(--md-yellow); }
.md-nav__actions { display: flex; align-items: center; gap: 8px; margin-left: 32px; flex-shrink: 0; }
.md-nav__btn { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 18px; font-size: 13px; font-weight: 600; border-radius: 6px; cursor: pointer; white-space: nowrap; transition: background .18s ease, color .18s ease, border-color .18s ease; border: none; text-decoration: none !important; }
.md-nav__btn--login { background: transparent; color: rgba(255,255,255,.72); border: 1.5px solid rgba(255,255,255,.2) !important; }
.md-nav__btn--login:hover { color: #fff; border-color: rgba(255,255,255,.5) !important; background: rgba(255,255,255,.08); }
.md-nav__btn--register { background: var(--md-yellow) !important; color: var(--md-navy) !important; border: 1.5px solid var(--md-yellow) !important; }
.md-nav__btn--register:hover { background: transparent !important; color: var(--md-yellow) !important; }

/* ── MEGA MENU ── */
.md-mega { position: absolute; top: calc(var(--nav-h) - 1px); left: 50%; transform: translateX(-50%) translateY(-8px); background: #fff; border-radius: 0 0 12px 12px; box-shadow: 0 24px 64px rgba(13,27,76,.16), 0 4px 12px rgba(0,0,0,.07); border-top: 3px solid var(--md-yellow); pointer-events: none; opacity: 0; transition: opacity .18s ease, transform .18s ease; z-index: 1050; min-width: 620px; }
.md-nav__item:hover > .md-mega { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.md-mega__inner { display: grid; grid-template-columns: 1fr 1fr; padding: 22px 24px 20px; gap: 0; }
.md-mega__col { min-width: 260px; padding: 0 20px 0 0; }
.md-mega__col:last-child { padding-right: 0; }
.md-mega__col + .md-mega__col { border-left: 1px solid #f1f5f9; padding-left: 20px; }
.md-mega__button { grid-column: 1/-1; display: flex; justify-content: center; padding: 12px 0 4px; border-top: 1px solid #f1f5f9; }
.md-mega__button .btn-cta-primary { padding: 10px 22px; font-size: 12px; border-radius: 10px; width: auto; }
.md-mega__heading { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--md-yellow-dark); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid #f1f5f9; }
.md-mega__list { display: flex; flex-direction: column; gap: 1px; list-style: none; padding: 0; margin: 0; }
.md-mega__link { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 7px; font-size: 13px; font-weight: 400; color: #374151; transition: background .16s ease, color .16s ease; text-decoration: none !important; }
.md-mega__link:hover { background: var(--md-blue-light); color: var(--md-blue); }
.md-mega__link:hover .md-mega__icon { background: var(--md-blue); color: #fff; }
.md-mega__icon { width: 30px; height: 30px; border-radius: 7px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; transition: background .16s ease; }
.md-mega__link-text { display: flex; flex-direction: column; }
.md-mega__link-title { font-size: 13px; font-weight: 600; line-height: 1.2; display: block; white-space: nowrap; }
.md-mega__link-sub { font-size: 11px; color: #9ca3af; line-height: 1.3; margin-top: 1px; display: block; }
.md-mega__tag { font-size: 9px; font-weight: 700; text-transform: uppercase; padding: 2px 6px; border-radius: 4px; margin-left: auto; flex-shrink: 0; letter-spacing: .3px; }
.md-mega__tag--free { background: #d1fae5; color: #065f46; }
.md-mega__tag--new { background: #fef3c7; color: #92400e; }

/* ── HAMBURGER ── */
.md-nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; flex-shrink: 0; -webkit-tap-highlight-color: transparent; }
.md-nav__toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
.md-nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.md-nav__toggle.open span:nth-child(2) { opacity: 0; }
.md-nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .md-nav__inner { padding: 0 16px; }
  .md-nav__logo { margin-right: 0; }
  .md-nav__toggle { display: flex; z-index: 1201; order: 3; }
  .md-nav__list, .md-nav__actions { display: none !important; }
}

/* ── MOBILE DRAWER ── */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1198; opacity: 0; transition: opacity .25s ease; }
.mob-overlay.is-visible { display: block; opacity: 1; }
.mob-drawer { display: none; position: fixed; top: calc(var(--ann-h) + var(--nav-h)); left: 0; width: 100%; height: calc(100dvh - var(--ann-h) - var(--nav-h)); background: var(--md-navy); z-index: 1199; overflow: hidden; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
.mob-drawer.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
@media (max-width: 1100px) { .mob-drawer { display: block; } }
.mob-panel { position: absolute; inset: 0; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; transition: transform .25s ease, opacity .2s ease; will-change: transform; background: var(--md-navy); padding-bottom: 130px; }
.mob-panel--root { transform: translateX(0); opacity: 1; }
.mob-panel--root.is-hidden { transform: translateX(-100%); opacity: 0; pointer-events: none; }
.mob-panel--sub { transform: translateX(100%); opacity: 0; pointer-events: none; padding-bottom: 24px; }
.mob-panel--sub.is-visible { transform: translateX(0); opacity: 1; pointer-events: all; }
.mob-root-list { list-style: none; margin: 0; padding: 6px 0 0; }
.mob-root-list li { border-bottom: 1px solid rgba(255,255,255,.06); }
.mob-root-list li:last-child { border-bottom: none; }
.mob-root-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; background: none; border: none; font-family: 'Roboto', sans-serif; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.88); cursor: pointer; text-align: left; -webkit-tap-highlight-color: transparent; transition: background .15s ease; }
.mob-root-btn:hover { background: rgba(255,255,255,.05); color: #fff; }
.mob-root-btn i { font-size: 12px; color: rgba(255,255,255,.35); flex-shrink: 0; }
.mob-root-link { display: flex; align-items: center; gap: 8px; padding: 15px 20px; font-size: 14.5px; font-weight: 600; color: var(--md-yellow); text-decoration: none; -webkit-tap-highlight-color: transparent; }
.mob-root-link:hover { background: rgba(255,255,255,.05); }
.mob-actions { position: fixed; bottom: 0; left: 0; right: 0; display: flex; flex-direction: column; gap: 10px; padding: 14px 16px 20px; background: var(--md-navy); border-top: 1px solid rgba(255,255,255,.1); z-index: 10; box-shadow: 0 -6px 24px rgba(0,0,0,.3); }
.mob-btn { display: flex; align-items: center; justify-content: center; height: 44px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .18s ease, color .18s ease; -webkit-tap-highlight-color: transparent; }
.mob-btn--login { background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.22); }
.mob-btn--login:hover { background: rgba(255,255,255,.08); color: #fff; }
.mob-btn--register { background: var(--md-yellow); color: var(--md-navy); border: 1.5px solid var(--md-yellow); }
.mob-btn--register:hover { background: transparent; color: var(--md-yellow); }
.mob-sub-header { position: sticky; top: 0; background: var(--md-navy); z-index: 5; border-bottom: 1px solid rgba(255,255,255,.08); }
.mob-back-btn { display: flex; align-items: center; gap: 8px; width: 100%; padding: 14px 16px; background: none; border: none; font-size: 15px; font-weight: 600; color: #fff; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.mob-back-btn i { font-size: 13px; color: var(--md-yellow); }
.mob-sub-body { padding: 0; }
.mob-sub-body .md-mega__inner { display: flex !important; flex-direction: column !important; grid-template-columns: unset !important; padding: 12px 16px 20px !important; gap: 0 !important; }
.mob-sub-body .md-mega__col { padding: 12px 0 0; width: 100%; }
.mob-sub-body .md-mega__col:first-child { padding-top: 4px; }
.mob-sub-body .md-mega__col + .md-mega__col { border-left: none !important; padding-left: 0 !important; border-top: 1px solid rgba(255,255,255,.08); margin-top: 4px; }
.mob-sub-body .md-mega__heading { color: var(--md-yellow); border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 8px; margin-bottom: 6px; }
.mob-sub-body .md-mega__list { list-style: none; padding: 0; margin: 0; }
.mob-sub-body .md-mega__link { padding: 9px 6px; border-radius: 8px; transition: background .15s ease; -webkit-tap-highlight-color: transparent; }
.mob-sub-body .md-mega__link:hover { background: rgba(255,255,255,.06); }
.mob-sub-body .md-mega__link-title { color: rgba(255,255,255,.88); }
.mob-sub-body .md-mega__link-sub { color: rgba(255,255,255,.45); }
.mob-sub-body .md-mega__icon { background: rgba(255,255,255,.08); }
.mob-sub-body .md-mega__tag--free { background: rgba(16,185,129,.15); color: #6ee7b7; }
.mob-sub-body .md-mega__tag--new { background: rgba(245,158,11,.15); color: #fcd34d; }
.mob-sub-body .md-mega__button { border-top: 1px solid rgba(255,255,255,.08) !important; padding: 12px 0 4px !important; justify-content: flex-start !important; }
.mob-sub-body .btn-cta-primary { width: 100% !important; justify-content: center; }

/* ═══════════════════════
   SHARED COMPONENTS
═══════════════════════ */
.container-lg { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label-pill { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .9px; padding: 4px 14px; border-radius: 999px; background: var(--md-blue-light); color: var(--md-yellow-dark); margin-bottom: 14px; }
.section-label-pill--light { background: rgba(255,255,255,.12); color: var(--md-yellow); }
.section-header { margin-bottom: 40px; }
.section-h2 { font-size: clamp(24px,3.2vw,38px); font-weight: 800; color: var(--md-navy); line-height: 1.18; margin-bottom: 12px; }
.section-h2.light { color: #fff; }
.section-sub { font-size: 15.5px; color: var(--md-gray-600); max-width: 600px; line-height: 1.65; margin: 0; }

.btn-cta-primary { display: inline-flex; align-items: center; gap: 6px; background: var(--md-yellow); color: var(--md-navy); font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 8px; border: none; text-decoration: none !important; transition: background .18s ease; }
.btn-cta-primary:hover { background: var(--md-yellow-dark); color: var(--md-navy); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-weight: 600; font-size: 14px; border-radius: var(--radius-sm); cursor: pointer; transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease; white-space: nowrap; text-decoration: none !important; border: none; }
.btn-primary { background: var(--md-blue) !important; color: #fff !important; padding: 13px 24px; box-shadow: 0 4px 14px rgba(45,108,223,.14); }
.btn-primary:hover { background: var(--md-blue-dark) !important; transform: translateY(-1px); }
.btn-outline { background: transparent !important; color: var(--md-navy) !important; border: 1.5px solid var(--md-gray-200) !important; padding: 13px 24px; }
.btn-outline:hover { border-color: var(--md-blue) !important; color: var(--md-blue) !important; background: var(--md-blue-light) !important; }
.btn-large { padding: 15px 30px; font-size: 15px; }

.hp-section { padding: 72px 0; }
.hp-section--gray { background: var(--md-gray-50); border-top: 1px solid var(--md-gray-200); border-bottom: 1px solid var(--md-gray-200); }
.hp-section--navy { background: var(--md-navy); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--md-navy);
}
.stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--md-yellow);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -.03em;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  font-weight: 400;
}

/* ═══════════════════════
   HERO — dark background layout
═══════════════════════ */
.hp-hero--dark {
  background: transparent;
  padding: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6,14,44,.96) 0%, rgba(10,22,62,.90) 40%, rgba(13,27,76,.78) 100%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% -20%, rgba(45,108,223,.22) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 5% 100%, rgba(255,193,7,.06) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

/* Inner container — desktop: 2-col grid */
.hp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 72px;
}
.hp-hero__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hp-hero__h1 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -.025em;
}
.h1-accent { color: var(--md-yellow); }
.hp-hero__sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.68;
  max-width: 480px;
  margin-bottom: 28px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 6px 16px 6px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(255,255,255,.90);
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--md-yellow);
  border-radius: 50%;
  flex-shrink: 0;
  animation: heroPulse 2s ease infinite;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,193,7,.6); }
  50%       { box-shadow: 0 0 0 8px rgba(255,193,7,0); }
}

/* ── SELLER CARD ── */
.seller-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-left: 3px solid var(--md-yellow);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all .24s ease;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}
.seller-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  border-left-color: var(--md-yellow);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
}
.seller-card-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: rgba(255,193,7,.15);
  border: 1px solid rgba(255,193,7,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s ease;
}
.seller-card:hover .seller-card-icon { background: rgba(255,193,7,.25); }
.seller-card-text { flex: 1; min-width: 0; }
.seller-card-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; line-height: 1.3; }
.seller-card-body { font-size: 12px; color: rgba(255,255,255,.58); line-height: 1.45; }
.seller-card-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--md-yellow);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 7px 14px;
  background: rgba(255,193,7,.12);
  border: 1px solid rgba(255,193,7,.22);
  border-radius: 6px;
  transition: all .2s ease;
}
.seller-card:hover .seller-card-link {
  background: var(--md-yellow);
  color: var(--md-navy);
  border-color: var(--md-yellow);
}
.seller-card-link i { transition: transform .2s ease; font-size: 11px; }
.seller-card:hover .seller-card-link i { transform: translateX(3px); }

/* ── PERSONA CARDS — 2×2 grid (desktop) ── */
.hp-hero__personas {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hp-hero__personas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.persona-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.07);
  transition: all .24s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}
.persona-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  opacity: 0;
  transition: opacity .24s ease;
}
.persona-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
}
.persona-card:hover::before { opacity: 1; }
.persona-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  transition: all .22s ease;
  flex-shrink: 0;
}
.persona-card:hover .persona-card-icon {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.24);
}
.persona-card-title { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 7px; line-height: 1.3; }
.persona-card-body { font-size: 12px; color: rgba(255,255,255,.60); line-height: 1.58; margin-bottom: 16px; flex: 1; }
.persona-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--md-yellow);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  opacity: .85;
  transition: opacity .2s ease, gap .2s ease;
}
.persona-card-link i { transition: transform .2s ease; font-size: 10px; }
.persona-card:hover .persona-card-link { opacity: 1; gap: 8px; }
.persona-card:hover .persona-card-link i { transform: translateX(3px); }

/* ── Persona carousel wrap + nav arrows (mobile only) ── */
.persona-carousel-wrap {
  position: relative;
}
/* Nav arrows — hidden on desktop */
.persona-nav {
  display: none;
}

/* Hero microcopy row */
.hero-micro {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,.48);
  flex-wrap: nowrap;
}
.hero-micro span { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.hero-micro i { color: var(--md-yellow); font-size: 11px; opacity: .9; }

/* ═══════════════════════
   ABOUT SECTION
═══════════════════════ */
.hp-about-section { background: #fff; border-top: 1px solid var(--md-gray-200); }
.hp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hp-about-body {
  font-size: 15px;
  color: var(--md-gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}
.hp-founder-quote {
  background: var(--md-navy);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-card-lg);
}
.hp-founder-quote__mark {
  font-size: 80px;
  line-height: .8;
  color: var(--md-yellow);
  font-weight: 900;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  opacity: .7;
}
.hp-founder-quote__text {
  font-size: 15.5px;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.hp-founder-quote__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
}
.hp-founder-quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--md-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.2);
}
.hp-founder-quote__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.hp-founder-quote__author span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}



/* ═══════════════════════
   TRUST BAR
═══════════════════════ */
.hp-trust-bar { background: var(--md-navy); }
.hp-trust-bar__inner { display: flex; align-items: stretch; }
.hp-trust-item { flex: 1; text-align: center; padding: 22px 16px; border-right: 1px solid rgba(255,255,255,.08); }
.hp-trust-item:last-child { border-right: none; }
.hp-trust-num { font-size: 24px; font-weight: 800; color: var(--md-yellow); line-height: 1; margin-bottom: 5px; letter-spacing: -.02em; }
.hp-trust-lbl { font-size: 11.5px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .04em; }
.hp-trust-div { width: 1px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ═══════════════════════
   CONFIDENTIALITY
═══════════════════════ */
.hp-conf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hp-conf-points { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.hp-conf-point { display: flex; gap: 16px; align-items: flex-start; }
.hp-conf-point__icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--md-blue-light); color: var(--md-blue); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hp-conf-point__title { font-size: 15px; font-weight: 700; color: var(--md-navy); margin-bottom: 4px; }
.hp-conf-point__body { font-size: 13.5px; color: var(--md-gray-600); line-height: 1.65; margin: 0; }

.hp-conf-card { background: #fff; border: 1.5px solid var(--md-gray-200); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-card-lg); }
.hp-conf-card__badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--md-blue); background: var(--md-blue-light); padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; }
.hp-conf-card__row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--md-gray-200); font-size: 13.5px; }
.hp-conf-card__row:last-child { border-bottom: none; }
.hp-conf-card__row span:first-child { color: var(--md-gray-400); font-weight: 500; }
.hp-conf-card__val { color: var(--md-navy); font-weight: 600; }
.hp-conf-card__row--hidden .hp-conf-card__mask { color: var(--md-gray-400); font-size: 12px; letter-spacing: .5px; font-style: italic; }
.hp-conf-card__note { margin-top: 14px; font-size: 12px; color: var(--md-blue); display: flex; align-items: flex-start; gap: 6px; line-height: 1.5; }

/* ═══════════════════════
   PLATFORM STORY
═══════════════════════ */
.hp-story-grid { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.hp-quote { border-left: 3px solid var(--md-yellow); padding-left: 20px; margin: 28px 0 0; }
.hp-quote p { font-size: 15px; font-style: italic; color: var(--md-gray-600); line-height: 1.75; margin: 0 0 16px; }
.hp-quote footer { display: flex; align-items: center; gap: 12px; }
.hp-quote__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--md-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.hp-quote footer strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--md-navy); }
.hp-quote footer span { display: block; font-size: 12px; color: var(--md-gray-600); }

.hp-story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp-story-stat { background: var(--md-gray-50); border: 1.5px solid var(--md-gray-200); border-radius: var(--radius-lg); padding: 24px 20px; }
.hp-story-stat__num { font-size: 28px; font-weight: 800; color: var(--md-blue); line-height: 1; margin-bottom: 6px; letter-spacing: -.02em; }
.hp-story-stat__lbl { font-size: 12.5px; color: var(--md-gray-600); line-height: 1.4; }

/* ═══════════════════════
   EXPLORE DEALS — icard-style cards (matching listing pages)
═══════════════════════ */
.hp-deals-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hp-deals-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--md-gray-600);
  background: #fff;
  border: 1.5px solid var(--md-gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
}
.hp-deals-tab .hdt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--md-gray-100);
  font-size: 13px;
  flex-shrink: 0;
  transition: all .18s ease;
}
.hp-deals-tab:hover {
  color: var(--md-blue);
  border-color: var(--md-blue-mid);
  background: var(--md-blue-light);
}
.hp-deals-tab:hover .hdt-icon { background: var(--md-blue); color: #fff; }
.hp-deals-tab.active {
  background: var(--md-navy);
  color: #fff;
  border-color: var(--md-navy);
  box-shadow: 0 4px 14px rgba(13,27,76,.18);
}
.hp-deals-tab.active .hdt-icon { background: rgba(255,255,255,.15); color: #fff; }

.hp-deals-panel { display: none; }
.hp-deals-panel.active { display: block; }

.hp-deals-cta { text-align: center; padding-top: 20px; }

/* ── icard grid (3-col) ── */
.hp-icard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

/* ── icard base ── */
.hp-icard {
  background: #fff;
  border: 1px solid var(--md-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.hp-icard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lg);
  border-color: var(--md-blue-mid);
}

/* ── Card Head ── */
.hp-icard__head {
  padding: 14px 16px;
  background: var(--md-gray-50);
  border-bottom: 1px solid var(--md-gray-200);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.hp-icard__head-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.hp-icard__type-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid var(--md-gray-200);
  background: #fff;
}
.hp-icard__type-icon--sell { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.hp-icard__type-icon--buy  { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.hp-icard__type-icon--raise { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.hp-icard__type-icon--invest { background: #faf5ff; color: #7c3aed; border-color: #ddd6fe; }
.hp-icard__type-icon--consult { background: var(--md-blue-light); color: var(--md-blue); border-color: var(--md-blue-mid); }

.hp-icard__type-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 3px;
  line-height: 1.3;
}
.hp-icard__date {
  font-size: 11px;
  color: var(--md-gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}
.hp-icard__premium-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  background: linear-gradient(90deg, #f5a623 0%, #e6ac00 100%);
  color: #3d2800;
  border-radius: 999px;
  margin-top: 5px;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(230,172,0,.2);
}
.hp-icard__status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.hp-icard__status-badge--sell  { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.hp-icard__status-badge--raise { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.hp-icard__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--md-blue-light);
  color: #1044b0;
  border: 1px solid var(--md-blue-mid);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Card Body ── */
.hp-icard__body {
  padding: 16px 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hp-icard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hp-icard__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
/* Tag colour variants */
.hp-icard__tag--sell    { background: #fff7db; color: #7a5200; border-color: #f5d97a; }
.hp-icard__tag--buy     { background: #edfaf5; color: #0a6644; border-color: #a7f3d0; }
.hp-icard__tag--raise   { background: #f0fdf4; color: #14532d; border-color: #86efac; }
.hp-icard__tag--invest  { background: #faf5ff; color: #6b21a8; border-color: #ddd6fe; }
.hp-icard__tag--consult { background: var(--md-blue-light); color: #1044b0; border-color: var(--md-blue-mid); }

.hp-icard__desc {
  font-size: 13px;
  color: var(--md-gray-600);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-icard__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.hp-icard__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--md-gray-600);
  background: var(--md-gray-100);
  border: 1px solid var(--md-gray-200);
  border-radius: 6px;
  padding: 3px 8px;
}
.hp-icard__meta-item i { font-size: 10px; color: var(--md-blue); }

/* ── Card Footer ── */
.hp-icard__footer {
  padding: 14px 16px;
  border-top: 1px solid var(--md-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--md-gray-50);
}
.hp-icard__ticket-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--md-gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.hp-icard__ticket-val {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--md-navy);
}
.hp-icard__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: var(--md-navy);
  color: #fff;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  border: none;
  text-decoration: none !important;
}
.hp-icard__btn:hover {
  background: var(--md-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

/* ── Premium card highlight ── */
.hp-icard--premium {
  border-color: #f5d97a;
  box-shadow: 0 2px 14px rgba(230,172,0,.10);
}
.hp-icard--premium:hover {
  border-color: #e6ac00;
  box-shadow: 0 8px 28px rgba(230,172,0,.16);
}
.hp-icard--premium .hp-icard__head {
  background: linear-gradient(135deg, #fffbeb 0%, #fef9e7 100%);
  border-bottom-color: #f5d97a;
}

/* ═══════════════════════
   TESTIMONIALS (navy bg, 3-col grid)
═══════════════════════ */
.hp-section--navy .section-header { text-align: left; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; transition: background .2s ease, transform .2s ease; }
.testimonial-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.testimonial-card__role-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--md-yellow); background: rgba(255,193,7,.12); border: 1px solid rgba(255,193,7,.25); padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; align-self: flex-start; }
.testimonial-card__stars { color: var(--md-yellow); font-size: 14px; margin-bottom: 14px; }
.testimonial-card__quote { font-size: 13.5px; color: rgba(255,255,255,.78); font-style: italic; line-height: 1.75; flex: 1; margin-bottom: 20px; }
.testimonial-card__author { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.testimonial-card__role { font-size: 12px; color: rgba(255,255,255,.5); }

/* ═══════════════════════
   HOW IT WORKS — STEPPER (from fund-raiser pattern)
═══════════════════════ */
.fundraiser-process-section { background: var(--md-gray-50); border-top: 1px solid var(--md-gray-200); border-bottom: 1px solid var(--md-gray-200); }
.fundraiser-process-section .pv-header { margin-bottom: 52px; }
.fundraiser-process-section .section-h2 { margin-bottom: 16px; }
.fundraiser-process-section .section-sub { max-width: 660px; margin: 0 0 24px; font-size: 15.5px; line-height: 1.75; }
.pv-learn-btn { display: inline-flex; padding: 13px 22px; font-size: 14px; width: auto !important; }
.btn-arrow { display: inline-block; transition: transform var(--t); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.fundraiser-process-section .stepper-row { display: flex; align-items: flex-start; justify-content: space-between; position: relative; gap: 0; margin-bottom: 0; overflow-x: auto; padding-bottom: 10px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.fundraiser-process-section .stepper-row::-webkit-scrollbar { display: none; }
.fundraiser-process-section .stepper-line { position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: var(--md-blue-mid); z-index: 0; pointer-events: none; }
.fundraiser-process-section .stepper-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 2; width: 25%; min-width: 200px; cursor: pointer; user-select: none; }
.fundraiser-process-section .stepper-step::after { content: "→"; position: absolute; top: 26px; right: -18px; font-size: 18px; font-weight: 700; color: var(--md-blue-mid); }
.fundraiser-process-section .stepper-step:last-child::after { display: none; }
.fundraiser-process-section .ss-bubble { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--md-blue-mid); background: #fff; display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 18px; transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.fundraiser-process-section .ss-emoji { font-size: 26px; line-height: 1; transition: filter .22s ease; }
.fundraiser-process-section .ss-badge { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; background: var(--md-blue-mid); color: #fff; border-radius: 50%; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; transition: background .22s ease; }
.fundraiser-process-section .ss-caret { display: block; font-size: 12px; color: var(--md-gray-400); margin-top: 10px; transition: transform .25s ease, color .22s ease; line-height: 1; }
.fundraiser-process-section .ss-label h3 { font-size: 14px; font-weight: 700; color: var(--md-navy); margin-bottom: 6px; transition: color .22s ease; }
.fundraiser-process-section .ss-label p { font-size: 12px; color: var(--md-gray-600); line-height: 1.55; margin: 0; }
.fundraiser-process-section .stepper-step:hover .ss-bubble { border-color: var(--md-blue); box-shadow: 0 0 0 5px var(--md-blue-light), 0 4px 14px rgba(45,108,223,.15); transform: translateY(-2px); }
.fundraiser-process-section .stepper-step:hover .ss-badge { background: var(--md-blue); }
.fundraiser-process-section .stepper-step:hover .ss-caret { color: var(--md-blue); }
.fundraiser-process-section .stepper-step:hover .ss-label h3 { color: var(--md-blue); }
.fundraiser-process-section .stepper-step.active .ss-bubble { background: var(--md-blue); border-color: var(--md-blue); box-shadow: 0 0 0 5px var(--md-blue-light), var(--shadow-blue); transform: translateY(-2px); }
.fundraiser-process-section .stepper-step.active .ss-emoji { filter: brightness(0) invert(1); }
.fundraiser-process-section .stepper-step.active .ss-badge { background: var(--md-navy); }
.fundraiser-process-section .stepper-step.active .ss-caret { color: var(--md-blue); transform: rotate(180deg); }
.fundraiser-process-section .stepper-step.active .ss-label h3 { color: var(--md-blue); }
@keyframes fadePanel { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.fundraiser-process-section .step-panel { display: none; width: 100%; animation: fadePanel .32s ease; }
.fundraiser-process-section .step-panel.open { display: block; margin-top: 32px; }
.fundraiser-process-section .step-panel-inner { background: #fff; border: 1.5px solid var(--md-blue-mid); border-radius: var(--radius-lg); padding: 28px; display: grid; grid-template-columns: 260px 1fr; grid-template-rows: auto auto; gap: 0 32px; position: relative; overflow: hidden; }
.fundraiser-process-section .step-panel-inner::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--md-blue),var(--md-blue-mid)); }
.fundraiser-process-section .sp-intro { grid-column: 1; grid-row: 1/3; padding-right: 32px; border-right: 1px solid var(--md-gray-200); display: flex; flex-direction: column; }
.fundraiser-process-section .sp-step-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: var(--md-blue); background: var(--md-blue-light); padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; align-self: flex-start; }
.fundraiser-process-section .sp-intro h4 { font-size: 16px; font-weight: 700; color: var(--md-navy); line-height: 1.3; margin-bottom: 10px; }
.fundraiser-process-section .sp-intro p { font-size: 13px; color: var(--md-gray-600); line-height: 1.65; margin: 0; }
.fundraiser-process-section .sp-values { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; border: 1px solid var(--md-gray-200); border-radius: var(--radius-md); overflow: hidden; }
.fundraiser-process-section .value-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-bottom: 1px solid var(--md-gray-200); transition: background var(--t); }
.fundraiser-process-section .value-row.last { border-bottom: none; }
.fundraiser-process-section .value-row:hover { background: var(--md-blue-light); }
.fundraiser-process-section .vr-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.fundraiser-process-section .vr-body { flex: 1; }
.fundraiser-process-section .vr-body h3 { font-size: 13px; font-weight: 700; color: var(--md-navy); margin-bottom: 2px; }
.fundraiser-process-section .vr-body p { font-size: 11.5px; color: var(--md-gray-600); line-height: 1.5; margin: 0; }
.fundraiser-process-section .vr-cta { font-size: 11.5px; font-weight: 700; color: var(--md-blue); white-space: nowrap; flex-shrink: 0; padding: 5px 10px; background: var(--md-blue-light); border-radius: 6px; transition: background var(--t), color var(--t); text-decoration: none !important; }
.fundraiser-process-section .vr-cta:hover { background: var(--md-blue); color: #fff; }
.fundraiser-process-section .sp-cta-row { grid-column: 2; grid-row: 2; display: flex; gap: 10px; flex-wrap: wrap; padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--md-gray-200); align-items: center; }
.fundraiser-process-section .sp-cta-row .btn { height: 40px; justify-content: center; white-space: nowrap; }
.fundraiser-process-section .sp-cta-row .btn-primary { min-width: 220px; }
.fundraiser-process-section .sp-cta-row .btn-outline { padding: 9px 16px; font-size: 13px; }

/* ═══════════════════════
   TOOLS
═══════════════════════ */
.hp-tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hp-tool-card { background: #fff; border: 1.5px solid var(--md-gray-200); border-radius: var(--radius-lg); padding: 26px 22px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; position: relative; }
.hp-tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); border-color: var(--md-blue-mid); }
.hp-tool-card__icon { font-size: 28px; margin-bottom: 10px; }
.hp-tool-card__badge { position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 700; text-transform: uppercase; background: #d1fae5; color: #065f46; padding: 3px 8px; border-radius: 4px; }
.hp-tool-card__title { font-size: 15px; font-weight: 700; color: var(--md-navy); margin-bottom: 8px; line-height: 1.3; }
.hp-tool-card__question { font-size: 13px; font-weight: 600; color: var(--md-blue); margin-bottom: 8px; font-style: italic; }
.hp-tool-card__body { font-size: 13px; color: var(--md-gray-600); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.hp-tool-card__link { font-size: 13px; font-weight: 700; color: var(--md-blue); display: inline-flex; align-items: center; gap: 4px; margin-top: auto; transition: gap .15s ease; }
.hp-tool-card:hover .hp-tool-card__link { gap: 7px; }

/* ═══════════════════════
   CAAS — card grid + quote strip
═══════════════════════ */
.hp-caas-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 32px; }
.hp-caas-card { background: #fff; border: 1.5px solid var(--md-gray-200); border-radius: var(--radius-lg); padding: 26px 22px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.hp-caas-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); border-color: var(--md-blue-mid); }
.hp-caas-card__icon { font-size: 28px; margin-bottom: 14px; }
.hp-caas-card__title { font-size: 14.5px; font-weight: 700; color: var(--md-navy); margin-bottom: 10px; line-height: 1.3; }
.hp-caas-card__body { font-size: 13px; color: var(--md-gray-600); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.hp-caas-card__link { font-size: 12.5px; font-weight: 700; color: var(--md-blue); display: inline-flex; align-items: center; gap: 4px; transition: gap .15s ease; margin-top: auto; }
.hp-caas-card:hover .hp-caas-card__link { gap: 7px; }

.hp-caas-bottom { display: flex; align-items: center; gap: 28px; background: var(--md-navy); border-radius: var(--radius-lg); padding: 28px 32px; }
.hp-caas-quote-strip { flex: 1; }
.hp-caas-quote-strip__stars { color: var(--md-yellow); font-size: 14px; margin-bottom: 10px; }
.hp-caas-quote-strip__text { font-size: 14px; color: rgba(255,255,255,.82); font-style: italic; line-height: 1.75; margin-bottom: 14px; }
.hp-caas-quote-strip__author { display: flex; align-items: center; gap: 10px; }
.hp-caas-quote-strip__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--md-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; flex-shrink: 0; }
.hp-caas-quote-strip__author strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.hp-caas-quote-strip__author span { display: block; font-size: 12px; color: rgba(255,255,255,.5); }
.hp-caas-bottom .btn-primary { flex-shrink: 0; white-space: nowrap; }

/* ═══════════════════════
   CTA + FAQ BAND
═══════════════════════ */
.cta-faq-band { background: var(--md-blue-dark); padding: 64px 0; position: relative; overflow: hidden; }
.cta-faq-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 400px at 100% 0%, rgba(255,193,7,.07) 0%, transparent 60%), radial-gradient(ellipse 400px 300px at 0% 100%, rgba(45,108,223,.18) 0%, transparent 60%); pointer-events: none; }
.cfb-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.cfb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.cfb-cta-block { color: #fff; }
.cfb-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--md-yellow); background: rgba(255,193,7,.12); border: 1px solid rgba(255,193,7,.3); padding: 4px 14px; border-radius: 999px; margin-bottom: 18px; }
.cfb-h2 { font-size: clamp(22px,2.8vw,34px); font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 14px; }
.cfb-sub { font-size: 14.5px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 26px; }
.cfb-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.cfb-step { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,.88); font-weight: 500; padding: 6px 0; }
.cfb-step-num { width: 26px; height: 26px; background: var(--md-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,.25); }
.cfb-step-arrow { padding-left: 8px; font-size: 11px; color: rgba(255,255,255,.3); line-height: 1; }
.cfb-btns { display: flex; flex-direction: column; gap: 10px; }
.cfb-btn-primary { background: var(--md-yellow); color: var(--md-navy); font-size: 14.5px; font-weight: 700; padding: 14px 26px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; justify-content: center; gap: 7px; transition: .25s ease; box-shadow: 0 4px 16px rgba(255,193,7,.35); white-space: nowrap; border: none; width: 100%; cursor: pointer; text-decoration: none !important; }
.cfb-btn-primary:hover { background: var(--md-yellow-dark); color: var(--md-navy); transform: translateY(-1px); }
.cfb-btn-secondary { background: transparent; color: rgba(255,255,255,.9); font-size: 14.5px; font-weight: 600; padding: 14px 22px; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,.35); display: inline-flex; align-items: center; justify-content: center; gap: 6px; transition: .25s ease; width: 100%; cursor: pointer; text-decoration: none !important; }
.cfb-btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); color: #fff; }
.cfb-faq-block { background: #fff; border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: 0 8px 32px rgba(0,0,0,.14); }
.cfb-faq-title { font-size: 15px; font-weight: 700; color: var(--md-navy); margin-bottom: 16px; line-height: 1.35; }
.cfb-faq-block .faq-item { border-bottom: 1px solid var(--md-gray-200); }
.cfb-faq-block .faq-item:first-of-type { border-top: 1px solid var(--md-gray-200); }
.cfb-faq-block .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--md-navy); transition: color var(--t); gap: 12px; background: none; border: none; width: 100%; text-align: left; font-family: 'Roboto', sans-serif; }
.cfb-faq-block .faq-q:hover { color: var(--md-blue); }
.cfb-faq-block .faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--md-gray-100); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 300; color: var(--md-gray-600); transition: transform .3s ease, background .3s ease, color .3s ease; flex-shrink: 0; }
.cfb-faq-block .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--md-blue-dark); color: #fff; }
.cfb-faq-block .faq-item.open .faq-q { color: var(--md-blue-dark); }
.cfb-faq-block .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; font-size: 13px; color: var(--md-gray-600); line-height: 1.7; }
.cfb-faq-block .faq-item.open .faq-a { max-height: 300px; padding-bottom: 14px; }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
.md-footer { background: var(--md-navy); font-family: 'Roboto', sans-serif; color: #fff; border-top: 1px solid rgba(255,255,255,.07); }
.md-footer__body { padding: 44px 0 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.md-footer__grid { display: grid; grid-template-columns: 220px repeat(5, 1fr); gap: 0 28px; align-items: start; }
.md-footer__brand { display: flex; flex-direction: column; }
.md-footer__logo { display: block; margin-bottom: 22px; }
.md-footer__logo img { height: 28px; width: auto; }
.md-footer__contact { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.md-footer__contact-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.65); }
.md-footer__contact-row i { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 1px; flex-shrink: 0; }
.md-footer__contact-row a { color: rgba(255,255,255,.65); transition: color .18s ease; }
.md-footer__contact-row a:hover { color: #fff; }
.md-footer__addresses { display: flex; flex-direction: column; gap: 6px; }
.md-footer__addr { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }
.md-footer__addr strong { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 1px; }
.md-footer__social-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.md-footer__social-icons { display: flex; gap: 8px; }
.md-footer__social-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,.55); transition: background .18s ease, color .18s ease; }
.md-footer__social-icon:hover { background: var(--md-yellow); color: var(--md-navy); }
.md-footer__nav-heading { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.md-footer__nav-list { display: flex; flex-direction: column; gap: 9px; }
.md-footer__nav-list a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .18s ease; }
.md-footer__nav-list a:hover { color: #fff; }
.md-footer__badge { display: inline-block; font-size: 9px; font-weight: 700; background: rgba(255,193,7,.18); color: var(--md-yellow); padding: 2px 6px; border-radius: 4px; margin-left: 4px; vertical-align: middle; }
.md-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 20px 0; }
.md-footer__copy { font-size: 12px; color: rgba(255,255,255,.35); margin: 0; }
.md-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.md-footer__legal a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .18s ease; }
.md-footer__legal a:hover { color: rgba(255,255,255,.8); }

/* ═══════════════════════
   STICKY MOBILE BAR
═══════════════════════ */
.hp-mob-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1.5px solid var(--md-gray-200); padding: 10px 16px 14px; z-index: 1100; flex-direction: column; gap: 8px; box-shadow: 0 -4px 20px rgba(0,0,0,.1); transform: translateY(100%); transition: transform .3s ease; }
.hp-mob-bar.visible { transform: translateY(0); }
@media (max-width: 768px) { .hp-mob-bar { display: flex; } }
.hp-mob-bar__primary { display: flex; align-items: center; justify-content: center; height: 46px; background: var(--md-yellow); color: var(--md-navy); font-size: 14.5px; font-weight: 700; border-radius: var(--radius-sm); text-decoration: none !important; transition: background .18s ease; }
.hp-mob-bar__primary:hover { background: var(--md-yellow-dark); color: var(--md-navy); }
.hp-mob-bar__login { text-align: center; font-size: 13px; font-weight: 600; color: var(--md-blue); text-decoration: none !important; }

/* ═══════════════════════
   VERIFIED NETWORK STRIP
═══════════════════════ */
.hp-verified-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.hp-verified-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}
.hp-va {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid #fff;
  margin-left: -8px;
  flex-shrink: 0;
  position: relative;
  transition: transform .18s ease, z-index 0s;
  cursor: default;
}
.hp-va:first-child { margin-left: 0; }
.hp-va:hover { transform: translateY(-3px) scale(1.1); z-index: 10; }
.hp-va--buyer   { background: #eff6ff; color: #1d4ed8; }
.hp-va--investor { background: #faf5ff; color: #7c3aed; }
.hp-va--ib      { background: var(--md-blue-light); color: var(--md-blue); }
.hp-va--advisor { background: #f0fdf4; color: #166534; }
.hp-va i {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  display: inline-block;
}
.hp-va--more {
  background: var(--md-navy);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: -.02em;
  width: 38px;
  border-radius: 999px;
  padding: 0 5px;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
}

/* ── Conf card trust badges (Domain Verified + MD Verified) ── */
.hp-conf-card__trust-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hp-conf-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: .01em;
  line-height: 1.4;
  position: relative;
  cursor: default;
  tabindex: 0;
}
.hp-conf-trust-badge i {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
}
.hp-conf-trust-badge--domain {
  background: var(--md-blue-light);
  color: #1044b0;
  border: 1px solid var(--md-blue-mid);
}
.hp-conf-trust-badge--md {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.hp-conf-trust-badge .hp-ctip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1200;
  width: 210px;
  padding: 9px 12px;
  background: #0C2345;
  color: #fff;
  font-size: 11.5px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  line-height: 1.55;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(12,35,69,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events: none;
  white-space: normal;
}
.hp-conf-trust-badge .hp-ctip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #0C2345;
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}
.hp-conf-trust-badge .hp-ctip .bi {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-size: 11px;
  color: #EBC21E;
  margin-right: 4px;
  vertical-align: -1px;
}
.hp-conf-trust-badge:hover .hp-ctip,
.hp-conf-trust-badge:focus-within .hp-ctip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.hp-verified-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 4px 12px;
}
.hp-verified-label i { font-size: 11px; color: #16a34a; }

/* ═══════════════════════
   GUIDES SECTION
═══════════════════════ */
.hp-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hp-guide-card {
  background: #fff;
  border: 1.5px solid var(--md-gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-decoration: none !important;
  color: inherit;
  position: relative;
}
.hp-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-lg);
  border-color: var(--md-blue-mid);
}
/* top accent bar */
.hp-guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--md-blue-mid);
  transition: background .22s ease;
}
.hp-guide-card:hover::before { background: var(--md-blue); }

.hp-guide-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 24px 22px 0;
  flex-shrink: 0;
  transition: transform .22s ease;
}
.hp-guide-card:hover .hp-guide-card__icon-wrap { transform: scale(1.08); }
.hp-guide-card__icon-wrap--sell  { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.hp-guide-card__icon-wrap--buy   { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.hp-guide-card__icon-wrap--raise { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

.hp-guide-card__body {
  padding: 16px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hp-guide-card__label {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--md-blue);
}
.hp-guide-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--md-navy);
  line-height: 1.28;
  margin: 0;
  transition: color .18s ease;
}
.hp-guide-card:hover .hp-guide-card__title { color: var(--md-blue); }
.hp-guide-card__desc {
  font-size: 13px;
  color: var(--md-gray-600);
  line-height: 1.68;
  margin: 0;
}
.hp-guide-card__chapters {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hp-guide-card__chapters li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--md-gray-600);
}
.hp-guide-card__chapters li i {
  font-size: 11px;
  color: #16a34a;
  flex-shrink: 0;
}

.hp-guide-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--md-gray-200);
  background: var(--md-gray-50);
}
.hp-guide-card__read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--md-blue);
  transition: gap .15s ease;
}
.hp-guide-card:hover .hp-guide-card__read { gap: 8px; }
.hp-guide-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: #d1fae5;
  color: #065f46;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: .04em;
}

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 1100px) {
  .md-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .hp-tools-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet: collapse hero to single column ── */
@media (max-width: 1024px) {
  .hp-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 48px;
  }
  /* Personas go above the text on tablet */
  .hp-hero__personas { order: 2; }
  .hp-hero__content  { order: 1; }
  .hp-hero__personas-inner { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .hp-hero__sub { max-width: 100%; }
  .persona-card { padding: 16px 14px; }
  .persona-card-body { display: none; }

  .hp-conf-grid { grid-template-columns: 1fr; gap: 40px; }
  .hp-story-grid { grid-template-columns: 1fr; gap: 36px; }
  .hp-caas-grid { grid-template-columns: 1fr; gap: 36px; }
  .hp-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hp-guides-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hp-role-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-icard-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-deals-tabs { gap: 6px; }
  .hp-deals-tab { padding: 9px 13px; font-size: 12.5px; }
  .hp-deals-tab .hdt-icon { width: 24px; height: 24px; font-size: 11px; }
  .cfb-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-caas-services { grid-template-columns: repeat(2, 1fr); }
  .hp-caas-bottom { flex-direction: column; align-items: flex-start; }
  .fundraiser-process-section .step-panel-inner { grid-template-columns: 1fr; }
  .fundraiser-process-section .sp-intro { grid-column: auto; grid-row: auto; border-right: none; padding-right: 0; border-bottom: 1px solid var(--md-gray-200); padding-bottom: 20px; }
  .fundraiser-process-section .sp-values { grid-column: auto; grid-row: auto; }
  .fundraiser-process-section .sp-cta-row { grid-column: auto; grid-row: auto; }
  /* Personas: 2×2 grid on tablet */
  .hp-hero__personas-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .persona-card-body { display: block; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 0 48%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ── Mobile: full single-column stack ── */
@media (max-width: 768px) {
  /* Hero layout */
  .hp-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .hp-hero__content { order: 1; padding-bottom: 24px; }
  .hp-hero__personas { order: 2; }

  /* H1 & sub */
  .hp-hero__h1 { font-size: clamp(22px, 7vw, 34px); line-height: 1.1; margin-bottom: 12px; }
  .hp-hero__sub { font-size: 14px; line-height: 1.62; margin-bottom: 20px; max-width: 100%; }

  /* Badge */
  .hero-badge { font-size: 10px; padding: 5px 12px 5px 9px; margin-bottom: 16px; letter-spacing: .7px; }

  /* Seller card — compact on mobile */
  .seller-card { padding: 13px 14px; gap: 11px; }
  .seller-card-icon { width: 40px; height: 40px; font-size: 19px; }
  .seller-card-title { font-size: 13px; }
  .seller-card-body { font-size: 11.5px; }
  /* Hide the pill link on mobile — title + icon is enough */
  .seller-card-link { display: none; }

  /* Persona cards — full-bleed horizontal scroll carousel */
  .hp-hero__personas {
    margin: 0 -16px;
    gap: 10px;
  }
  /* carousel wrap: position relative for arrow overlay */
  .persona-carousel-wrap {
    position: relative;
  }
  /* Nav arrows — shown on mobile */
  .persona-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-60%); /* offset for card vertical centre, above microcopy */
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
    padding: 0;
    line-height: 1;
  }
  .persona-nav:active {
    background: rgba(255,255,255,.28);
    transform: translateY(-60%) scale(.94);
  }
  .persona-nav--prev { left: 4px; }
  .persona-nav--next { right: 4px; }

  .hp-hero__personas-inner {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 4px 44px 16px; /* extra horizontal padding to clear arrows */
    grid-template-columns: unset !important;
    scrollbar-width: none;
    align-items: stretch;
  }
  .hp-hero__personas-inner::-webkit-scrollbar { display: none; }
  .persona-card {
    flex: 0 0 68vw;
    min-width: 200px;
    max-width: 260px;
    scroll-snap-align: start;
    padding: 16px 14px 14px;
  }
  .persona-card-body { display: block; font-size: 11.5px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .persona-card-icon { width: 36px; height: 36px; font-size: 16px; margin-bottom: 10px; }
  .persona-card-title { font-size: 13px; margin-bottom: 5px; }
  .persona-card-link { font-size: 11.5px; }

  /* Microcopy — horizontal scrollable */
  .hero-micro {
    gap: 14px;
    font-size: 11px;
    padding: 6px 16px 28px;
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .hero-micro::-webkit-scrollbar { display: none; }
  .hero-micro span { white-space: nowrap; flex-shrink: 0; }

  /* Rest of page */
  .hp-section { padding: 52px 0; }
  .hp-trust-bar__inner { flex-wrap: wrap; }
  .hp-trust-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hp-trust-div { display: none; }
  .cta-faq-band { padding: 48px 0; }
  .cfb-inner { padding: 0 16px; }
  .announcement-bar { font-size: 12px; }
  .announcement-bar .divider:first-of-type { display: none; }
  .fundraiser-process-section .stepper-step { min-width: 160px; }
  .hp-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .hp-verified-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hp-guide-card__icon-wrap { margin: 20px 18px 0; }
  .hp-guide-card__body { padding: 14px 18px 18px; }
  .hp-guide-card__footer { padding: 12px 18px; }
}

@media (max-width: 640px) {
  .md-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .md-footer__brand { grid-column: 1 / -1; }
  .hp-role-grid { grid-template-columns: 1fr; }
  .hp-icard-grid { grid-template-columns: 1fr; }
  .hp-deals-tabs { gap: 5px; }
  .hp-deals-tab .hdt-label { font-size: 12px; }
  .hp-tools-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hp-caas-services { grid-template-columns: 1fr; }
  .hp-story-stats { grid-template-columns: 1fr 1fr; }
  .hp-guides-grid { grid-template-columns: 1fr; }
  .container-lg { padding: 0 16px; }

  /* Banner — narrower cards on small phones */
  .hp-hero__inner { padding-top: 32px; }
  .hp-hero__personas { margin: 0 -16px; }
  .hp-hero__personas-inner { padding: 4px 16px 14px; gap: 8px; }
  .persona-card { flex: 0 0 72vw; min-width: 190px; max-width: 240px; padding: 14px 13px 13px; }
  .persona-card-title { font-size: 12.5px; }
  .persona-card-body { font-size: 11px; }
  .persona-card-link { font-size: 11px; }
  .hero-micro { padding: 4px 16px 24px; gap: 12px; font-size: 10.5px; }

  .hp-founder-quote { padding: 24px 20px; }
  .hp-founder-quote__mark { font-size: 60px; }
  .hp-founder-quote__text { font-size: 14px; }
}

@media (max-width: 480px) {
  .hp-hero__h1 { font-size: 22px; }
  .hp-hero__sub { font-size: 13.5px; }
  .persona-card { flex: 0 0 78vw; min-width: 180px; max-width: 220px; }
  .section-h2 { font-size: 22px; }
  .md-footer__grid { grid-template-columns: 1fr 1fr; }
  .md-footer__bottom { flex-direction: column; align-items: flex-start; }
  .md-footer__legal { gap: 12px; }
  .hp-trust-item { flex: 1 1 50%; }
  .hp-conf-card { padding: 16px; }
  .seller-card-body { display: none; }
  /* icard footer: stack on tiny screens */
  .hp-icard__footer { flex-direction: column; align-items: stretch; gap: 10px; }
  .hp-icard__btn { width: 100%; justify-content: center; }
  /* Deal tabs: hide label on very small screens, icon only */
  .hp-deals-tab { padding: 9px 11px; }
}

@media (max-width: 360px) {
  .container-lg { padding: 0 12px; }
  .hp-hero__inner { padding-top: 28px; }
  .hp-hero__h1 { font-size: 20px; }
  .hp-hero__personas { margin: 0 -12px; }
  .hp-hero__personas-inner { padding: 4px 12px 14px; gap: 8px; }
  .persona-card { flex: 0 0 80vw; min-width: 170px; }
  .announcement-bar .divider { display: none; }
}