/* ============================================================
   DealPartners — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&family=Montserrat+Alternates:wght@300;400&display=swap');

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

:root {
  --cream:      #f7f3ec;
  --cream2:     #ede8df;
  --dark:       #1a1814;
  --dark2:      #2c2820;
  --gold:       #b8952a;
  --gold2:      #d4af5a;
  --gold-light: #f0e0a8;
  --muted:      #7a6f60;
  --border:     #ddd5c4;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 60px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,243,236,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(26,24,20,0.08); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; letter-spacing: 2px;
  color: var(--dark); text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; gap: 36px; align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s; font-weight: 500;
}
.nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--dark);
  color: var(--cream) !important;
  padding: 10px 24px;
  letter-spacing: 2px; font-size: 10px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold); color: var(--white);
  padding: 16px 36px; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  transition: background 0.25s, transform 0.2s; display: inline-block;
}
.btn-gold:hover { background: var(--dark); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid var(--border); color: var(--dark);
  padding: 16px 36px; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--dark); background: var(--dark); color: var(--cream); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero-left {
  padding: 100px 60px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 82px); font-weight: 300; line-height: 1.05;
  margin-bottom: 32px; opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  max-width: 440px; margin-bottom: 52px; font-weight: 300;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}

.hero-right {
  background: var(--dark); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(184,149,42,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(184,149,42,0.08) 0%, transparent 60%);
}
.hero-stats { position: relative; z-index: 1; padding: 60px; width: 100%; }
.hero-stats-title {
  font-family: 'Cormorant Garamond', serif; font-size: 13px;
  letter-spacing: 4px; color: var(--gold2); text-transform: uppercase;
  margin-bottom: 48px; opacity: 0; animation: fadeIn 1s 1s forwards;
}
.stat-row {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 0;
  display: flex; justify-content: space-between; align-items: baseline;
  opacity: 0;
}
.stat-row:nth-child(2) { animation: fadeIn 0.8s 1.1s forwards; }
.stat-row:nth-child(3) { animation: fadeIn 0.8s 1.2s forwards; }
.stat-row:nth-child(4) { animation: fadeIn 0.8s 1.3s forwards; }
.stat-row:nth-child(5) { animation: fadeIn 0.8s 1.4s forwards; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 48px;
  font-weight: 300; color: var(--white); line-height: 1;
}
.stat-num sup  { font-size: 20px; color: var(--gold2); }
.stat-label    { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.4); text-align: right; max-width: 160px; line-height: 1.6; }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider-gold {
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold2), transparent);
}

/* ── SECTION BASE ─────────────────────────────────────────── */
section { padding: 120px 60px; }

.section-label {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 300; line-height: 1.1; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 520px; margin-bottom: 64px; }

/* ── MARKETPLACE ──────────────────────────────────────────── */
.marketplace { background: var(--white); }

.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 20px; border: 1px solid var(--border); background: transparent;
  font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 2px;
  color: var(--muted); cursor: pointer; transition: all 0.2s; text-transform: uppercase;
}
.filter-btn.active,
.filter-btn:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }

.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }

.listing-card {
  background: var(--white); padding: 40px 36px;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.listing-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.listing-card:hover                { background: var(--cream); }
.listing-card:hover::after         { transform: scaleX(1); }

.listing-tag {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.listing-tag::before { content: '●'; font-size: 6px; }

.listing-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; margin-bottom: 12px; line-height: 1.2; }
.listing-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

.listing-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px;
  border-top: 1px solid var(--border); padding-top: 24px;
}
.metric-label { font-size: 9px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.metric-val   { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; }

.listing-link {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); text-decoration: none; font-weight: 500;
  display: flex; align-items: center; gap: 8px; transition: gap 0.2s;
}
.listing-link:hover { gap: 14px; }

.listing-confidential {
  position: absolute; top: 20px; right: 20px;
  font-size: 9px; letter-spacing: 2px; color: var(--muted);
  border: 1px solid var(--border); padding: 4px 10px; text-transform: uppercase;
}

/* ── SELL PROCESS ─────────────────────────────────────────── */
.sell                           { background: var(--dark); color: var(--cream); }
.sell .section-label            { color: var(--gold2); }
.sell .section-label::after     { background: rgba(255,255,255,0.1); }
.sell .section-title em         { color: var(--gold2); }
.sell .section-sub              { color: rgba(247,243,236,0.5); }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 80px; }
.process-line {
  position: absolute; top: 32px; left: 8%; right: 8%;
  height: 1px; background: linear-gradient(to right, var(--gold), rgba(184,149,42,0.2));
}
.process-step { padding: 0 32px; position: relative; }
.step-number {
  width: 64px; height: 64px; border: 1px solid rgba(184,149,42,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300;
  color: var(--gold2); margin-bottom: 28px; position: relative; z-index: 1;
  background: var(--dark); transition: border-color 0.3s, background 0.3s;
}
.process-step:hover .step-number { border-color: var(--gold); background: rgba(184,149,42,0.1); }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin-bottom: 12px; color: var(--white); }
.step-desc  { font-size: 13px; color: rgba(247,243,236,0.45); line-height: 1.7; }

/* ── BUYER SECTION ────────────────────────────────────────── */
.buy         { background: var(--cream2); }
.buyer-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.buyer-card {
  border: 1px solid var(--border); padding: 48px 40px;
  background: var(--cream); position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.buyer-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,24,20,0.1); }

.buyer-icon       { font-size: 32px; margin-bottom: 24px; display: block; }
.buyer-type-label { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.buyer-name       { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; margin-bottom: 16px; line-height: 1.2; }
.buyer-desc       { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }

.buyer-features { list-style: none; }
.buyer-features li {
  font-size: 12px; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; letter-spacing: 0.5px;
}
.buyer-features li::before { content: '—'; color: var(--gold); font-size: 14px; flex-shrink: 0; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-section { background: var(--white); }
.services-grid    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }

.service-item {
  background: var(--white); padding: 52px 48px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: start; transition: background 0.3s;
}
.service-item:hover { background: var(--cream); }

.service-num-big {
  font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300;
  color: var(--border); line-height: 1; transition: color 0.3s;
}
.service-item:hover .service-num-big { color: var(--gold-light); }

.service-badge     { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 12px; }
.service-title     { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 12px; }
.service-desc      { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.service-price-tag { font-size: 11px; letter-spacing: 2px; color: var(--dark); border-left: 2px solid var(--gold); padding-left: 12px; font-weight: 500; }

/* ── AI SCORE SECTION ─────────────────────────────────────── */
.ai-score {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2414 100%);
  color: var(--cream); position: relative; overflow: hidden;
}
.ai-score::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,42,0.12) 0%, transparent 70%);
}
.ai-score-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; position: relative; z-index: 1; }
.ai-score .section-label        { color: var(--gold2); }
.ai-score .section-label::after { background: rgba(255,255,255,0.1); }
.ai-score .section-title        { color: var(--white); }
.ai-score .section-title em     { color: var(--gold2); }
.ai-score .section-sub          { color: rgba(247,243,236,0.5); margin-bottom: 40px; }

.score-widget { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,149,42,0.25); padding: 48px; }
.score-widget-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: 2px; color: var(--gold2); margin-bottom: 32px; text-align: center; text-transform: uppercase; }
.score-meter      { position: relative; height: 8px; background: rgba(255,255,255,0.1); margin-bottom: 8px; }
.score-meter-fill { position: absolute; top: 0; left: 0; bottom: 0; background: linear-gradient(to right, var(--gold), var(--gold2)); transition: width 1.5s ease; }
.score-row        { margin-bottom: 24px; }
.score-row-header { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 1px; margin-bottom: 8px; }
.score-row-label  { color: rgba(255,255,255,0.6); }
.score-row-val    { color: var(--gold2); font-weight: 500; }
.score-total      { border-top: 1px solid rgba(184,149,42,0.2); padding-top: 28px; margin-top: 8px; text-align: center; }
.score-total-num  { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: var(--gold2); line-height: 1; }
.score-total-label { font-size: 10px; letter-spacing: 4px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-top: 8px; }
.score-cta {
  margin-top: 28px; width: 100%; background: var(--gold); color: var(--white);
  border: none; padding: 16px; font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; font-weight: 500; transition: background 0.2s;
}
.score-cta:hover { background: var(--gold2); }

/* ── INSIGHTS ─────────────────────────────────────────────── */
.insights      { background: var(--cream2); }
.insights-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1px; background: var(--border); }

.insight-card          { background: var(--cream2); padding: 40px 36px; transition: background 0.3s; cursor: pointer; }
.insight-card:hover    { background: var(--white); }
.insight-card.featured { grid-row: span 2; }

.insight-cat           { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.insight-title         { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; line-height: 1.3; margin-bottom: 12px; }
.insight-card.featured .insight-title { font-size: 32px; }
.insight-excerpt       { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.insight-meta          { font-size: 10px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }

/* ── CONTACT / FINAL CTA ──────────────────────────────────── */
.final-cta {
  background: var(--dark); padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.cta-left .section-label        { color: var(--gold2); }
.cta-left .section-label::after { background: rgba(255,255,255,0.1); }
.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 64px); font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 24px;
}
.cta-left h2 em { font-style: italic; color: var(--gold2); }
.cta-left p     { font-size: 14px; color: rgba(247,243,236,0.5); line-height: 1.8; margin-bottom: 40px; }

.contact-options { display: flex; flex-direction: column; gap: 1px; }
.contact-option {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  padding: 24px 28px; display: flex; align-items: center; gap: 20px;
  transition: background 0.3s, border-color 0.3s; text-decoration: none; color: inherit;
}
.contact-option:hover        { background: rgba(184,149,42,0.1); border-color: rgba(184,149,42,0.3); }
.contact-option-icon         { font-size: 22px; }
.contact-option-label        { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold2); margin-bottom: 4px; }
.contact-option-val          { font-size: 14px; color: var(--white); font-weight: 300; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(247,243,236,0.5); margin-bottom: 8px; font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream); padding: 14px 18px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option   { background: var(--dark2); }
.form-submit {
  width: 100%; background: var(--gold); color: var(--white);
  border: none; padding: 18px; font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--gold2); transform: translateY(-2px); }

/* ── NOSOTROS ─────────────────────────────────────────────── */
.nosotros { background: var(--white); }
.nosotros-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.nosotros-text {
  font-size: 14px; color: var(--muted); line-height: 1.9;
  margin-bottom: 20px; font-weight: 300;
}
.nosotros-values { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-icon { color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.value-name { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 6px; color: var(--dark); }
.value-desc { font-size: 12px; color: var(--muted); line-height: 1.7; }

.nosotros-quote-block {
  background: var(--dark);
  padding: 48px; margin-bottom: 1px; position: relative;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; line-height: 0.6; color: var(--gold);
  opacity: 0.25; position: absolute; top: 32px; left: 36px;
  pointer-events: none;
}
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.6; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.quote-author        { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.quote-author-name   { font-size: 12px; letter-spacing: 2px; font-weight: 500; color: var(--gold2); margin-bottom: 4px; }
.quote-author-role   { font-size: 11px; color: rgba(247,243,236,0.35); letter-spacing: 1px; }

.nosotros-pillars { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.pillar {
  background: var(--cream2); padding: 28px 32px;
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  transition: background 0.3s;
}
.pillar:hover { background: var(--cream); }
.pillar-num   { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--gold); line-height: 1; }
.pillar-label { font-size: 12px; font-weight: 600; letter-spacing: 1px; margin-bottom: 6px; color: var(--dark); }
.pillar-desc  { font-size: 12px; color: var(--muted); line-height: 1.7; }

@media (max-width: 1024px) {
  .nosotros-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #111009; padding: 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand   {}
.footer-logo    { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; letter-spacing: 2px; color: var(--white); margin-bottom: 16px; display: block; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 240px; }
.footer-col h4  { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 500; }
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: 12px; }
.footer-col a   { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; letter-spacing: 0.5px; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  background: #0d0c08; padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom p { font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 1px; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal                { opacity: 0; transform: translateY(32px); transition: opacity 0.9s ease, transform 0.9s 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; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav              { padding: 0 24px; }
  .nav-links       { display: none; }
  .hero            { grid-template-columns: 1fr; }
  .hero-right      { min-height: 340px; }
  .hero-left       { padding: 60px 24px; }
  section          { padding: 80px 24px; }
  .listings-grid   { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr 1fr; }
  .process-line    { display: none; }
  .buyer-types     { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .ai-score-inner  { grid-template-columns: 1fr; gap: 48px; }
  .insights-grid   { grid-template-columns: 1fr; }
  .final-cta       { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  footer           { grid-template-columns: 1fr 1fr; padding: 48px 24px; }
  .footer-bottom   { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .form-row        { grid-template-columns: 1fr; }
}
