/* ===== TOKENS ===== */
:root {
  --bg: #FAF8F5;
  --bg-warm: #F2EEE9;
  --fg: #1C1C1E;
  --accent: #C8913A;
  --accent-light: #E8C078;
  --muted: #7A7570;
  --border: #E2DDD7;
  --card: #FFFFFF;
  --dark-bg: #1C1C1E;
  --dark-fg: #FAF8F5;
  --dark-muted: rgba(250, 248, 245, 0.5);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --sp-xs: 8px; --sp-sm: 16px; --sp-md: 24px;
  --sp-lg: 48px; --sp-xl: 80px; --sp-2xl: 120px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--sp-xl) var(--sp-lg);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,145,58,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: var(--sp-xl);
}
.hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-md);
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: var(--sp-md);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
}
.hero-descriptor {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-warm);
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  letter-spacing: 0.03em;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: var(--sp-md);
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-55%, -50%);
  opacity: 0.9;
}
.hv-rect {
  width: 200px;
  height: 260px;
  background: var(--fg);
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(5deg);
  opacity: 0.07;
  border-radius: 4px;
}
.hv-accent {
  width: 140px;
  height: 3px;
  background: var(--accent);
  position: absolute;
  bottom: 18%;
  left: 30%;
  transform: rotate(-8deg);
  border-radius: 2px;
}
/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--dark-bg);
  color: var(--dark-fg);
  padding: var(--sp-2xl) var(--sp-lg);
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: var(--sp-lg);
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--dark-fg);
  margin-bottom: var(--sp-lg);
}
.manifesto-body {
  font-size: 17px;
  color: var(--dark-muted);
  max-width: 560px;
  line-height: 1.8;
}
/* ===== FEATURES ===== */
.features {
  padding: var(--sp-2xl) var(--sp-lg);
  background: var(--bg);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: var(--sp-xl); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--sp-sm);
}
.section-sub { font-size: 17px; color: var(--muted); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--sp-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(28,28,30,0.09);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-warm);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  border: 1px solid var(--border);
}
.feature-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--sp-xs);
}
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }
/* CSS Icons */
.icon-posts { width: 22px; height: 22px; position: relative; }
.icon-posts::before { content: ''; position: absolute; inset: 0; border: 2.5px solid var(--accent); border-radius: 4px; }
.icon-posts::after { content: ''; position: absolute; top: 5px; left: 5px; width: 5px; height: 12px; background: var(--accent); border-radius: 1px; box-shadow: 7px 0 0 var(--accent); }
.icon-leads { width: 22px; height: 22px; position: relative; }
.icon-leads::before { content: ''; position: absolute; bottom: 0; left: 0; width: 8px; height: 16px; background: var(--accent); border-radius: 2px; }
.icon-leads::after { content: ''; position: absolute; bottom: 0; right: 0; width: 8px; height: 22px; background: var(--accent-light); border-radius: 2px; }
.icon-brand { width: 22px; height: 22px; position: relative; }
.icon-brand::before { content: ''; position: absolute; inset: 0; border: 3px solid var(--accent); border-radius: 50%; }
.icon-brand::after { content: ''; position: absolute; top: 50%; right: -4px; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; transform: translateY(-50%); }
/* ===== PROCESS ===== */
.process {
  padding: var(--sp-2xl) var(--sp-lg);
  background: var(--bg-warm);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--sp-xl);
}
.step { flex: 1; }
.step-circle {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
  line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.step-line {
  flex: 0 0 32px;
  height: 2px;
  background: var(--border);
  margin-top: 22px;
}
/* ===== RESULTS ===== */
.results {
  background: var(--dark-bg);
  padding: var(--sp-xl) var(--sp-lg);
}
.results-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}
.result-item { text-align: center; flex: 1; }
.result-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}
.result-label {
  font-size: 13px;
  color: var(--dark-muted);
  max-width: 170px;
  margin: 0 auto;
  line-height: 1.5;
}
.result-sep {
  width: 1px;
  height: 72px;
  background: rgba(250,248,245,0.1);
  flex-shrink: 0;
}
/* ===== CLOSING ===== */
.closing-section {
  padding: var(--sp-2xl) var(--sp-lg);
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: var(--sp-lg);
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}
.closing-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: var(--sp-lg);
  flex-wrap: wrap;
}
/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--fg);
  color: var(--dark-fg);
  border-color: var(--fg);
}
.btn--primary:hover { background: #333; border-color: #333; }
.btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--fg); }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: var(--sp-2xl) var(--sp-lg);
  background: var(--bg);
}
.social-proof-inner { max-width: 1200px; margin: 0 auto; }
.social-proof-header { margin-bottom: var(--sp-xl); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--sp-lg);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-meta { flex: 1; }
.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-role {
  font-size: 12px;
  color: var(--muted);
}
.testimonial-metric {
  margin-top: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.brokerage-grid-header {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-sm);
}
.brokerage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
}
.brokerage-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
}
.brokerage-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 3px;
}
.brokerage-detail {
  font-size: 11px;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-warm);
  padding: var(--sp-lg) var(--sp-lg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--muted); }
.footer-copy { font-size: 12px; color: var(--muted); }
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-line { display: none; }
  .results-inner { flex-direction: column; }
  .result-sep { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .brokerage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero, .manifesto, .features, .process, .results, .closing-section {
    padding-left: var(--sp-md);
    padding-right: var(--sp-md);
  }
}