  .totp-hero {
    background: #1a0a2e;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
  }
.totp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://www.totparchive.co.uk/images/icons/totp-navbar-logo-large.png');
    background-repeat: no-repeat;
    background-position: right 5% center;
    background-size: 280px auto;
    opacity: 0.08;
}
  .totp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1a0a2e 55%, transparent 100%);
  }
  .totp-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero-eyebrow {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e9a84c;
    margin-bottom: 0.6rem;
  }
  .hero-headline span { color: #e9a84c; }
  .hero-sub {
    max-width: 500px;
    margin-bottom: 1.5rem;
  }
  .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .hero-stat-num {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    display: block;
  }
  .hero-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-top: 2px;
  }
  .quick-links-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.38);
    margin-bottom: 8px;
  }
  .hero-pill {
    display: inline-block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 4px 14px;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
    margin-right: 6px;
    margin-bottom: 6px;
  }
  .hero-pill:hover {
    color: #e9a84c;
    border-color: rgba(233,168,76,0.45);
  }