/* ============================================
   FIND.FIX.FLIP — MASTER STYLESHEET
   Starlink-inspired Dark Glass Aesthetic
   ============================================ */
:root {
  /* Deep space blues */
  --space-950: #030810; --space-900: #060E1A; --space-850: #081224;
  --space-800: #0A1830; --space-700: #0E2242; --space-600: #132E56;
  --space-500: #1A3C6E; --space-400: #2A5A9A;
  /* Accent blues */
  --blue-600: #1277CE; --blue-500: #1E90E8; --blue-400: #4BA9F0;
  --blue-300: #7DC4F5; --blue-200: #B0DAFA; --blue-100: #E0F0FD;
  /* Gold accent */
  --gold-500: #FFDD00; --gold-400: #FFE633; --gold-600: #E6C700;
  /* Neutrals */
  --concrete-900: #1A1A1A; --concrete-800: #2A2A2A; --concrete-700: #3A3A3A;
  --concrete-600: #4A4A4A; --concrete-500: #5A5A5A; --concrete-400: #7A7A7A;
  --concrete-300: #9A9A9A; --concrete-200: #C0C0C0; --concrete-100: #E8E8E8;
  --concrete-50: #F4F4F4; --white: #FFFFFF;
  --red-500: #E53935; --green-500: #43A047;
  /* Glass */
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.06);
  --glass-bg-hover: rgba(255,255,255,0.06);
  --glass-strong: rgba(255,255,255,0.05);
  --glass-border-strong: rgba(255,255,255,0.1);
  /* Typography */
  --font-display: 'DIN_Regular', Arial, Verdana, sans-serif;
  --font-body: 'DIN_Regular', Arial, Verdana, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  /* Spacing & Effects */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(18,119,206,0.15);
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 8px; --radius-xl: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body); color: var(--concrete-200); font-size: 12px; font-weight: 700;
  background: var(--space-950); line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); }
.container { max-width: 1340px; margin: 0 auto; padding: 0 24px; }

/* === AMBIENT BACKGROUNDS === */
.concrete-bg { position: relative; background: var(--space-900); }
.concrete-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}
.concrete-bg > * { position: relative; z-index: 2; }
.grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.glow { position: absolute; border-radius: 50%; filter: blur(140px); pointer-events: none; }
.glow-blue { background: var(--blue-500); width: 700px; height: 700px; opacity: 0.07; }
.glow-gold { background: var(--gold-500); width: 500px; height: 500px; opacity: 0.04; }

/* === GLASS CARD === */
.glass-card {
  background: var(--glass-strong);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05);
}

/* ================================================
   NAVIGATION — Fixed top bar
   ================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(3,8,16,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(3,8,16,0.92);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1340px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo-img { height: 22px; width: auto; display: block; min-width: 120px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm); transition: var(--transition); letter-spacing: 0.5px; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-phone {
  display: flex; align-items: center; gap: 8px; color: var(--gold-400);
  font-weight: 600; font-size: 13px; margin-left: 12px; white-space: nowrap;
}
.nav-cta {
  background: var(--white); color: var(--space-900);
  padding: 10px 24px; border-radius: 4px; font-weight: 700; font-size: 13px;
  letter-spacing: 0.3px; margin-left: 8px; white-space: nowrap;
  transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(255,255,255,0.2); }
.nav-cta i { font-size: 11px; }
.nav-mobile-toggle { display: none; background: none; color: var(--white); font-size: 22px; padding: 8px; }

/* === MOBILE SLIDE-OUT NAV === */
/* Base layout only — visual overrides in overhaul.css */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 9998;
  opacity: 0; visibility: hidden;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh;
  z-index: 9999; padding: 0;
  display: flex; flex-direction: column;
}

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav-header img { height: 18px; }
.mobile-nav-close {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--white);
  border: none; cursor: pointer;
}

.mobile-nav-links {
  flex: 1; display: flex; flex-direction: column;
}
.mobile-nav-link {
  display: flex; align-items: center; text-decoration: none;
}
.mobile-nav-link i { display: none; }

.mobile-nav-footer {
  display: flex; flex-direction: column;
}
.mobile-nav-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.mobile-nav-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 4px; font-weight: 600; font-size: 15px;
  transition: var(--transition); letter-spacing: 0.3px; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--white); color: var(--space-900);
  box-shadow: 0 4px 24px rgba(255,255,255,0.1);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,255,255,0.2); }
.btn-secondary {
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--space-900); box-shadow: 0 4px 24px rgba(255,221,0,0.2);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,221,0,0.35); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white); box-shadow: 0 4px 20px rgba(18,119,206,0.3);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(18,119,206,0.5); }
.btn-white { background: var(--white); color: var(--space-900); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 24px rgba(255,255,255,0.2); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
/* Pathway buttons */
.btn-pathway {
  background: var(--white); color: var(--space-900) !important;
  padding: 12px 28px; border-radius: 4px; justify-content: center;
  font-family: var(--font-display); letter-spacing: 0.5px; font-weight: 700;
}
.btn-pathway:hover { transform: translateY(-2px); box-shadow: 0 4px 24px rgba(255,255,255,0.2); }

/* === SECTION HEADERS === */
.section { padding: 100px 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--blue-400); text-transform: uppercase; letter-spacing: 4px; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white); letter-spacing: 2px; margin-bottom: 16px; font-weight: 700;
}
.section-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.5); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}
/* Light section variants for pages that need them */
.section-tag-light { color: var(--blue-300); }
.section-title-light { color: var(--white); }
.section-subtitle-light { color: var(--concrete-400); }

/* === LIGHT BACKGROUND SECTIONS — dark text overrides === */
.section-light .section-title { color: var(--concrete-900); }
.section-light .section-subtitle { color: var(--concrete-500); }
.section-light .feature-title { color: var(--concrete-900); }
.section-light .feature-desc { color: var(--concrete-500); }
.section-light .card {
  background: var(--white); border-color: var(--concrete-100);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-light .card:hover {
  background: var(--white); border-color: var(--concrete-200);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.section-light .faq-item { border-bottom-color: var(--concrete-100); }
.section-light .faq-question { color: var(--concrete-900); }
.section-light .faq-question:hover { color: var(--blue-600); }
.section-light .faq-question i { color: var(--concrete-400); }
.section-light .faq-item.open .faq-question i { color: var(--blue-600); }
.section-light .faq-answer-inner { color: var(--concrete-500); }
.section-light .loan-details { border-top-color: var(--concrete-100); }
.section-light .loan-detail-label { color: var(--concrete-500); }
.section-light .loan-detail-value { color: var(--concrete-900); }

/* === PAGE HERO === */
.page-hero {
  position: relative; padding: 140px 24px 80px;
  background: var(--space-900); overflow: hidden; text-align: center;
}
.page-hero-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: var(--blue-400); }
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px);
  color: var(--white); letter-spacing: -0.5px; margin-bottom: 20px;
  line-height: 1.05; font-weight: 700;
}
.page-hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.5); max-width: 640px;
  margin: 0 auto 32px; line-height: 1.7;
}
.page-hero-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
}
.page-hero-stat-val { font-family: var(--font-display); font-size: 36px; color: var(--white); letter-spacing: 2px; font-weight: 700; }
.page-hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: 1px; }

/* === FORMS === */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.form-label-dark { color: var(--concrete-600); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md);
  font-size: 15px; transition: var(--transition); outline: none;
  background: rgba(255,255,255,0.04); color: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-500); background: rgba(18,119,206,0.06);
  box-shadow: 0 0 0 3px rgba(18,119,206,0.1);
}
.form-select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237A7A7A' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-select option { background: var(--space-800); color: var(--white); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
/* Light form */
.form-light .form-input, .form-light .form-select, .form-light .form-textarea {
  background: var(--white); border-color: var(--concrete-200); color: var(--concrete-800);
}
.form-light .form-input::placeholder { color: var(--concrete-400); }
.form-light .form-input:focus, .form-light .form-select:focus { border-color: var(--blue-500); background: var(--white); }
.form-light .form-select option { background: var(--white); color: var(--concrete-800); }
.form-light .form-label { color: var(--concrete-600); }
.form-submit {
  width: 100%; padding: 15px; background: var(--white); color: var(--space-900);
  border: none; border-radius: 4px; font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; transition: var(--transition); cursor: pointer;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,0.15); }
.form-submit-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--space-900); }
.form-submit-gold:hover { box-shadow: 0 8px 32px rgba(255,221,0,0.3); }
.form-disclaimer { font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-trust {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap;
}
.form-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.35); }
.form-trust-item i { color: var(--green-500); font-size: 11px; }
.form-trust-light { border-top-color: var(--concrete-100); }
.form-trust-light .form-trust-item { color: var(--concrete-500); }
/* Form card — glass */
.form-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl);
  padding: 40px; position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500), var(--gold-500), transparent);
}
.form-card-light { background: var(--white); border-color: var(--concrete-100); box-shadow: var(--shadow-lg); }
.form-card-title { font-family: var(--font-display); font-size: 22px; color: var(--white); letter-spacing: 2px; margin-bottom: 4px; }
.form-card-title-dark { color: var(--space-900); }
.form-card-sub { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 28px; }
.form-nav { display: flex; justify-content: space-between; margin-top: 20px; }

/* === CARDS === */
.card {
  background: var(--glass-strong); border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px); background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12); box-shadow: var(--shadow-md);
}
.card-dark { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); }

/* === FEATURE GRID === */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 32px; text-align: center; }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 20px;
}
.feature-icon-blue { background: rgba(18,119,206,0.12); color: var(--blue-400); }
.feature-icon-gold { background: rgba(255,221,0,0.1); color: var(--gold-400); }
.feature-icon-green { background: rgba(67,160,71,0.12); color: var(--green-500); }
.feature-title { font-family: var(--font-display); font-size: 18px; color: var(--white); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  width: 100%; background: none; padding: 24px 0; font-size: 16px; font-weight: 600;
  color: var(--white); text-align: left; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; transition: var(--transition);
}
.faq-question:hover { color: var(--blue-400); }
.faq-question i { font-size: 14px; color: rgba(255,255,255,0.3); transition: var(--transition); }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--blue-400); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* === LOAN DETAILS === */
.loan-details { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; }
.loan-detail { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.loan-detail-label { color: rgba(255,255,255,0.4); }
.loan-detail-value { color: var(--white); font-weight: 600; }

/* === TWO COLUMN === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

/* === COMPARISON TABLE === */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; }
.compare-table th {
  background: var(--space-700); color: var(--white); padding: 16px 20px;
  font-family: var(--font-display); font-size: 14px; letter-spacing: 0.5px; text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 14px 20px; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04); text-align: center; color: rgba(255,255,255,0.7);
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--white); }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.compare-table .highlight-col { background: rgba(18,119,206,0.06); }
.compare-check { color: var(--green-500); }
.compare-x { color: rgba(255,255,255,0.15); }

/* === CTA BANNER === */
.cta-banner {
  padding: 80px 24px; background: var(--space-800); text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner-title {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white); letter-spacing: 2px; margin-bottom: 16px;
}
.cta-banner-sub { font-size: 17px; color: rgba(255,255,255,0.45); max-width: 560px; margin: 0 auto 32px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer { background: var(--space-950); padding: 80px 24px 40px; color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.04); }
.footer-grid {
  max-width: 1340px; margin: 0 auto; display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px;
}
.footer-brand {
  font-family: var(--font-display); font-size: 22px; letter-spacing: 1px;
  margin-bottom: 16px; font-weight: 700;
}
.footer-brand .c-find { color: var(--blue-400); }
.footer-brand .c-fix { color: var(--gold-500); }
.footer-brand .c-flip { color: var(--blue-300); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.35); }
.footer-col-title {
  font-family: var(--font-display); font-size: 12px; color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px; margin-bottom: 20px; text-transform: uppercase;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.35); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1340px; margin: 0 auto; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.6; max-width: 700px; }
.footer-badges { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.footer-badge {
  padding: 6px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; font-size: 11px; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 6px;
}
.footer-badge i { color: var(--green-500); }

/* === ANIMATIONS === */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === SUCCESS STATES === */
.success-state { text-align: center; padding: 60px 20px; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%; background: rgba(67,160,71,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.success-icon i { font-size: 36px; color: var(--green-500); }
.success-title { font-family: var(--font-display); font-size: 24px; color: var(--white); margin-bottom: 12px; }
.success-title-light { color: var(--white); }
.success-desc { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.success-desc-light { color: rgba(255,255,255,0.5); }
.success-ref { background: rgba(18,119,206,0.08); border: 1px solid rgba(18,119,206,0.15); border-radius: var(--radius-md); padding: 16px; margin-bottom: 24px; display: inline-block; }
.success-ref-label { font-size: 12px; color: var(--blue-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.success-ref-number { font-family: var(--font-mono); font-size: 20px; color: var(--white); font-weight: 600; }

/* === ALERTS === */
.alert { padding: 16px 20px; border-radius: var(--radius-md); font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.alert-success { background: rgba(67,160,71,0.08); border: 1px solid rgba(67,160,71,0.15); color: var(--green-500); }
.alert-error { background: rgba(229,57,53,0.08); border: 1px solid rgba(229,57,53,0.15); color: var(--red-500); }
.alert-info { background: rgba(18,119,206,0.08); border: 1px solid rgba(18,119,206,0.15); color: var(--blue-400); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-phone { display: none; }
}
@media (max-width: 768px) {
  .nav-inner { height: 56px; }
  .nav-logo-img { height: 16px; min-width: 90px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 24px 60px; }
  .page-hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 24px; }
  .cta-banner { padding: 60px 24px; }
  /* mobile-nav sizing handled in overhaul.css */
}

/* ================================================
   HOMEPAGE-SPECIFIC STYLES
   Dark Glass / Starlink Aesthetic
   ================================================ */

/* === HERO === */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(165deg, var(--space-900) 0%, var(--space-850) 35%, var(--space-950) 100%);
  overflow: hidden; padding-top: 64px;
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; filter: blur(140px); opacity: 0.1; pointer-events: none; }
.hero-glow-1 { background: var(--blue-500); top: -200px; right: -200px; }
.hero-glow-2 { background: var(--gold-500); bottom: -200px; left: -200px; opacity: 0.05; }
.hero-inner {
  max-width: 1340px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(18,119,206,0.1); border: 1px solid rgba(18,119,206,0.2);
  padding: 6px 16px; border-radius: 4px; font-size: 13px; font-weight: 600;
  color: var(--blue-300); margin-bottom: 24px; letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease both;
}
.pulse-dot { width: 8px; height: 8px; background: var(--green-500); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05; color: var(--white); letter-spacing: -0.5px; margin-bottom: 24px;
  font-weight: 700; text-transform: uppercase; animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-title .highlight-find { color: var(--blue-400); }
.hero-title .highlight-fix { color: var(--gold-500); }
.hero-title .highlight-flip { color: var(--blue-300); }
.hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.5); line-height: 1.7;
  max-width: 520px; margin-bottom: 40px; animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s 0.3s ease both; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06); animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-stat-value { font-family: var(--font-display); font-size: 32px; color: var(--white); letter-spacing: 2px; font-weight: 700; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; }

/* === HERO FORM (Glass) === */
.hero-form-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl);
  padding: 40px; position: relative; z-index: 2; animation: fadeInUp 0.8s 0.3s ease both; overflow: hidden;
}
.hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold-500), var(--blue-400));
}
.hero-form-title {
  font-family: var(--font-display); font-size: 22px; color: var(--white);
  letter-spacing: 2px; margin-bottom: 4px; font-weight: 700; text-transform: uppercase;
}
.hero-form-sub { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 28px; }

/* === SECTION CONTAINER === */
.section-container { max-width: 1340px; margin: 0 auto; }

/* === PATHWAYS (Dark Glass) === */
.pathways {
  padding: 100px 24px; background: var(--space-900); position: relative; overflow: hidden;
}
.pathways::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18,119,206,0.3), rgba(255,221,0,0.3), transparent);
}
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pathway-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-xl);
  padding: 40px 32px; text-align: center; transition: var(--transition);
  position: relative; overflow: hidden; cursor: pointer;
}
.pathway-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; transition: var(--transition);
}
.pathway-card:nth-child(1)::before { background: var(--blue-500); }
.pathway-card:nth-child(2)::before { background: var(--gold-500); }
.pathway-card:nth-child(3)::before { background: var(--blue-400); }
.pathway-card:hover {
  transform: translateY(-8px); background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12); box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
.pathway-icon {
  width: 72px; height: 72px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 24px;
}
.pathway-card:nth-child(1) .pathway-icon { background: rgba(18,119,206,0.12); color: var(--blue-400); }
.pathway-card:nth-child(2) .pathway-icon { background: rgba(255,221,0,0.1); color: var(--gold-400); }
.pathway-card:nth-child(3) .pathway-icon { background: rgba(75,169,240,0.1); color: var(--blue-300); }
.pathway-title { font-family: var(--font-display); font-size: 24px; color: var(--white); letter-spacing: 1px; margin-bottom: 12px; }
.pathway-desc { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }
.pathway-features { list-style: none; text-align: left; margin-bottom: 24px; }
.pathway-features li {
  padding: 8px 0; font-size: 14px; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pathway-features li:last-child { border-bottom: none; }
.pathway-features li i { color: var(--blue-400); font-size: 12px; width: 16px; text-align: center; }

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 24px; background: var(--space-850); position: relative; overflow: hidden;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 48px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold-500)); z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; padding: 0 20px; }
.step-number {
  width: 96px; height: 96px;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 2px solid rgba(18,119,206,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.step-number span { font-family: var(--font-display); font-size: 36px; color: var(--white); }
.step-title { font-family: var(--font-display); font-size: 20px; color: var(--white); letter-spacing: 1px; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.step-time {
  display: inline-block; margin-top: 12px; padding: 4px 12px;
  background: rgba(18,119,206,0.1); border-radius: 4px;
  font-size: 12px; font-weight: 600; color: var(--blue-300);
}

/* === LOAN PRODUCTS (Dark Glass) === */
.loan-products { padding: 100px 24px; background: var(--space-900); }
.loan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.loan-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 32px 24px; transition: var(--transition); position: relative;
}
.loan-card:hover {
  transform: translateY(-4px); background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12); box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.loan-card.featured { border-color: rgba(18,119,206,0.4); box-shadow: 0 0 40px rgba(18,119,206,0.1); }
.loan-card.featured::after {
  content: 'MOST POPULAR'; position: absolute; top: -1px; right: 20px;
  background: var(--blue-500); color: var(--white); padding: 4px 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.loan-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(18,119,206,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--blue-400); margin-bottom: 16px;
}
.loan-name { font-family: var(--font-display); font-size: 20px; color: var(--white); letter-spacing: 0.5px; margin-bottom: 8px; }
.loan-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 16px; min-height: 44px; }
.loan-apply {
  display: block; width: 100%; text-align: center; padding: 10px;
  background: rgba(18,119,206,0.1); color: var(--blue-400); border-radius: var(--radius-md);
  font-weight: 600; font-size: 13px; margin-top: 16px; transition: var(--transition);
}
.loan-apply:hover { background: var(--blue-600); color: var(--white); }

/* === WHOLESALE SECTION === */
.wholesale-section {
  padding: 100px 24px;
  background: linear-gradient(175deg, var(--space-950) 0%, var(--space-850) 100%);
  position: relative; overflow: hidden;
}
.wholesale-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wholesale-tag {
  font-family: var(--font-mono); font-size: 12px; color: var(--gold-400);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px;
}
.wholesale-title {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px);
  color: var(--white); letter-spacing: 1px; line-height: 1; margin-bottom: 20px;
}
.wholesale-desc { font-size: 17px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 32px; }
.wholesale-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.wf-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md);
}
.wf-icon {
  width: 36px; height: 36px; min-width: 36px; border-radius: var(--radius-sm);
  background: rgba(255,221,0,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-size: 14px;
}
.wf-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.wf-text strong { color: var(--white); display: block; margin-bottom: 2px; }

/* === WHOLESALE FORM (Glass) === */
.wholesale-form-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl);
  padding: 40px; position: relative; overflow: hidden;
}
.wholesale-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}

/* === MULTI-STEP FORM === */
.form-progress { display: flex; justify-content: space-between; margin-bottom: 32px; position: relative; }
.form-progress::before { content: ''; position: absolute; top: 16px; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.08); }
.form-progress-bar { position: absolute; top: 16px; left: 0; height: 2px; background: var(--gold-500); transition: var(--transition); width: 0%; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; }
.progress-dot {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); transition: var(--transition);
}
.progress-step.active .progress-dot { background: var(--gold-500); border-color: var(--gold-400); color: var(--space-900); }
.progress-step.completed .progress-dot { background: var(--green-500); border-color: var(--green-500); color: var(--white); }
.progress-label { font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; }
.progress-step.active .progress-label { color: var(--gold-400); }
.progress-step.completed .progress-label { color: var(--green-500); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.form-step-title { font-family: var(--font-display); font-size: 20px; color: var(--white); letter-spacing: 1px; margin-bottom: 20px; }
.form-nav-btn {
  padding: 10px 24px; border-radius: 4px; font-weight: 600; font-size: 14px; transition: var(--transition); cursor: pointer;
}
.form-nav-btn.back {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.form-nav-btn.back:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.form-nav-btn.next {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--space-900); box-shadow: 0 4px 16px rgba(255,221,0,0.2);
}
.form-nav-btn.next:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,221,0,0.35); }

/* === CALCULATOR (Dark Glass) === */
.calculator-section { padding: 100px 24px; background: var(--space-850); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.calc-inputs {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-xl); padding: 40px;
}
.calc-input-group { margin-bottom: 20px; }
.calc-label { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.calc-label i { color: rgba(255,255,255,0.3); }
.calc-value { font-family: var(--font-mono); font-size: 14px; color: var(--blue-400); }
.calc-slider {
  width: 100%; height: 6px; -webkit-appearance: none; appearance: none;
  background: rgba(255,255,255,0.08); border-radius: 3px; outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); cursor: pointer; box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.calc-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; border: none;
  background: var(--white); cursor: pointer;
}
.calc-results {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl);
  padding: 40px; color: var(--white); position: sticky; top: 96px;
}
.calc-result-title { font-family: var(--font-display); font-size: 24px; letter-spacing: 1px; margin-bottom: 24px; color: var(--white); }
.calc-result-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 14px; }
.calc-result-label { color: rgba(255,255,255,0.4); }
.calc-result-val { font-family: var(--font-mono); font-weight: 500; color: var(--white); }
.calc-result-total { margin-top: 24px; padding-top: 24px; border-top: 2px solid var(--gold-500); }
.calc-profit-label { font-size: 13px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; }
.calc-profit-value { font-family: var(--font-display); font-size: 48px; letter-spacing: 1px; }
.calc-profit-value.positive { color: var(--green-500); }
.calc-profit-value.negative { color: var(--red-500); }
.calc-roi {
  display: inline-block; margin-top: 8px; padding: 4px 16px;
  background: rgba(67,160,71,0.1); border-radius: 4px;
  font-size: 14px; font-weight: 600; color: var(--green-500);
}
.calc-cta { margin-top: 32px; }
.calc-cta .btn { width: 100%; justify-content: center; }

/* === MARKETPLACE (Dark) === */
.marketplace { padding: 100px 24px; background: var(--space-900); }
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deal-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.deal-card:hover {
  transform: translateY(-4px); background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12); box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.deal-image {
  height: 180px; background: linear-gradient(135deg, var(--space-800), var(--space-700));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.deal-image > i { font-size: 48px; color: rgba(255,255,255,0.1); }
.deal-status {
  position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.deal-status i { font-size: 11px; }
.deal-status.hot { background: rgba(229,57,53,0.9); color: var(--white); }
.deal-status.new { background: rgba(18,119,206,0.9); color: var(--white); }
.deal-roi {
  position: absolute; top: 12px; right: 12px; padding: 4px 12px;
  background: rgba(67,160,71,0.9); border-radius: 4px; font-size: 12px; font-weight: 700; color: var(--white);
}
.deal-body { padding: 20px; }
.deal-address { font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 4px; }
.deal-location { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.deal-numbers { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.deal-num-label { font-size: 11px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.5px; }
.deal-num-value { font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--white); }

/* === CONTRACTORS (Dark Glass) === */
.contractors { padding: 100px 24px; background: var(--space-850); }
.contractor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contractor-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.contractor-card:hover {
  transform: translateY(-4px); background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12); box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.contractor-header { padding: 24px 24px 16px; display: flex; align-items: center; gap: 16px; }
.contractor-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; color: var(--white); flex-shrink: 0;
}
.contractor-info { flex: 1; }
.contractor-name { font-weight: 700; font-size: 16px; color: var(--white); }
.contractor-specialty { font-size: 13px; color: rgba(255,255,255,0.4); }
.contractor-badge {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px;
  background: rgba(67,160,71,0.1); border-radius: 4px;
  font-size: 11px; font-weight: 600; color: var(--green-500); white-space: nowrap;
}
.contractor-body { padding: 0 24px 24px; }
.contractor-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.contractor-stat {
  text-align: center; padding: 12px;
  background: rgba(255,255,255,0.03); border-radius: var(--radius-md);
}
.contractor-stat-val { font-family: var(--font-display); font-size: 20px; color: var(--white); }
.contractor-stat-label { font-size: 11px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.5px; }
.contractor-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.contractor-tag {
  padding: 4px 10px; background: rgba(18,119,206,0.1);
  border-radius: 4px; font-size: 12px; color: var(--blue-300); font-weight: 500;
}

/* === TESTIMONIALS (Dark Glass) === */
.testimonials { padding: 100px 24px; background: var(--space-900); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 32px;
}
.testimonial-stars { color: var(--gold-500); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--white); }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.35); }

/* === CTA SECTION === */
.cta-section {
  padding: 100px 24px; background: var(--space-800);
  text-align: center; position: relative; overflow: hidden;
}
.cta-title {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
  color: var(--white); letter-spacing: 2px; margin-bottom: 20px;
}
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.4); max-width: 600px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === PRICING (used on pricing page but defined in index) === */
.pricing {
  padding: 100px 24px;
  background: linear-gradient(175deg, var(--space-850) 0%, var(--space-900) 100%);
  position: relative; overflow: hidden;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1060px; margin: 0 auto; }
.pricing-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-xl);
  padding: 40px 32px; text-align: center; transition: var(--transition); position: relative;
}
.pricing-card.featured {
  background: rgba(255,255,255,0.06); border-color: rgba(255,221,0,0.3);
  transform: scale(1.04); box-shadow: 0 0 60px rgba(255,221,0,0.08);
}
.pricing-card.featured::before {
  content: 'BEST VALUE'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--space-900); padding: 4px 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px; border-radius: 4px;
}
.pricing-name { font-family: var(--font-display); font-size: 24px; color: var(--white); letter-spacing: 1px; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 56px; color: var(--white); letter-spacing: 1px; }
.pricing-price span { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.35); }
.pricing-desc { font-size: 14px; color: rgba(255,255,255,0.35); margin: 8px 0 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li {
  padding: 10px 0; font-size: 14px; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { font-size: 12px; width: 16px; text-align: center; }
.pricing-features li i.fa-check { color: var(--green-500); }
.pricing-features li i.fa-xmark { color: rgba(255,255,255,0.15); }
.pricing-btn {
  display: block; width: 100%; padding: 14px; border-radius: 4px;
  font-weight: 700; font-size: 14px; text-align: center; transition: var(--transition);
}
.pricing-btn.outline { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--white); }
.pricing-btn.outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.pricing-btn.gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--space-900); }
.pricing-btn.gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,221,0,0.3); }

/* === HOMEPAGE RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .pathway-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .loan-grid { grid-template-columns: repeat(2, 1fr); }
  .wholesale-inner { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 768px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .loan-grid { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
  .contractor-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .wholesale-features { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-form-card { padding: 28px; }
}

/* ================================================
   ABOUT PAGE — Dark Glass
   ================================================ */
.about-hero {
  background: linear-gradient(175deg, var(--space-900) 0%, var(--space-950) 100%);
  padding: 140px 24px 100px; position: relative; overflow: hidden; text-align: center;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(18,119,206,0.1) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(255,221,0,0.05) 0%, transparent 50%);
}
.about-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.about-hero .section-tag { color: var(--gold-400); margin-bottom: 16px; }
.about-hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); color: var(--white);
  letter-spacing: 2px; margin-bottom: 24px; font-weight: 700; text-transform: uppercase;
}
.about-hero p { font-size: 18px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.about-section { padding: 80px 24px; background: var(--space-900); }
.about-section.alt { background: var(--space-850); }
.about-container { max-width: 900px; margin: 0 auto; }
.about-container h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); color: var(--white);
  letter-spacing: 1px; margin-bottom: 24px; font-weight: 700; text-transform: uppercase;
}
.about-container p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.9; margin-bottom: 20px; }
.about-container p strong { color: var(--white); }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin: 60px auto; max-width: 900px; text-align: center; padding: 0 24px;
}
.about-stat-num { font-family: var(--font-display); font-size: 48px; color: var(--blue-400); letter-spacing: 1px; font-weight: 700; }
.about-stat-label { font-size: 14px; color: rgba(255,255,255,0.35); margin-top: 4px; letter-spacing: 0.5px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.about-value {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 32px;
}
.about-value-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(18,119,206,0.1); color: var(--blue-400);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.about-value h3 { font-family: var(--font-display); font-size: 18px; color: var(--white); margin-bottom: 12px; letter-spacing: 0.5px; }
.about-value p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 0; }
.about-cta-section {
  background: var(--space-800); padding: 80px 24px; text-align: center;
}
.about-cta-section h2 { font-family: var(--font-display); font-size: 36px; color: var(--white); letter-spacing: 1px; margin-bottom: 16px; }
.about-cta-section p { color: rgba(255,255,255,0.4); font-size: 16px; margin-bottom: 32px; }
.about-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) { .about-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } .about-values { grid-template-columns: 1fr; } }

/* ================================================
   LEGAL PAGES (Terms, Privacy) — Dark Glass
   ================================================ */
.legal-hero {
  background: var(--space-900); padding: 140px 24px 60px; text-align: center;
}
.legal-content {
  max-width: 800px; margin: 0 auto; padding: 60px 24px;
  background: var(--space-950);
}
.legal-content h2 {
  font-family: var(--font-display); font-size: 20px; color: var(--white);
  letter-spacing: 1px; margin: 40px 0 16px; font-weight: 700;
}
.legal-content p, .legal-content li {
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 16px;
}
.legal-content ul { padding-left: 24px; }
.legal-content a { color: var(--blue-400); }
.legal-content a:hover { color: var(--white); }
/* ============================================================
   LIGHT SECTION TEXT CONTRAST FIX
   Append to END of css/style.css
   ============================================================ */

.section-title-light {
    color: var(--concrete-900);
}

section[style*="--white"],
section[style*="--concrete-50"],
section[style*="--concrete-100"] {
    color: var(--concrete-700);
}

section[style*="--white"] h1,
section[style*="--white"] h2,
section[style*="--white"] h3,
section[style*="--white"] h4,
section[style*="--white"] h5,
section[style*="--white"] h6,
section[style*="--concrete-50"] h1,
section[style*="--concrete-50"] h2,
section[style*="--concrete-50"] h3,
section[style*="--concrete-50"] h4,
section[style*="--concrete-50"] h5,
section[style*="--concrete-50"] h6,
section[style*="--concrete-100"] h1,
section[style*="--concrete-100"] h2,
section[style*="--concrete-100"] h3,
section[style*="--concrete-100"] h4,
section[style*="--concrete-100"] h5,
section[style*="--concrete-100"] h6 {
    color: var(--concrete-900);
}

section[style*="--white"] .section-title,
section[style*="--concrete-50"] .section-title,
section[style*="--concrete-100"] .section-title {
    color: var(--concrete-900);
}

section[style*="--white"] .section-subtitle,
section[style*="--concrete-50"] .section-subtitle,
section[style*="--concrete-100"] .section-subtitle {
    color: var(--concrete-600);
}

section[style*="--white"] .section-tag,
section[style*="--concrete-50"] .section-tag,
section[style*="--concrete-100"] .section-tag {
    color: var(--blue-600);
}

section[style*="--white"] p,
section[style*="--concrete-50"] p,
section[style*="--concrete-100"] p {
    color: var(--concrete-600);
}

section[style*="--white"] li,
section[style*="--concrete-50"] li,
section[style*="--concrete-100"] li {
    color: var(--concrete-600);
}

section[style*="--white"] a:not(.btn),
section[style*="--concrete-50"] a:not(.btn),
section[style*="--concrete-100"] a:not(.btn) {
    color: var(--blue-600);
}

/* Loan Details */
section[style*="--white"] .loan-detail-label,
section[style*="--concrete-50"] .loan-detail-label {
    color: var(--concrete-500);
}

section[style*="--white"] .loan-detail-value,
section[style*="--concrete-50"] .loan-detail-value {
    color: var(--concrete-900);
}

section[style*="--white"] .loan-details,
section[style*="--concrete-50"] .loan-details {
    border-top-color: var(--concrete-200);
}

section[style*="--white"] .loan-detail,
section[style*="--concrete-50"] .loan-detail {
    border-bottom: 1px solid var(--concrete-100);
}

/* Service Cards */
section[style*="--white"] .service-card h3,
section[style*="--concrete-50"] .service-card h3 {
    color: var(--concrete-900);
}

section[style*="--white"] .service-card p,
section[style*="--concrete-50"] .service-card p {
    color: var(--concrete-600);
}

section[style*="--white"] .service-card,
section[style*="--concrete-50"] .service-card {
    border-color: var(--concrete-200);
}

/* Steps / How It Works */
section[style*="--white"] .step-title,
section[style*="--concrete-50"] .step-title {
    color: var(--concrete-900);
}

section[style*="--white"] .step-desc,
section[style*="--concrete-50"] .step-desc {
    color: var(--concrete-600);
}

section[style*="--white"] .step-number,
section[style*="--concrete-50"] .step-number {
    background: var(--concrete-50);
    border-color: var(--blue-400);
}

section[style*="--white"] .step-number span,
section[style*="--concrete-50"] .step-number span {
    color: var(--blue-600);
}

/* FAQ */
section[style*="--white"] .faq-question,
section[style*="--concrete-50"] .faq-question,
section[style*="--concrete-100"] .faq-question {
    color: var(--concrete-900);
}

section[style*="--white"] .faq-question:hover,
section[style*="--concrete-50"] .faq-question:hover,
section[style*="--concrete-100"] .faq-question:hover {
    color: var(--blue-600);
}

section[style*="--white"] .faq-question i,
section[style*="--concrete-50"] .faq-question i,
section[style*="--concrete-100"] .faq-question i {
    color: var(--concrete-400);
}

section[style*="--white"] .faq-answer-inner,
section[style*="--concrete-50"] .faq-answer-inner,
section[style*="--concrete-100"] .faq-answer-inner {
    color: var(--concrete-600);
}

section[style*="--white"] .faq-item,
section[style*="--concrete-50"] .faq-item,
section[style*="--concrete-100"] .faq-item {
    border-bottom-color: var(--concrete-200);
}

/* Glass Cards on Light Backgrounds */
section[style*="--white"] .glass-card,
section[style*="--concrete-50"] .glass-card {
    background: var(--white);
    border-color: var(--concrete-200);
    backdrop-filter: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

section[style*="--white"] .glass-card:hover,
section[style*="--concrete-50"] .glass-card:hover {
    background: var(--concrete-50);
    border-color: var(--concrete-300);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Banner - keep dark */
.cta-banner h2,
.cta-banner .section-title {
    color: var(--white);
}

.cta-banner p,
.cta-banner .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

/* Form Card Title */
.form-card-title-dark {
    color: var(--concrete-900) !important;
}

section[style*="--white"] .form-card-sub,
section[style*="--concrete-50"] .form-card-sub {
    color: var(--concrete-500);
}
/* ============================================================
   LIGHT SECTION PATCH #2 — Feature Cards + Remaining Fixes
   Append to END of css/style.css
   ============================================================ */

/* Feature Cards (EMD Funding, Transactional, POF Letters) */
section[style*="--white"] .feature-title,
section[style*="--concrete-50"] .feature-title,
section[style*="--concrete-100"] .feature-title {
    color: var(--concrete-900) !important;
}

section[style*="--white"] .feature-desc,
section[style*="--concrete-50"] .feature-desc,
section[style*="--concrete-100"] .feature-desc {
    color: var(--concrete-500) !important;
}

section[style*="--white"] .feature-card,
section[style*="--white"] .card,
section[style*="--white"] .feature-card.card,
section[style*="--concrete-50"] .feature-card,
section[style*="--concrete-50"] .card,
section[style*="--concrete-50"] .feature-card.card {
    background: var(--white) !important;
    border: 1px solid var(--concrete-200) !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

section[style*="--white"] .feature-card:hover,
section[style*="--white"] .card:hover,
section[style*="--concrete-50"] .feature-card:hover,
section[style*="--concrete-50"] .card:hover {
    background: var(--concrete-50) !important;
    border-color: var(--concrete-300) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Feature card icons */
section[style*="--white"] .feature-icon,
section[style*="--concrete-50"] .feature-icon {
    background: var(--concrete-50);
    border-color: var(--concrete-200);
}

/* Step numbers on light bg - the circled 1, 2, 3 */
section[style*="--white"] .step-num,
section[style*="--concrete-50"] .step-num,
section[style*="--white"] .step-number,
section[style*="--concrete-50"] .step-number {
    background: var(--blue-600) !important;
    color: var(--white) !important;
}

/* FAQ item borders */
section[style*="--concrete-50"] .faq-item {
    border-bottom-color: var(--concrete-200) !important;
}
/* ============================================================
   FIND. FIX. FLIP. — NUCLEAR LIGHT SECTION FIX v3
   ============================================================
   Drop at END of style.css. Overrides ALL white/light text 
   inside sections with light backgrounds.
   
   BROKEN CLASSES FOUND ON LIVE SITE:
   section-title, section-subtitle, feature-title, feature-desc,
   feature-card, card, feature-grid, faq-question, faq-answer,
   faq-answer-inner, faq-item, faq-list, form-card, form-card-light,
   two-col, section-header, container, reveal
   ============================================================ */


/* ==========================================================
   1. SECTION TITLES & HEADERS
   ========================================================== */

section[style*="--white"] .section-title,
section[style*="--concrete-50"] .section-title,
section[style*="--concrete-100"] .section-title {
  color: #1A1A1A !important;
}

section[style*="--white"] .section-subtitle,
section[style*="--concrete-50"] .section-subtitle,
section[style*="--concrete-100"] .section-subtitle {
  color: #555 !important;
}

section[style*="--white"] .section-label,
section[style*="--concrete-50"] .section-label,
section[style*="--concrete-100"] .section-label {
  color: #1277CE !important;
}

section[style*="--white"] .section-header,
section[style*="--concrete-50"] .section-header,
section[style*="--concrete-100"] .section-header {
  color: #1A1A1A !important;
}


/* ==========================================================
   2. FEATURE CARDS
   ========================================================== */

section[style*="--white"] .feature-card,
section[style*="--white"] .feature-card.card,
section[style*="--white"] .card,
section[style*="--concrete-50"] .feature-card,
section[style*="--concrete-50"] .feature-card.card,
section[style*="--concrete-50"] .card,
section[style*="--concrete-100"] .feature-card,
section[style*="--concrete-100"] .feature-card.card,
section[style*="--concrete-100"] .card {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

section[style*="--white"] .feature-card:hover,
section[style*="--white"] .card:hover,
section[style*="--concrete-50"] .feature-card:hover,
section[style*="--concrete-50"] .card:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

section[style*="--white"] .feature-title,
section[style*="--concrete-50"] .feature-title,
section[style*="--concrete-100"] .feature-title {
  color: #1A1A1A !important;
}

section[style*="--white"] .feature-desc,
section[style*="--concrete-50"] .feature-desc,
section[style*="--concrete-100"] .feature-desc {
  color: #555 !important;
}


/* ==========================================================
   3. FAQ SECTION
   ========================================================== */

section[style*="--white"] .faq-list,
section[style*="--concrete-50"] .faq-list,
section[style*="--concrete-100"] .faq-list {
  color: #1A1A1A !important;
}

section[style*="--white"] .faq-item,
section[style*="--concrete-50"] .faq-item,
section[style*="--concrete-100"] .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

section[style*="--white"] .faq-question,
section[style*="--concrete-50"] .faq-question,
section[style*="--concrete-100"] .faq-question {
  color: #1A1A1A !important;
}

section[style*="--white"] .faq-question .fa-chevron-down,
section[style*="--white"] .faq-question .fa-solid,
section[style*="--concrete-50"] .faq-question .fa-chevron-down,
section[style*="--concrete-50"] .faq-question .fa-solid {
  color: #555 !important;
}

section[style*="--white"] .faq-answer,
section[style*="--white"] .faq-answer-inner,
section[style*="--white"] .faq-answer p,
section[style*="--concrete-50"] .faq-answer,
section[style*="--concrete-50"] .faq-answer-inner,
section[style*="--concrete-50"] .faq-answer p,
section[style*="--concrete-100"] .faq-answer,
section[style*="--concrete-100"] .faq-answer-inner,
section[style*="--concrete-100"] .faq-answer p {
  color: #555 !important;
}


/* ==========================================================
   4. TWO-COL LAYOUT / FORM CARDS
   ========================================================== */

section[style*="--white"] .two-col,
section[style*="--white"] .form-card,
section[style*="--white"] .form-card-light,
section[style*="--white"] .form-card label,
section[style*="--white"] .form-card-light label,
section[style*="--white"] .form-row,
section[style*="--white"] .form-group,
section[style*="--concrete-50"] .two-col,
section[style*="--concrete-50"] .form-card,
section[style*="--concrete-50"] .form-card-light,
section[style*="--concrete-50"] .form-card label,
section[style*="--concrete-50"] .form-card-light label,
section[style*="--concrete-50"] .form-row,
section[style*="--concrete-50"] .form-group,
section[style*="--concrete-100"] .two-col,
section[style*="--concrete-100"] .form-card,
section[style*="--concrete-100"] .form-card-light {
  color: #1A1A1A !important;
}


/* ==========================================================
   5. GENERIC TEXT CATCH-ALL
   These elements inherit rgb(192,192,192) from body
   ========================================================== */

section[style*="--white"] .container,
section[style*="--white"] .reveal,
section[style*="--white"] .reveal-delay-1,
section[style*="--concrete-50"] .container,
section[style*="--concrete-50"] .reveal,
section[style*="--concrete-50"] .reveal-delay-1,
section[style*="--concrete-100"] .container,
section[style*="--concrete-100"] .reveal,
section[style*="--concrete-100"] .reveal-delay-1 {
  color: #1A1A1A !important;
}

section[style*="--white"] h1,
section[style*="--white"] h2,
section[style*="--white"] h3,
section[style*="--white"] h4,
section[style*="--white"] h5,
section[style*="--white"] h6,
section[style*="--concrete-50"] h1,
section[style*="--concrete-50"] h2,
section[style*="--concrete-50"] h3,
section[style*="--concrete-50"] h4,
section[style*="--concrete-50"] h5,
section[style*="--concrete-50"] h6,
section[style*="--concrete-100"] h1,
section[style*="--concrete-100"] h2,
section[style*="--concrete-100"] h3,
section[style*="--concrete-100"] h4,
section[style*="--concrete-100"] h5,
section[style*="--concrete-100"] h6 {
  color: #1A1A1A !important;
}

section[style*="--white"] p,
section[style*="--concrete-50"] p,
section[style*="--concrete-100"] p {
  color: #555 !important;
}

section[style*="--white"] span,
section[style*="--white"] div,
section[style*="--white"] label,
section[style*="--white"] li,
section[style*="--concrete-50"] span,
section[style*="--concrete-50"] div,
section[style*="--concrete-50"] label,
section[style*="--concrete-50"] li,
section[style*="--concrete-100"] span,
section[style*="--concrete-100"] div,
section[style*="--concrete-100"] label,
section[style*="--concrete-100"] li {
  color: #1A1A1A !important;
}

section[style*="--white"] a,
section[style*="--concrete-50"] a,
section[style*="--concrete-100"] a {
  color: #1277CE !important;
}


/* ==========================================================
   6. PROTECT DARK CHILD ELEMENTS
   ========================================================== */

/* Deal breakdown box has gradient bg — keep white text */
section[style*="--white"] [style*="linear-gradient"] span,
section[style*="--white"] [style*="linear-gradient"] div,
section[style*="--white"] [style*="linear-gradient"] h2,
section[style*="--white"] [style*="linear-gradient"] h3,
section[style*="--white"] [style*="linear-gradient"] h4,
section[style*="--white"] [style*="linear-gradient"] p,
section[style*="--white"] [style*="linear-gradient"] label {
  color: #fff !important;
}

/* Concrete-400 labels inside gradient (breakdown labels) */
section[style*="--white"] [style*="linear-gradient"] [style*="concrete-400"],
section[style*="--concrete-50"] [style*="linear-gradient"] [style*="concrete-400"] {
  color: #999 !important;
}

/* Green profit value */
section[style*="--white"] .calc-profit-value.positive,
section[style*="--concrete-50"] .calc-profit-value.positive {
  color: #0a9e3c !important;
}

/* Yellow/gold buttons → black text */
section[style*="--white"] .btn-gold,
section[style*="--white"] .btn-gold span,
section[style*="--white"] .btn-gold i,
section[style*="--concrete-50"] .btn-gold,
section[style*="--concrete-50"] .btn-gold span,
section[style*="--concrete-50"] .btn-gold i {
  color: #000 !important;
}

/* Primary buttons → white text on dark bg */
section[style*="--white"] .btn-primary,
section[style*="--white"] .btn-primary span,
section[style*="--white"] .btn-primary i,
section[style*="--concrete-50"] .btn-primary,
section[style*="--concrete-50"] .btn-primary span,
section[style*="--concrete-50"] .btn-primary i {
  color: #fff !important;
}

/* Outline/secondary buttons → dark text */
section[style*="--white"] .btn-outline,
section[style*="--white"] .btn-secondary,
section[style*="--concrete-50"] .btn-outline,
section[style*="--concrete-50"] .btn-secondary {
  color: #1A1A1A !important;
  border-color: #1A1A1A !important;
}


/* ==========================================================
   7. DEAL MARKETPLACE CARDS
   ========================================================== */

/* Green ROI badges */
section[style*="--white"] [style*="background: var(--green"] span,
section[style*="--white"] [style*="background:var(--green"] span,
section[style*="--white"] [style*="background: var(--green"] div,
section[style*="--white"] [style*="background:var(--green"] div {
  color: #000 !important;
}

/* Step numbers with blue bg — keep white */
section[style*="--white"] [style*="background: var(--blue-600)"],
section[style*="--white"] [style*="background:var(--blue-600)"],
section[style*="--concrete-50"] [style*="background: var(--blue-600)"],
section[style*="--concrete-50"] [style*="background:var(--blue-600)"] {
  color: #fff !important;
}


/* ==========================================================
   8. FORM INPUTS
   ========================================================== */

section[style*="--white"] input,
section[style*="--white"] select,
section[style*="--white"] textarea,
section[style*="--concrete-50"] input,
section[style*="--concrete-50"] select,
section[style*="--concrete-50"] textarea {
  color: #1A1A1A !important;
}

section[style*="--white"] input::placeholder,
section[style*="--concrete-50"] input::placeholder {
  color: #999 !important;
}

section[style*="--white"] .address-single-field,
section[style*="--white"] .address-single-field input,
section[style*="--concrete-50"] .address-single-field,
section[style*="--concrete-50"] .address-single-field input {
  color: #1A1A1A !important;
}


/* ==========================================================
   9. MOBILE RESPONSIVE — Calculator
   ========================================================== */

@media (max-width: 768px) {
  section[style*="--white"] [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  section[style*="--white"] [style*="sticky"] {
    position: relative !important;
    top: auto !important;
  }
}


/* ==========================================================
   10. FONT AWESOME ICONS
   ========================================================== */

section[style*="--white"] .fa-solid,
section[style*="--white"] .fa-regular,
section[style*="--white"] .fas,
section[style*="--white"] .far,
section[style*="--concrete-50"] .fa-solid,
section[style*="--concrete-50"] .fa-regular {
  color: #555 !important;
}

/* Icons inside buttons inherit button color */
section[style*="--white"] .btn .fa-solid,
section[style*="--white"] .btn .fa-regular,
section[style*="--white"] .btn-gold .fa-solid,
section[style*="--white"] .btn-primary .fa-solid,
section[style*="--concrete-50"] .btn .fa-solid {
  color: inherit !important;
}
