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

:root {
  --bg: #f9f7f2;
  --bg-dark: #1a3c2a;
  --fg: #1a1a1a;
  --fg-muted: #5a5a5a;
  --fg-light: #f9f7f2;
  --accent: #c9a84c;
  --accent-light: #f0e6c8;
  --border: #e2dece;
  --card-bg: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav-brand { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo {
  width: 32px; height: 32px;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  letter-spacing: -0.5px;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--fg);
}
.nav-links { display: flex; gap: 2rem; }
.nav-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
  background: var(--bg-dark);
  color: var(--fg-light);
}

.hero-left {
  padding: 5rem 4rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg-light);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(249, 247, 242, 0.72);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(249, 247, 242, 0.5);
  margin-top: 0.3rem;
}

.hero-right {
  background: linear-gradient(135deg, #1e4d33 0%, #2a5c3f 50%, #1a3c2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-visual { width: 100%; max-width: 360px; }

.broker-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.broker-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249, 247, 242, 0.4);
  margin-bottom: 1rem;
}

.broker-match {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.match-avatar {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.match-info { flex: 1; }
.match-name { font-weight: 600; font-size: 0.9rem; }
.match-location { font-size: 0.75rem; color: rgba(249, 247, 242, 0.5); }
.match-need { font-size: 0.8rem; color: rgba(249, 247, 242, 0.7); margin-top: 0.2rem; }

.match-badge {
  background: #4ade80;
  color: #052e16;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.broker-status {
  font-size: 0.78rem;
  color: rgba(249, 247, 242, 0.5);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.hero-tagline {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(249, 247, 242, 0.35);
  margin-top: 1.25rem;
  font-style: italic;
  font-family: var(--font-display);
}

/* === SECTIONS === */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* === HOW IT WORKS === */
.how {
  padding: 7rem 5rem;
  background: var(--card-bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step { padding: 1.5rem; }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === PRICING === */
.pricing {
  padding: 7rem 5rem;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  background: linear-gradient(135deg, #fffdf7 0%, #fff 100%);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.plan-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.plan-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.plan-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-style: italic;
  padding-top: 0.5rem;
}

.pricing-footer {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.pricing-plus-add, .pricing-referral {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.pricing-plus-add strong, .pricing-referral strong {
  color: var(--fg);
}

/* === WHY === */
.why {
  padding: 7rem 5rem;
  background: var(--bg-dark);
  color: var(--fg-light);
}

.why .section-title { color: var(--fg-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.why-item { padding: 2rem; }

.why-icon {
  margin-bottom: 1rem;
  display: inline-block;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--fg-light);
}

.why-desc {
  font-size: 0.9rem;
  color: rgba(249, 247, 242, 0.6);
  line-height: 1.7;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--accent-light);
  padding: 7rem 5rem;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  color: rgba(249, 247, 242, 0.5);
  padding: 3.5rem 5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: 32px; height: 32px;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg-light);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(249, 247, 242, 0.7);
  margin-bottom: 0.5rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: rgba(249, 247, 242, 0.35);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-right { min-height: 320px; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .how, .pricing, .why, .manifesto { padding: 5rem 1.5rem; }
  .pricing-footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer { padding: 2.5rem 1.5rem; }
}