/* ============================================================
   HustleHub Design System
   Aesthetic: Refined industrial — warm off-white, deep charcoal,
   electric amber accent. Premium, South African, trustworthy.
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* ── GetAHustler brand palette — matched to logo ── */
  --c-bg:       #F4F6FA;
  --c-surface:  #FFFFFF;
  --c-surface2: #EDF0F7;
  --c-border:   #D8DEE9;
  --c-border2:  #B8C2D6;

  /* Navy — primary brand dark (logo "Hustler" text + swoosh) */
  --c-ink:      #1B3A6B;
  --c-ink2:     #2C5099;
  --c-ink3:     #6D7FA8;
  --c-ink4:     #A0ADCC;

  /* Orange — primary brand accent (logo "Get A" + character) */
  --c-amber:    #F7941D;
  --c-amber-lt: #FEF3E2;
  --c-amber-dk: #D4750A;

  --c-green:    #1E8449;
  --c-green-lt: #E8F8EE;
  --c-red:      #C0392B;
  --c-red-lt:   #FDECEA;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 3px rgba(26,23,20,.06);
  --shadow-sm: 0 2px 8px rgba(26,23,20,.08);
  --shadow-md: 0 4px 20px rgba(26,23,20,.10);
  --shadow-lg: 0 8px 40px rgba(26,23,20,.13);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h: 98px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; padding: 40px 0 80px; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--c-ink);
  margin-bottom: 0;
}

a { color: var(--c-ink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-amber-dk); }

.text-muted { color: var(--c-ink3) !important; }

/* ── Navbar ──────────────────────────────────────────────── */
.hh-nav {
  height: var(--nav-h);
  background: var(--c-ink);
  border-bottom: 1px solid rgba(248, 245, 245, 0.431);
  position: sticky; top: 0; z-index: 1000;
}

.hh-nav > .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.hh-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -.02em;
  text-decoration: none;
  margin-right: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  white-space: nowrap;
}

.hh-brand-dot {
  width: 7px; height: 7px;
  background: var(--c-amber);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.hh-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  list-style: none;
  margin: 0; padding: 0;
}

.hh-nav-links .nav-link {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,.6) !important;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  transition: all .15s;
  white-space: nowrap;
}

.hh-nav-links .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.08); }

.hh-nav-actions {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0; flex-shrink: 0;
}

.hh-nav-user {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  padding: 0 4px;
  white-space: nowrap;
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  background: none;
  cursor: pointer;
}

.navbar-toggler-icon {
  display: block;
  width: 22px; height: 18px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 22'%3e%3cpath stroke='rgba(255,255,255,.8)' stroke-width='2.2' stroke-linecap='round' d='M0 1h30M0 11h30M0 21h30'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 991px) {
  .hh-nav-collapse {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--c-ink);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 12px 16px 16px;
    display: none;
  }
  .hh-nav-collapse.show { display: block; }
  .hh-nav-links { flex-direction: column; align-items: flex-start; gap: 2px; }
  .hh-nav-links .nav-link { padding: 8px 12px; }
  .hh-nav-actions { flex-direction: column; align-items: flex-start; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.1); }
}

/* ── Nav notification badges ────────────────────────────── */
.nav-notif-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* The small bell icon that floats above the link */
.nav-notif-bell {
  position: absolute;
  top: -11px;
  right: -14px;
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--c-red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: 999px;
  padding: 2px 5px 2px 3px;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 0 0 2px var(--c-ink);
  white-space: nowrap;
  letter-spacing: 0;
  animation: bell-pulse 2.5s ease-in-out infinite;
}

.nav-notif-bell svg {
  width: 8px;
  height: 8px;
  fill: #fff;
  flex-shrink: 0;
}

@keyframes bell-pulse {
  0%, 100% { transform: scale(1); }
  10%       { transform: scale(1.2) rotate(-8deg); }
  20%       { transform: scale(1.2) rotate(8deg); }
  30%       { transform: scale(1) rotate(0); }
}

/* Warning badge (billing) */
.nav-notif-bell.warn {
  background: var(--c-amber-dk);
  color: #fff;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  border-radius: var(--radius-md);
  padding: 9px 20px; line-height: 1.4;
  transition: all .15s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid transparent; text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--c-amber); color: var(--c-ink) !important; border-color: var(--c-amber); }
.btn-primary:hover { background: var(--c-amber-dk); border-color: var(--c-amber-dk); color: var(--c-ink) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,160,32,.35); }
.btn-primary:active { transform: translateY(0); }

.btn-dark { background: var(--c-ink); color: #fff !important; border-color: var(--c-ink); }
.btn-dark:hover { background: var(--c-ink2); border-color: var(--c-ink2); color: #fff !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline-dark { background: transparent; color: var(--c-ink) !important; border-color: var(--c-border2); }
.btn-outline-dark:hover { background: var(--c-surface2); border-color: var(--c-ink); color: var(--c-ink) !important; }

.btn-outline-secondary { background: transparent; color: var(--c-ink3) !important; border-color: var(--c-border); }
.btn-outline-secondary:hover { background: var(--c-surface2); color: var(--c-ink) !important; border-color: var(--c-border2); }

.btn-success { background: var(--c-green); color: #fff !important; border-color: var(--c-green); }
.btn-success:hover { background: #236040; color: #fff !important; }

.btn-outline-danger { background: transparent; color: var(--c-red) !important; border-color: #E5BBBB; }
.btn-outline-danger:hover { background: var(--c-red-lt); }

.btn-lg { padding: 12px 28px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-sm { padding: 6px 14px; font-size: 13px; border-radius: var(--radius-sm); }

.btn-link { background: none; border: none; padding: 0; color: var(--c-ink3) !important; font-size: 13px; cursor: pointer; }
.btn-link:hover { color: var(--c-ink) !important; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.card-body { padding: 24px; }

.card-hover { transition: transform .2s, box-shadow .2s; }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ── Badges ──────────────────────────────────────────────── */
.badge {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 500;
  padding: 3px 9px; border-radius: 999px; line-height: 1.4;
}

.text-bg-success   { background: var(--c-green-lt) !important; color: var(--c-green) !important; }
.text-bg-warning   { background: var(--c-amber-lt) !important; color: var(--c-amber-dk) !important; }
.text-bg-danger    { background: var(--c-red-lt) !important;   color: var(--c-red) !important; }
.text-bg-dark      { background: var(--c-ink) !important;      color: #fff !important; }
.text-bg-light     { background: var(--c-surface2) !important; color: var(--c-ink2) !important; }
.text-bg-secondary { background: var(--c-surface2) !important; color: var(--c-ink3) !important; }
.border { border-color: var(--c-border) !important; }

/* ── Forms ───────────────────────────────────────────────── */
.form-label { font-size: 13px; font-weight: 500; color: var(--c-ink2); margin-bottom: 6px; display: block; }

.form-control, .form-select {
  font-family: var(--font-body); font-size: 14px; color: var(--c-ink);
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); padding: 9px 14px; width: 100%;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}

.form-control:focus, .form-select:focus {
  outline: none; border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(232,160,32,.15);
}

.form-control::placeholder { color: var(--c-ink4); }

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234A4540' stroke-width='1.5' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 14px;
  padding-right: 36px;
}

textarea.form-control { resize: vertical; min-height: 100px; }
.form-text { font-size: 12px; color: var(--c-ink4); margin-top: 5px; }
.form-check-input { width: 16px; height: 16px; border: 1px solid var(--c-border2); border-radius: 4px; margin-top: 2px; cursor: pointer; accent-color: var(--c-amber); }

/* ── Alerts ──────────────────────────────────────────────── */
.alert { border-radius: var(--radius-md); padding: 14px 18px; font-size: 14px; border: 1px solid transparent; }
.alert-success  { background: var(--c-green-lt); border-color: #B8DEC8; color: var(--c-green); }
.alert-danger   { background: var(--c-red-lt);   border-color: #ECC8C8; color: var(--c-red); }
.alert-warning  { background: var(--c-amber-lt); border-color: #F5DFA0; color: var(--c-amber-dk); }
.alert-info     { background: #EEF4FF; border-color: #C5D8F8; color: #1E4A8A; }
.alert-light    { background: var(--c-surface2); border-color: var(--c-border); color: var(--c-ink2); }

/* ── Page header ─────────────────────────────────────────── */
.page-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--c-border); }
.page-header h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 6px; }

/* ── Hero ────────────────────────────────────────────────── */
.hh-hero {
  background: var(--c-ink); padding: 80px 0 90px;
  position: relative; overflow: hidden;
}

.hh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,160,32,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 5% 85%, rgba(232,160,32,.07) 0%, transparent 60%);
  pointer-events: none;
}

.hh-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hh-hero-content { position: relative; z-index: 1; }
.hh-hero h1 { color: #fff; margin-bottom: 18px; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.06; }
.hh-hero .lead { color: rgba(255,255,255,.58); font-size: 1.05rem; font-weight: 300; max-width: 520px; line-height: 1.7; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

.btn-hero-primary {
  background: var(--c-amber); color: var(--c-ink) !important; border: none;
  font-weight: 600; font-size: 15px; padding: 13px 30px; border-radius: var(--radius-lg);
}
.btn-hero-primary:hover {
  background: var(--c-amber-dk); transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232,160,32,.38);
}

.btn-hero-secondary {
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.8) !important;
  border: 1px solid rgba(255,255,255,.14); font-size: 15px;
  padding: 13px 30px; border-radius: var(--radius-lg);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.13); color: #fff !important; }

.hero-trust-strip { display: flex; align-items: center; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); }

/* ── Feature cards ───────────────────────────────────────── */
.feature-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-xs);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 44px; height: 44px; background: var(--c-amber-lt);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; font-size: 20px;
}

.feature-card h3 { font-size: .95rem; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--c-ink3); margin: 0; line-height: 1.6; }

/* ── Company cards ───────────────────────────────────────── */
.company-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xs); display: flex; flex-direction: column;
  height: 100%; transition: transform .2s, box-shadow .2s;
}
.company-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.company-card-body { padding: 22px; flex: 1; }
.company-card-footer { padding: 14px 22px; border-top: 1px solid var(--c-border); background: var(--c-surface2); }

.company-avatar {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  background: var(--c-ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  flex-shrink: 0; overflow: hidden;
}
.company-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ── Category pills ──────────────────────────────────────── */
.cat-pill {
  display: inline-block; font-size: 11.5px; font-weight: 500;
  padding: 3px 10px; background: var(--c-surface2); border: 1px solid var(--c-border);
  border-radius: 999px; color: var(--c-ink2); margin: 2px;
}

/* ── Interest cards ──────────────────────────────────────── */
.interest-card {
  border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 20px; background: var(--c-surface); margin-bottom: 14px;
}
.interest-card.approved { border-left: 3px solid var(--c-green); }
.interest-card.declined { border-left: 3px solid var(--c-border2); opacity: .7; }
.interest-card.pending  { border-left: 3px solid var(--c-amber); }

/* ── Data rows ───────────────────────────────────────────── */
.data-row { display: flex; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--c-border); font-size: 14px; }
.data-row:last-child { border-bottom: none; }
.data-row-label { color: var(--c-ink3); font-size: 13px; width: 110px; flex-shrink: 0; }

/* ── Stat cards ──────────────────────────────────────────── */
.stat-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 20px 22px; }
.stat-card-value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.stat-card-label { font-size: 12.5px; color: var(--c-ink3); }

/* ── Status dot ──────────────────────────────────────────── */
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.status-dot.active   { background: var(--c-green); }
.status-dot.inactive { background: var(--c-red); }
.status-dot.pending  { background: var(--c-amber); }

/* ── Empty states ────────────────────────────────────────── */
.empty-state { text-align: center; padding: 56px 24px; color: var(--c-ink3); }
.empty-state-icon { font-size: 36px; margin-bottom: 16px; opacity: .35; }
.empty-state p { font-size: 14px; max-width: 320px; margin: 0 auto 20px; }

/* ── Section layout ──────────────────────────────────────── */
.section { padding: 56px 0; }
.section-sm { padding: 32px 0; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.section-header h2 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c-ink3); }

/* ── Filter bar ──────────────────────────────────────────── */
.filter-bar { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 28px; }

/* ── Review stars ────────────────────────────────────────── */
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.star { color: var(--c-amber); font-size: 13px; }
.star.empty { color: var(--c-border2); }

/* ── Footer ──────────────────────────────────────────────── */
.hh-footer { background: #0F2347; color: rgba(255,255,255,.4); padding: 64px 0 0; margin-top: auto; }
.hh-footer-brand { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.hh-footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 260px; margin-bottom: 24px; }
.hh-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 10px; }
.hh-footer-contact-item a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.hh-footer-contact-item a:hover { color: rgba(255,255,255,.85); }
.hh-footer-contact-icon { width: 28px; height: 28px; background: rgba(255,255,255,.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; }
.hh-footer-links { list-style: none; padding: 0; margin: 0; }
.hh-footer-links li { margin-bottom: 10px; }
.hh-footer-links a { font-size: 13px; color: rgba(255,255,255,.42); transition: color .15s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.hh-footer-links a:hover { color: rgba(255,255,255,.9); }
.hh-footer-heading { font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 18px; }
.hh-footer-divider { border-top: 1px solid rgba(255,255,255,.07); margin: 48px 0 0; }
.hh-footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.hh-footer-bottom-left { font-size: 12px; color: rgba(255,255,255,.28); }
.hh-footer-bottom-right { font-size: 12px; color: rgba(255,255,255,.28); display: flex; align-items: center; gap: 6px; }
.hh-footer-bottom-right a { color: rgba(255,255,255,.28); text-decoration: none; transition: color .15s; }
.hh-footer-bottom-right a:hover { color: rgba(255,255,255,.7); }
.hh-footer-socials { display: flex; gap: 8px; margin-top: 24px; }
.hh-social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: background .15s, transform .15s; text-decoration: none; flex-shrink: 0; }
.hh-social-btn:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.hh-social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,.55); }
.hh-social-btn:hover svg { fill: #fff; }
.hh-footer-amber-dot { width: 6px; height: 6px; background: var(--c-amber); border-radius: 50%; display: inline-block; flex-shrink: 0; }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up   { animation: fadeUp .4s ease both; }
.fade-up-1 { animation-delay: .06s; }
.fade-up-2 { animation-delay: .12s; }
.fade-up-3 { animation-delay: .18s; }
.fade-up-4 { animation-delay: .24s; }

/* ── Utilities ───────────────────────────────────────────── */
.text-amber { color: var(--c-amber-dk); }
.text-green { color: var(--c-green); }
.text-red   { color: var(--c-red); }
.text-ink3  { color: var(--c-ink3); }
.bg-surface2 { background: var(--c-surface2); }


/* ── Full-cover hero ────────────────────────────────────── */
.hh-hero-cover {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hh-hero-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.hh-hero-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,58,107,.88) 0%,
    rgba(27,58,107,.65) 50%,
    rgba(27,58,107,.30) 100%
  );
  z-index: 1;
}

.hh-hero-cover-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
  max-width: 680px;
}

.hh-hero-cover-content .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hh-hero-cover-content .eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--c-amber);
  border-radius: 2px;
  flex-shrink: 0;
}

.hh-hero-cover-content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.04;
  margin-bottom: 24px;
}

.hh-hero-cover-content h1 .accent {
  color: var(--c-amber);
  font-style: italic;
}

.hh-hero-cover-content .hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 36px;
}

.hh-hero-cover-content .hero-actions {
  margin-bottom: 36px;
  margin-top: 0;
}

.hh-hero-cover-content .trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hh-hero-cover-content .trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}

.hh-hero-cover-content .trust-item .tick {
  width: 16px;
  height: 16px;
  background: rgba(232,160,32,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-amber);
  font-size: 9px;
  font-weight: 700;
}

.hero-cover-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--c-ink4);

}

/* mobile */
@media (max-width: 767px) {
  .hh-hero-cover { min-height: 480px; }
  .hh-hero-cover-content { padding-top: 60px; padding-bottom: 60px; }
  .hh-hero-cover-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hh-hero-cover-content .hero-sub { font-size: .95rem; }
  .hero-cover-stats { display: none; }
}

/* Story section */
.story-section {
  background: var(--c-surface2);
  padding: 72px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-step {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.story-step:last-child { margin-bottom: 0; }

.story-num {
  width: 36px;
  height: 36px;
  background: var(--c-amber-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  color: var(--c-amber-dk);
  flex-shrink: 0;
}

.story-step-body h4 {
  font-size: .95rem;
  margin-bottom: 6px;
}

.story-step-body p {
  font-size: 13.5px;
  color: var(--c-ink3);
  margin: 0;
  line-height: 1.6;
}

.story-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95);
}

.story-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--c-ink);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 200px;
}

.story-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-amber);
  margin-bottom: 2px;
}

/* Happy company CTA band */
.happy-band {
  background: var(--c-amber);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.happy-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.happy-band .container { position: relative; z-index: 1; }

.happy-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--c-ink);
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.happy-band p {
  font-size: 15px;
  color: rgba(26,23,20,.65);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-band-primary {
  background: var(--c-ink);
  color: #fff !important;
  border: none;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-lg);
  transition: all .15s;
}

.btn-band-primary:hover {
  background: var(--c-ink2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,23,20,.25);
}

.btn-band-secondary {
  background: rgba(26,23,20,.1);
  color: var(--c-ink) !important;
  border: none;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: var(--radius-lg);
  transition: all .15s;
}

.btn-band-secondary:hover { background: rgba(26,23,20,.18); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — mobile-first corrections
   Breakpoints: 575 (xs), 767 (sm), 991 (md/tablet), 1199 (lg)
   ══════════════════════════════════════════════════════════ */

/* ── Bootstrap-like grid helpers (no Bootstrap loaded) ── */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 16px; padding-right: 16px; }
@media (min-width: 576px)  { .container { max-width: 540px;  } }
@media (min-width: 768px)  { .container { max-width: 720px;  } }
@media (min-width: 992px)  { .container { max-width: 960px;  padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1280px; } }

.row { display: flex; flex-wrap: wrap; margin-left: -12px; margin-right: -12px; }
.row > * { padding-left: 12px; padding-right: 12px; }
.g-3 { --gap: 12px; } .g-4 { --gap: 16px; } .g-5 { --gap: 20px; }
.row.g-3, .row.g-4, .row.g-5 { margin-left: calc(var(--gap) / -2); margin-right: calc(var(--gap) / -2); row-gap: var(--gap); }
.row.g-3 > *, .row.g-4 > *, .row.g-5 > * { padding-left: calc(var(--gap) / 2); padding-right: calc(var(--gap) / 2); }

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6  { flex: 0 0 50%;  max-width: 50%;  }

@media (min-width: 576px) {
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-2  { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-md-3  { flex: 0 0 25%;     max-width: 25%;     }
  .col-md-4  { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-5  { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-md-6  { flex: 0 0 50%;     max-width: 50%;     }
  .col-md-7  { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-md-8  { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-md-12 { flex: 0 0 100%;    max-width: 100%;    }
  .offset-md-2 { margin-left: 16.666%; }
}

@media (min-width: 992px) {
  .col-lg-2 { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-lg-3 { flex: 0 0 25%;     max-width: 25%;     }
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-lg-6 { flex: 0 0 50%;     max-width: 50%;     }
  .col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-lg-9 { flex: 0 0 75%;     max-width: 75%;     }
  .col-lg-10{ flex: 0 0 83.333%; max-width: 83.333%; }
  .col-lg-12{ flex: 0 0 100%;    max-width: 100%;    }
}

/* Visibility helpers */
.d-none    { display: none !important; }
.d-block   { display: block !important; }
.d-flex    { display: flex !important; }
@media (min-width: 768px) {
  .d-md-none  { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex  { display: flex !important; }
}
@media (min-width: 992px) {
  .d-lg-none  { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex  { display: flex !important; }
}
.ms-auto { margin-left: auto !important; }
.justify-content-center { justify-content: center !important; }

/* ── Tablet (≤991px) ───────────────────────────────────── */
@media (max-width: 991px) {

  /* Nav collapse panel */
  .hh-nav-collapse {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--c-ink);
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 8px 0 20px;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
  }
  .hh-nav-collapse.show { display: block; }

  /* Nav links — full width tap targets */
  .hh-nav-collapse .hh-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 12px;
  }
  .hh-nav-collapse .hh-nav-links li { width: 100%; }
  .hh-nav-collapse .hh-nav-links .nav-link {
    display: block;
    padding: 13px 12px;
    width: 100%;
    font-size: 15px;
    color: rgba(255,255,255,.75) !important;
    border-radius: var(--radius-md);
  }
  .hh-nav-collapse .hh-nav-links .nav-link:hover,
  .hh-nav-collapse .hh-nav-links .nav-link:active {
    background: rgba(255,255,255,.08);
    color: #fff !important;
  }

  /* Auth buttons at bottom of mobile menu */
  .hh-nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 12px 0;
    margin: 8px 12px 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  /* Logo size on mobile */
  .hh-brand img { height: 52px !important; }

  /* Hero split — stack vertically */
  .hh-hero-split { flex-direction: column; min-height: auto; }
  .hh-hero-split-left {
    flex: none;
    padding: 56px 24px 40px;
    order: 2;
  }
  .hh-hero-split-right {
    flex: none;
    height: 320px;
    order: 1;
  }
  .hh-hero-split-right::after {
    background: linear-gradient(to bottom, transparent 40%, var(--c-ink) 100%);
  }
  .hero-float-card { display: none; }

  /* Story grid — single column */
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-image-wrap { aspect-ratio: 16/9; order: -1; }

  /* Happy band — stack */
  .happy-band .container > div { grid-template-columns: 1fr !important; }
  .happy-band .d-none.d-lg-block { display: none !important; }

  /* Footer columns — 2 col */
  .hh-footer .col-lg-4 { flex: 0 0 100%; max-width: 100%; }
  .hh-footer .col-lg-2 { flex: 0 0 50%;  max-width: 50%;  }
}

/* ── Mobile (≤767px) ───────────────────────────────────── */
@media (max-width: 767px) {

  :root { --nav-h: 72px; }

  /* Base spacing */
  main { padding: 20px 0 56px; }
  .section { padding: 32px 0; }
  .section-sm { padding: 24px 0; }
  .card-body { padding: 16px; }
  .page-header { margin-bottom: 24px; padding-bottom: 18px; }
  .page-header h1 { font-size: 1.5rem; }

  /* Hero */
  .hh-hero-split-left { padding: 36px 20px 32px; }
  .hh-hero-split-right { height: 220px; }
  .hh-hero-split h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); margin-bottom: 16px; }
  .hh-hero-split .hero-sub { font-size: .95rem; margin-bottom: 24px; }
  .hh-hero-split .hero-actions { gap: 8px; margin-bottom: 24px; }
  .btn-hero-primary, .btn-hero-secondary { padding: 11px 20px; font-size: 14px; width: 100%; justify-content: center; }
  .trust-row { gap: 10px; }
  .trust-item { font-size: 11.5px; }

  /* Story section */
  .story-section { padding: 40px 0; }
  .story-step { gap: 14px; margin-bottom: 24px; }
  .story-num { width: 30px; height: 30px; font-size: .78rem; flex-shrink: 0; }
  .story-step-body h4 { font-size: .9rem; }
  .story-step-body p { font-size: 13px; }
  .story-image-wrap { border-radius: var(--radius-lg); aspect-ratio: 4/3; }
  .story-image-badge { bottom: 14px; left: 14px; padding: 10px 14px; font-size: 12px; }

  /* Happy band */
  .happy-band { padding: 40px 0; }
  .happy-band h2 { font-size: 1.5rem; }
  .btn-band-primary, .btn-band-secondary { padding: 11px 20px; font-size: 14px; width: 100%; justify-content: center; }

  /* Stat cards — 2 across */
  .stat-card { padding: 16px; }
  .stat-card-value { font-size: 1.6rem; }

  /* Buttons — make full-width where needed */
  .hero-actions .btn, .page-header .btn { min-width: 0; }

  /* Filter bar */
  .filter-bar { padding: 16px; }

  /* Data rows — stack on very narrow */
  .data-row { flex-direction: column; gap: 2px; }
  .data-row-label { width: auto; }

  /* Company detail sticky sidebar — unstick */
  .col-lg-4 > .card[style*="sticky"] { position: static !important; top: auto !important; }

  /* Footer */
  .hh-footer { padding: 40px 0 0; }
  .hh-footer .row { gap: 0; }
  .hh-footer .col-lg-4,
  .hh-footer .col-lg-2,
  .hh-footer .col-6 { flex: 0 0 100%; max-width: 100%; margin-bottom: 28px; }
  .hh-footer-tagline { max-width: 100%; }
  .hh-footer-divider { margin: 24px 0 0; }
  .hh-footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 0; }

  /* Interest cards */
  .interest-card { padding: 16px; }

  /* Matching lead cards — stack */
  .card-body [style*="display:flex;align-items:flex-start;gap:20px"] {
    flex-direction: column;
    gap: 12px;
  }

  /* Back to top button — smaller on mobile */
  #back-to-top { bottom: 16px; right: 16px; width: 38px; height: 38px; }
}

/* ── Small phones (≤374px) ──────────────────────────────── */
@media (max-width: 374px) {
  .hh-hero-split h1 { font-size: 1.7rem; }
  .btn-hero-primary, .btn-hero-secondary { font-size: 13px; padding: 10px 16px; }
  .col-6 { flex: 0 0 100%; max-width: 100%; }
}

/* ── Scroll-reveal (JS-triggered) ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
