/* Modern Money Broker — Luxury Funding Affiliate Landing Page
 * Color system: Deep Black + Rich Gold (geometric diamond luxury)
 * Typography: Playfair Display (display) / DM Sans (body)
 */

:root {
  /* Deep black foundation */
  --black-1000: #0a0a0a;
  --black-950: #0d0d0d;
  --black-900: #111111;
  --black-800: #1a1a1a;
  --black-700: #222222;

  /* Navy retained as secondary accent */
  --navy-800: #0d2147;
  --navy-700: #133065;
  --navy-600: #1a2744;

  /* Gold — primary accent */
  --gold-300: #f7d87a;
  --gold-400: #f5c842;
  --gold-500: #C9A84C;
  --gold-600: #a8892e;
  --gold-glow: rgba(201, 168, 76, 0.18);
  --gold-glow-strong: rgba(201, 168, 76, 0.35);

  /* Text */
  --white: #ffffff;
  --text-primary: #f0f0f0;
  --text-body: #d0d0d0;
  --text-muted: #888888;
  --text-dim: #555555;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(201, 168, 76, 0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1100px;
  --section-py: clamp(72px, 10vw, 128px);
}

/* ─── BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black-1000);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Bold geometric diamond texture — gold borders + 3D lighting */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-color: #0a0a0a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='56.57' patternUnits='userSpaceOnUse'%3E%3Crect x='14' y='2' width='52' height='52' rx='2' fill='none' stroke='%23C9A84C' stroke-width='0.8' opacity='0.55'/%3E%3Crect x='14' y='2' width='52' height='52' rx='2' fill='none' stroke='%23C9A84C' stroke-width='0.8' opacity='0.25' transform='translate(40 28.285)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-position: 0 0;
  opacity: 1;
}

/* 3D embossed lighting overlay — light top-left, shadow bottom-right */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.25) 100%);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── NAV BAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold-500);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--black-950);
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--gold-glow);
}
.navbar-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  line-height: 1.1;
}
.navbar-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 1px;
}
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--gold-400);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid var(--gold-500);
  transition: all 0.2s ease;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.1);
}
.navbar-cta:hover {
  background: var(--gold-500);
  color: var(--black-950);
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 148px) 0 clamp(70px, 10vw, 128px);
  background: var(--black-1000);
}

/* Radial vignette — darkens edges for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Top gold rule */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-600) 25%, var(--gold-400) 50%, var(--gold-600) 75%, transparent 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 32px;
}
.hero-eyebrow::before { content: '◆'; font-size: 7px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.96;
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 860px;
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}
.hero h1 .gold {
  color: var(--gold-400);
  display: block;
}
.hero-amount {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 26px;
}
.hero-amount strong { color: var(--gold-400); }
.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.68;
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 48px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-500);
  color: var(--black-950);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid var(--gold-400);
  transition: all 0.2s ease;
  box-shadow: 0 0 32px var(--gold-glow), 0 6px 20px rgba(0,0,0,0.6);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 0 52px var(--gold-glow-strong), 0 10px 28px rgba(0,0,0,0.7);
}
.btn-primary .arrow { transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

/* ─── TRUST BAR ───────────────────────────────────────────── */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  max-width: 680px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201, 168, 76, 0.08);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.trust-item .check { color: var(--gold-400); font-size: 13px; }

/* ─── SECTION HEADERS ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 68px);
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 54px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── THIN GOLD DIVIDER ───────────────────────────────────── */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.35;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─── USE CASES ───────────────────────────────────────────── */
.use-cases {
  padding: var(--section-py) 0;
  background: var(--black-900);
  position: relative;
}
.use-cases::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.3;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.use-case-card {
  background: var(--black-800);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 28px 22px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.use-case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.use-case-card:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 24px rgba(201, 168, 76, 0.06);
}
.use-case-card:hover::before { opacity: 1; }
.use-case-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.use-case-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.use-case-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--black-1000);
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.25;
}
.how-it-works::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-500));
  opacity: 0.25;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-number {
  width: 80px;
  height: 80px;
  background: var(--black-800);
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-400);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 28px var(--gold-glow), 0 4px 16px rgba(0,0,0,0.8);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}

/* ─── QUALIFICATIONS ──────────────────────────────────────── */
.qualifications {
  padding: var(--section-py) 0;
  background: var(--black-900);
  position: relative;
}
.qualifications::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.25;
}
.qual-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.qual-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 46px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.qual-copy p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 28px;
}
.qual-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.04em;
}
.qual-checklist {
  background: var(--black-800);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.qual-checklist h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
}
.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.qual-item:last-child { border-bottom: none; padding-bottom: 0; }
.qual-check {
  width: 24px;
  height: 24px;
  background: var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--black-950);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 0 10px var(--gold-glow);
}
.qual-item-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.qual-item-text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── PARTNERS ────────────────────────────────────────────── */
.partners {
  padding: var(--section-py) 0;
  background: var(--black-950);
  position: relative;
  overflow: hidden;
}
.partners::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.3;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.partner-card {
  background: var(--black-800);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.partner-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 24px rgba(201, 168, 76, 0.07);
}
.partner-logo-area {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--black-950);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.partner-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.partner-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.partner-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* ─── SOCIAL PROOF BAR (partners section) ────────────────── */
.social-proof-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 28px;
  background: var(--black-800);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.social-proof-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.social-proof-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-proof-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-400);
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-proof-link:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--gold-glow);
}
.social-proof-link svg {
  flex-shrink: 0;
}

/* ─── FOOTER SOCIAL ICONS ────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-icon:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--gold-glow);
}

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--black-1000);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.3;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
  pointer-events: none;
}
.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--black-800);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 88px);
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.07), 0 16px 48px rgba(0,0,0,0.7);
}
.cta-box::before,
.cta-box::after {
  content: '';
  position: absolute;
  width: 64px;
  height: 64px;
  border-color: var(--gold-500);
  border-style: solid;
  opacity: 0.55;
}
.cta-box::before {
  top: 16px; left: 16px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}
.cta-box::after {
  bottom: 16px; right: 16px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 54px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-box h2 em { color: var(--gold-400); font-style: normal; }
.cta-box p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-box .btn-primary {
  font-size: 17px;
  padding: 18px 44px;
  border-radius: 10px;
}
.cta-disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #000000;
  border-top: 1px solid var(--border-gold);
  padding: 40px 0 32px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--gold-500);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--black-950);
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  line-height: 1.1;
}
.footer-brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 1px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* ─── LEAD CAPTURE ────────────────────────────────────────── */
.lead-capture {
  padding: clamp(64px, 9vw, 104px) 0;
  background: var(--black-900);
  position: relative;
}
.lead-capture::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
}
.lead-capture-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--black-800);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 64px);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.06), 0 16px 40px rgba(0,0,0,0.6);
}
.lead-capture-icon { font-size: 36px; margin-bottom: 12px; }
.lead-capture-box .section-label { margin-bottom: 10px; }
.lead-capture-box h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.lead-capture-box > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 32px;
}
.lead-form { margin-bottom: 0; }
.lead-form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
}
.lead-field-group input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  width: 220px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lead-field-group input::placeholder { color: var(--text-muted); opacity: 0.7; }
.lead-field-group input:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}
.btn-lead-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-500);
  color: var(--black-950);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-lead-submit:hover:not(:disabled) {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.btn-lead-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-lead-submit .arrow { transition: transform 0.2s ease; }
.btn-lead-submit:hover:not(:disabled) .arrow { transform: translateX(3px); }
.lead-error {
  margin-top: 12px;
  font-size: 14px;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
}
.lead-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0 4px;
}
.lead-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-400);
}
.lead-success p { font-size: 18px; font-weight: 600; color: var(--white); }
.lead-privacy { margin-top: 16px; font-size: 12px; color: var(--text-dim); }

/* ─── FUNDING TYPES ───────────────────────────────────────── */
.funding-types {
  padding: var(--section-py) 0;
  background: var(--black-800);
  position: relative;
  overflow: hidden;
}
.funding-types::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.3;
}
.funding-types::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 20% 80%, rgba(201, 168, 76, 0.025) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(201, 168, 76, 0.02) 0%, transparent 55%);
  pointer-events: none;
}

/* Phase group wrapper */
.funding-phase-group {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.funding-phase-group:last-child { margin-bottom: 0; }

/* Phase label pill */
.funding-phase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.funding-phase-label .phase-icon { font-size: 14px; }

/* Cards grid per phase */
.funding-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* Individual funding type card */
.funding-card {
  background: var(--black-900);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 26px 24px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.funding-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.funding-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.7), 0 0 28px rgba(201, 168, 76, 0.07);
}
.funding-card:hover::before { opacity: 1; }

.funding-card-icon {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}
.funding-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.funding-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .steps-row::before { display: none; }
  .qual-layout { grid-template-columns: 1fr; gap: 32px; }
  .partners-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .social-proof-bar { flex-direction: column; gap: 12px; }
  .lead-form-fields { flex-direction: column; align-items: stretch; }
  .lead-field-group input { width: 100%; }
  .funding-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hero-trust-bar { flex-direction: column; gap: 14px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .use-cases-grid { grid-template-columns: 1fr; }
}
