/* ===== DESIGN TOKENS ===== */
:root {
  /* Navy + Gold palette — glowing, luminous, premium aesthetic */
  --navy: #0f2044;
  --navy-mid: #1a3160;
  --navy-light: #243d73;
  --blue-accent: #1e6fdb;
  --blue-bright: #3b8ae6;
  --gold: #c8903a;
  --gold-light: #e8b05a;
  --gold-bright: #f4c460;
  --cream: #faf8f5;
  --warm-white: #f5f3ef;
  --mid-gray: #6b7280;
  --light-gray: #e5e7eb;
  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  /* Enhanced glowing shadows */
  --shadow: 0 4px 24px rgba(15, 32, 68, 0.10);
  --shadow-md: 0 8px 40px rgba(15, 32, 68, 0.15);
  --shadow-lg: 0 16px 60px rgba(15, 32, 68, 0.20);
  /* Intensive glow effects for luminous premium feel */
  --glow-gold: 0 0 20px rgba(200, 144, 58, 0.3), 0 0 40px rgba(232, 176, 90, 0.2);
  --glow-gold-intense: 0 0 15px rgba(200, 144, 58, 0.4), 0 0 30px rgba(232, 176, 90, 0.3), 0 0 50px rgba(244, 196, 96, 0.15);
  --glow-navy: 0 0 20px rgba(15, 32, 68, 0.2), 0 0 40px rgba(30, 111, 219, 0.15);
  --glow-navy-intense: 0 0 15px rgba(15, 32, 68, 0.3), 0 0 30px rgba(30, 111, 219, 0.25), 0 0 50px rgba(15, 32, 68, 0.15);
  --glow-gold-bright: 0 0 25px rgba(244, 196, 96, 0.4), 0 0 50px rgba(232, 176, 90, 0.25);
  --glow-blue: 0 0 20px rgba(30, 111, 219, 0.2), 0 0 40px rgba(59, 138, 230, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --max-w: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== SHARED BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(244, 196, 96, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(200, 144, 58, 0.4), var(--glow-gold-intense);
  text-decoration: none;
  position: relative;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 100%);
  transform: translateY(-2px);
  border-color: rgba(244, 196, 96, 0.8);
  box-shadow: 0 12px 32px rgba(200, 144, 58, 0.5), var(--glow-gold-bright);
}
.btn-primary--white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-primary--white:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(15, 32, 68, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(15, 32, 68, 0.04);
}

/* ===== SHARED SECTION LABELS ===== */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-eyebrow--light { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { color: var(--blue-accent); font-style: italic; }
.section-title--light { color: #fff; }
.section-title--light em { color: var(--gold-light); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

/* Subtle background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(30, 111, 219, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 144, 58, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-cta-group .btn-ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.hero-cta-group .btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(232, 176, 90, 0.35);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  width: fit-content;
  box-shadow: 0 0 25px rgba(200, 144, 58, 0.25), 0 0 40px rgba(232, 176, 90, 0.15), inset 0 0 20px rgba(232, 176, 90, 0.1);
  transition: all 0.3s ease;
}
.hero-trust:hover {
  border-color: rgba(232, 176, 90, 0.55);
  box-shadow: 0 8px 32px rgba(200, 144, 58, 0.35), 0 0 50px rgba(232, 176, 90, 0.25), inset 0 0 25px rgba(232, 176, 90, 0.15);
  background: rgba(255,255,255,0.12);
}
.trust-item { text-align: center; }
.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
}
.trust-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Hero photo column */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  width: 380px;
  height: 460px;
  border-radius: 24px 24px 120px 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border: 2px solid rgba(232, 176, 90, 0.5);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(200, 144, 58, 0.35), 0 0 60px rgba(232, 176, 90, 0.25), inset 0 0 25px rgba(232, 176, 90, 0.12);
  transition: all 0.3s ease;
}
.hero-photo-frame:hover {
  border-color: rgba(232, 176, 90, 0.7);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(200, 144, 58, 0.45), 0 0 80px rgba(232, 176, 90, 0.35), inset 0 0 30px rgba(232, 176, 90, 0.15);
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-photo-placeholder svg {
  width: 60%;
  height: auto;
  opacity: 0.6;
}
.photo-label {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

/* Floating badges on hero photo */
.hero-badge-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  white-space: nowrap;
}
.hero-badge-float--rate {
  top: 32px;
  right: -20px;
}
.badge-value {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.badge-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.hero-badge-float--approved {
  bottom: 60px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-icon {
  width: 28px;
  height: 28px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.badge-text {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}

/* ===== LOAN TYPES ===== */
.loans {
  padding: 100px 24px;
  background: var(--warm-white);
}

.loans-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.loans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.loan-card {
  background: #fff;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 0 12px rgba(15, 32, 68, 0.08);
}
.loan-card:hover {
  border-color: var(--blue-accent);
  box-shadow: 0 0 20px rgba(30, 111, 219, 0.25), 0 0 30px rgba(200, 144, 58, 0.15), var(--shadow);
  transform: translateY(-3px);
}

.loan-card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(232, 176, 90, 0.5);
  border-width: 2px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 32, 68, 0.2), 0 0 25px rgba(200, 144, 58, 0.3), inset 0 0 20px rgba(30, 111, 219, 0.1);
}
.loan-card--featured:hover {
  border-color: rgba(232, 176, 90, 0.8);
  box-shadow: 0 12px 32px rgba(15, 32, 68, 0.3), 0 0 40px rgba(200, 144, 58, 0.4), 0 0 60px rgba(232, 176, 90, 0.2), inset 0 0 20px rgba(30, 111, 219, 0.15);
  transform: translateY(-3px);
}
.loan-card--featured .loan-name { color: #fff; }
.loan-card--featured .loan-desc { color: rgba(255,255,255,0.7); }

.loan-card--cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-color: rgba(244, 196, 96, 0.6);
  border-width: 2px;
  color: #fff;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(200, 144, 58, 0.3), 0 0 25px rgba(232, 176, 90, 0.35), 0 0 40px rgba(244, 196, 96, 0.2);
}
.loan-card--cta:hover {
  border-color: rgba(244, 196, 96, 0.9);
  box-shadow: 0 12px 32px rgba(200, 144, 58, 0.4), 0 0 40px rgba(232, 176, 90, 0.4), 0 0 60px rgba(244, 196, 96, 0.3);
  transform: translateY(-3px);
}
.loan-card--cta .loan-name { color: #fff; }
.loan-card--cta .loan-desc { color: rgba(255,255,255,0.85); }

.loan-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.loan-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.loan-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.loan-cta-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.loan-cta-btn:hover { background: rgba(255,255,255,0.35); }

/* ===== ABOUT ===== */
.about {
  padding: 100px 24px;
  background: var(--cream);
}

.about-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-frame {
  border-radius: 24px 120px 24px 24px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  height: 440px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(200, 144, 58, 0.35), 0 0 60px rgba(232, 176, 90, 0.25), inset 0 0 20px rgba(232, 176, 90, 0.12);
  position: relative;
  border: 2px solid rgba(232, 176, 90, 0.5);
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-photo-placeholder svg {
  width: 55%;
  height: auto;
}
.about-photo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
}
.about-photo-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-credentials {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(200, 144, 58, 0.1);
}
.credential:hover {
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(200, 144, 58, 0.25), 0 0 18px rgba(232, 176, 90, 0.2), 0 0 30px rgba(244, 196, 96, 0.1);
  transform: translateY(-2px);
}
.cred-icon { font-size: 1.1rem; }

.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  color: var(--text-body);
  line-height: 1.75;
}

.about-highlights {
  display: flex;
  gap: 36px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--warm-white) 0%, #ffffff 100%);
  border-radius: var(--radius);
  border: 2px solid rgba(200, 144, 58, 0.3);
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(200, 144, 58, 0.15), inset 0 0 20px rgba(232, 176, 90, 0.1), 0 0 20px rgba(232, 176, 90, 0.1);
}
.highlight-item { text-align: center; }
.highlight-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}
.highlight-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 24px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(200, 144, 58, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(30, 111, 219, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.testimonials-container {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(200, 144, 58, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(200, 144, 58, 0.15), inset 0 0 15px rgba(232, 176, 90, 0.05);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(200, 144, 58, 0.3), 0 0 30px rgba(232, 176, 90, 0.25), 0 0 50px rgba(244, 196, 96, 0.15), inset 0 0 20px rgba(232, 176, 90, 0.1);
  border-color: rgba(200, 144, 58, 0.5);
}
.testimonial-card--featured {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(200, 144, 58, 0.6);
  grid-row: span 1;
  box-shadow: 0 0 30px rgba(200, 144, 58, 0.35), 0 0 50px rgba(232, 176, 90, 0.25), inset 0 0 20px rgba(232, 176, 90, 0.12);
  transition: all 0.25s ease;
}
.testimonial-card--featured:hover {
  border-color: rgba(200, 144, 58, 0.8);
  box-shadow: 0 8px 40px rgba(200, 144, 58, 0.4), 0 0 60px rgba(232, 176, 90, 0.35), 0 0 80px rgba(244, 196, 96, 0.2), inset 0 0 25px rgba(232, 176, 90, 0.15);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-accent) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.author-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.testimonials-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.testimonials-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* ===== APPLICATION FORM ===== */
.apply {
  padding: 100px 24px;
  background: var(--warm-white);
}

.apply-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.apply-form-wrap {
  background: #fff;
  border: 2px solid rgba(200, 144, 58, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  margin-top: 48px;
  box-shadow: var(--shadow-md), 0 0 30px rgba(200, 144, 58, 0.2), 0 0 50px rgba(232, 176, 90, 0.1), inset 0 0 20px rgba(232, 176, 90, 0.05);
  text-align: left;
}

/* Progress bar */
.form-progress-wrap {
  margin-bottom: 40px;
}
.form-progress-bar {
  height: 6px;
  background: var(--light-gray);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}
.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-accent) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border-radius: 100px;
  transition: width 0.4s ease;
  box-shadow: 0 0 15px rgba(200, 144, 58, 0.6), 0 0 30px rgba(232, 176, 90, 0.4), 0 0 40px rgba(244, 196, 96, 0.25);
}
.form-step-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  transition: all 0.3s ease;
}
.step-dot.active {
  background: var(--blue-accent);
  box-shadow: 0 0 12px rgba(30, 111, 219, 0.6), 0 0 20px rgba(200, 144, 58, 0.3);
}
.step-counter {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Steps */
.form-step { display: none; }
.form-step.active { display: block; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.step-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Radio grid for step 1 & others */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.radio-grid--4 { grid-template-columns: repeat(4, 1fr); }
.radio-grid--3 { grid-template-columns: repeat(3, 1fr); }

.radio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  box-shadow: 0 0 8px rgba(15, 32, 68, 0.05);
}
.radio-card:hover {
  border-color: var(--blue-accent);
  background: rgba(30, 111, 219, 0.06);
  box-shadow: 0 0 15px rgba(30, 111, 219, 0.2), 0 0 25px rgba(200, 144, 58, 0.1);
}
.radio-card input[type="radio"] { display: none; }
.radio-card:has(input:checked) {
  border-color: var(--blue-accent);
  background: rgba(30, 111, 219, 0.08);
  box-shadow: 0 0 20px rgba(30, 111, 219, 0.35), 0 0 30px rgba(200, 144, 58, 0.2), inset 0 0 10px rgba(30, 111, 219, 0.1);
}
.radio-icon { font-size: 1.6rem; }
.radio-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Form fields */
.form-fields { display: flex; flex-direction: column; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 6px; }

.field-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.field-input, .field-select, .field-textarea {
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fff;
  transition: all 0.2s ease;
  width: 100%;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 15px rgba(30, 111, 219, 0.25), 0 0 25px rgba(200, 144, 58, 0.15), inset 0 0 8px rgba(30, 111, 219, 0.08);
}
.field-textarea { resize: vertical; }

/* Consent checkbox */
.form-consent { margin-top: 8px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-label input { margin-top: 3px; flex-shrink: 0; }

/* Form nav */
.form-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--light-gray);
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 40px;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-muted); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  position: relative;
  box-shadow: inset 0 20px 40px rgba(200, 144, 58, 0.08);
}

.footer-top {
  padding: 60px 24px 40px;
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer-title {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer-nmls {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(232, 176, 90, 0.5), 0 0 20px rgba(200, 144, 58, 0.25);
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(232, 176, 90, 0.08);
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.footer-address-line {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-contact-link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(232, 176, 90, 0.4), 0 0 20px rgba(200, 144, 58, 0.2);
}

.footer-links-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links-col { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.footer-link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(232, 176, 90, 0.4), 0 0 20px rgba(200, 144, 58, 0.2);
}
.footer-area {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 176, 90, 0.3) 20%, rgba(232, 176, 90, 0.3) 80%, transparent 100%);
  max-width: var(--max-w);
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(200, 144, 58, 0.2);
}

.footer-compliance {
  padding: 32px 24px 40px;
}
.footer-compliance .footer-container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  grid-template-columns: unset;
}

.footer-equal-housing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.equal-housing-logo {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(232, 176, 90, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  box-shadow: 0 0 10px rgba(200, 144, 58, 0.15);
}
.equal-housing-logo:hover {
  border-color: rgba(232, 176, 90, 0.5);
  box-shadow: 0 0 15px rgba(200, 144, 58, 0.3), 0 0 25px rgba(232, 176, 90, 0.2);
  color: rgba(255,255,255,0.8);
}
.equal-housing-text {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 70px;
}

.footer-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-copyright { margin-top: 4px; }
.footer-nmls-link {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 0.2s;
}
.footer-nmls-link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(232, 176, 90, 0.4), 0 0 20px rgba(200, 144, 58, 0.2);
}

/* ===== STICKY NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 32, 68, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 176, 90, 0.2);
  transform: translateY(-100%);
  transition: transform 0.3s ease, background 0.3s ease;
}
.site-nav.nav-visible {
  transform: translateY(0);
}
.site-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(232, 176, 90, 0.4);
  letter-spacing: 0.01em;
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.site-nav-link:hover {
  color: var(--gold-light);
}
.site-nav-cta {
  padding: 9px 22px;
  font-size: 0.85rem;
}

/* ===== MORTGAGE CALCULATOR ===== */
.calc-section {
  padding: 100px 24px;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(30, 111, 219, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(200, 144, 58, 0.04) 0%, transparent 40%);
  pointer-events: none;
}
.calc-container {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ===== INPUTS PANEL ===== */
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.calc-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.calc-value-display {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  transition: border-color 0.2s;
}
.calc-value-display:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 144, 58, 0.15);
}
.calc-prefix, .calc-suffix {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.calc-number-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  width: 110px;
  text-align: right;
  -moz-appearance: textfield;
}
.calc-number-input::-webkit-outer-spin-button,
.calc-number-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-number-input--short { width: 60px; }
.calc-down-pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(200, 144, 58, 0.12);
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 4px;
  white-space: nowrap;
}

/* Range slider */
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold-light) 100%);
  outline: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 2px 8px rgba(200, 144, 58, 0.4);
  cursor: pointer;
  transition: all 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover {
  border-color: var(--gold-light);
  box-shadow: 0 2px 12px rgba(200, 144, 58, 0.6), var(--glow-gold);
  transform: scale(1.15);
}
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 2px 8px rgba(200, 144, 58, 0.4);
  cursor: pointer;
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.calc-field-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Term toggle */
.calc-term-toggle {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.calc-term-btn {
  padding: 10px 22px;
  border: 2px solid var(--light-gray);
  border-radius: 40px;
  background: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s;
}
.calc-term-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.calc-term-btn--active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 144, 58, 0.35), var(--glow-gold);
}

/* ===== RESULTS PANEL ===== */
.calc-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 24px;
}

/* Total card — glowing navy */
.calc-total-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid rgba(232, 176, 90, 0.4);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(15, 32, 68, 0.25), 0 0 60px rgba(232, 176, 90, 0.12);
  transition: all 0.3s ease;
}
.calc-total-card:hover {
  border-color: rgba(232, 176, 90, 0.6);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(15, 32, 68, 0.35), var(--glow-gold);
}
.calc-total-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.calc-total-amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 28px;
  line-height: 1;
  text-shadow: var(--glow-gold-bright);
  transition: all 0.35s ease;
}
.calc-total-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.breakdown-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breakdown-val {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  transition: all 0.3s ease;
}

/* Summary grid */
.calc-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.calc-summary-item {
  background: #fff;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: all 0.2s;
}
.calc-summary-item:hover {
  border-color: rgba(200, 144, 58, 0.4);
  box-shadow: 0 4px 16px rgba(200, 144, 58, 0.1);
}
.calc-summary-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.calc-summary-val {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

/* 15 vs 30 Comparison */
.calc-compare {
  background: #fff;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 24px;
}
.calc-compare-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.calc-compare-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.calc-compare-col {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--radius-sm);
}
.calc-compare-col--15 {
  background: linear-gradient(135deg, rgba(15, 32, 68, 0.06) 0%, rgba(30, 111, 219, 0.05) 100%);
  border: 1.5px solid rgba(30, 111, 219, 0.2);
}
.calc-compare-col--30 {
  background: linear-gradient(135deg, rgba(200, 144, 58, 0.07) 0%, rgba(232, 176, 90, 0.04) 100%);
  border: 1.5px solid rgba(200, 144, 58, 0.25);
}
.compare-term-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.compare-monthly {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: all 0.3s ease;
}
.compare-monthly-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.compare-interest {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  transition: all 0.3s ease;
}
.compare-interest-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.calc-compare-vs {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.calc-compare-savings {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 12px;
  background: rgba(15, 32, 68, 0.04);
  border-radius: var(--radius-sm);
  text-align: center;
}
.calc-compare-savings strong {
  color: var(--navy);
}

.calc-cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px 32px;
}
.calc-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .loans-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .calc-layout { grid-template-columns: 1fr; gap: 32px; }
  .calc-results { position: static; }
  .site-nav-links { gap: 16px; }
}

@media (max-width: 768px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { order: -1; }
  .hero-photo-frame { width: 280px; height: 340px; }
  .hero-badge-float--rate { right: 0; top: 16px; }
  .hero-badge-float--approved { left: 0; bottom: 40px; }
  .hero-trust { gap: 20px; padding: 20px 24px; flex-wrap: wrap; }
  .hero-headline { font-size: 2.2rem; }

  .loans-grid { grid-template-columns: repeat(2, 1fr); }

  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-frame { height: 300px; }
  .about-highlights { gap: 20px; padding: 20px 24px; flex-wrap: wrap; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .apply-form-wrap { padding: 32px 24px; }
  .radio-grid { grid-template-columns: repeat(2, 1fr); }
  .radio-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .radio-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }

  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-compliance .footer-container { flex-direction: column; }
  .calc-summary-grid { grid-template-columns: 1fr 1fr; }
  .calc-term-toggle { gap: 6px; }
  .calc-term-btn { padding: 8px 16px; font-size: 0.85rem; }
  .calc-total-amount { font-size: 2.4rem; }
  .site-nav-link { display: none; }
  .site-nav-links { gap: 0; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 20px; min-height: auto; }
  .loans-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; }
}

/* ===== PARTNERS PAGE ===== */
.partners-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.partners-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.partners-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(200, 144, 58, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(30, 111, 219, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.partners-hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.partners-hero-content { display: flex; flex-direction: column; gap: 0; }
.partners-hero-content .section-eyebrow { margin-bottom: 16px; }
.partners-hero-content .hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
}
.partners-hero-content .hero-sub {
  margin-bottom: 36px;
  max-width: 540px;
}
.partners-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.partners-hero-card {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(232, 176, 90, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(200, 144, 58, 0.2), inset 0 0 20px rgba(232, 176, 90, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phc-icon { color: var(--gold-light); }
.phc-label { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.6; font-weight: 500; }
.partners-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partners-stat {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(232, 176, 90, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.partners-stat:hover {
  border-color: rgba(232, 176, 90, 0.5);
  box-shadow: 0 0 20px rgba(200, 144, 58, 0.25);
  transform: translateY(-2px);
}
.partners-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.partners-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* PROBLEM */
.partners-problem {
  padding: 100px 24px;
  background: var(--cream);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 56px 0 0;
}
.problem-card {
  background: #fff;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(15, 32, 68, 0.08);
}
.problem-card:hover {
  border-color: rgba(200, 144, 58, 0.4);
  box-shadow: 0 8px 32px rgba(200, 144, 58, 0.15), 0 0 20px rgba(232, 176, 90, 0.1);
  transform: translateY(-3px);
}
.problem-icon { color: var(--gold); margin-bottom: 16px; }
.problem-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.problem-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.problem-takedown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(232, 176, 90, 0.35);
  box-shadow: 0 0 30px rgba(200, 144, 58, 0.2), 0 0 50px rgba(232, 176, 90, 0.1);
}
.problem-takedown p { font-size: 1.05rem; color: #fff; font-weight: 500; }
.problem-takedown em { color: var(--gold-light); }
.problem-takedown .btn-primary { flex-shrink: 0; }

/* DIFFERENT */
.partners-different {
  padding: 100px 24px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.partners-different::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(200, 144, 58, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(30, 111, 219, 0.12) 0%, transparent 45%);
  pointer-events: none;
}
.partners-different .section-header { position: relative; z-index: 1; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.diff-card {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(232, 176, 90, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(200, 144, 58, 0.15), inset 0 0 15px rgba(232, 176, 90, 0.05);
}
.diff-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(232, 176, 90, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 144, 58, 0.3), 0 0 40px rgba(232, 176, 90, 0.2);
}
.diff-icon { color: var(--gold-light); margin-bottom: 18px; }
.diff-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.diff-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 16px; }
.diff-card p em { color: var(--gold-light); font-style: italic; }
.diff-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(232, 176, 90, 0.12);
  border: 1px solid rgba(232, 176, 90, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
}

/* PROCESS */
.partners-process {
  padding: 100px 24px;
  background: var(--warm-white);
}
.process-steps {
  display: flex;
  gap: 0;
  margin: 56px 0 48px;
  position: relative;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 3px solid rgba(232, 176, 90, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(200, 144, 58, 0.3), 0 0 30px rgba(232, 176, 90, 0.15);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.step-content { padding: 0 16px; }
.step-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.step-connector {
  position: absolute;
  top: 31px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, rgba(200, 144, 58, 0.5) 0%, rgba(200, 144, 58, 0.2) 100%);
  z-index: 1;
}
.process-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.btn-primary--large { padding: 18px 40px; font-size: 1.1rem; }
.process-cta-note { font-size: 0.88rem; color: var(--text-muted); }

/* PROGRAMS */
.partners-programs { padding: 100px 24px; background: var(--cream); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.program-card {
  background: #fff;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(15, 32, 68, 0.07);
}
.program-card:hover {
  border-color: rgba(30, 111, 219, 0.35);
  box-shadow: 0 0 20px rgba(30, 111, 219, 0.2), 0 0 30px rgba(200, 144, 58, 0.1);
  transform: translateY(-3px);
}
.program-card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(232, 176, 90, 0.5);
  box-shadow: 0 8px 24px rgba(15, 32, 68, 0.2), 0 0 25px rgba(200, 144, 58, 0.3);
}
.program-card--featured:hover {
  border-color: rgba(232, 176, 90, 0.8);
  box-shadow: 0 12px 32px rgba(15, 32, 68, 0.3), 0 0 40px rgba(200, 144, 58, 0.4);
  transform: translateY(-3px);
}
.program-card--featured h3,
.program-card--featured p { color: #fff; }
.program-card--featured .program-tag { background: rgba(232, 176, 90, 0.2); color: var(--gold-light); border-color: rgba(232, 176, 90, 0.4); }
.program-card--cta {
  background: linear-gradient(135deg, rgba(200, 144, 58, 0.07) 0%, rgba(232, 176, 90, 0.04) 100%);
  border-color: rgba(200, 144, 58, 0.25);
  align-items: flex-start;
}
.program-card--cta:hover { border-color: rgba(200, 144, 58, 0.5); box-shadow: 0 8px 24px rgba(200, 144, 58, 0.2); }
.program-icon { font-size: 1.6rem; margin-bottom: 4px; }
.program-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.program-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.program-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(200, 144, 58, 0.1);
  border: 1px solid rgba(200, 144, 58, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: 4px;
}
.program-card--featured .program-tag { background: rgba(232, 176, 90, 0.15); color: var(--gold-light); border-color: rgba(232, 176, 90, 0.3); }
.program-cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  transition: color 0.2s;
}
.program-cta-btn:hover { color: var(--navy); }

/* CTA SECTION */
.partners-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.partners-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 144, 58, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(30, 111, 219, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.partners-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-icon {
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,0.08);
  border: 3px solid rgba(232, 176, 90, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(200, 144, 58, 0.3), 0 0 50px rgba(232, 176, 90, 0.15), inset 0 0 20px rgba(232, 176, 90, 0.1);
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 520px; line-height: 1.7; margin-bottom: 48px; }
.cta-contacts { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.cta-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(232, 176, 90, 0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  text-decoration: none;
  min-width: 200px;
}
.cta-contact:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(232, 176, 90, 0.6);
  box-shadow: 0 0 25px rgba(200, 144, 58, 0.3), 0 0 40px rgba(232, 176, 90, 0.15);
  transform: translateY(-2px);
}
.cta-contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.cta-contact-info { display: flex; flex-direction: column; text-align: left; }
.cta-contact-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.cta-contact-value { font-size: 0.95rem; font-weight: 700; color: #fff; }
.cta-credential { display: flex; align-items: center; gap: 12px; }
.cta-nmls { font-size: 0.85rem; font-weight: 700; color: var(--gold-light); background: rgba(232, 176, 90, 0.12); border: 1px solid rgba(232, 176, 90, 0.25); border-radius: 4px; padding: 4px 10px; }
.cta-divider { color: rgba(255,255,255,0.4); }
.cta-company { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* PARTNERS FOOTER COL */
.footer-col-main { display: flex; flex-direction: column; }

/* RESPONSIVE — PARTNERS */
@media (max-width: 1024px) {
  .partners-hero-container { grid-template-columns: 1fr; gap: 48px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .step-content { padding: 0; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-takedown { flex-direction: column; text-align: center; }
  .cta-contacts { flex-direction: column; align-items: center; }
  .cta-contact { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .partners-hero { padding: 80px 20px 60px; }
  .partners-hero-stats { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
}
