/* RentRadar styles */
:root {
  --accent: #e53e3e;
  --accent-hover: #c53030;
  --bg: #f8f9fb;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #1a202c;
  --text-muted: #718096;
  --green: #38a169;
  --green-bg: #c6f6d5;
  --yellow: #d69e2e;
  --yellow-bg: #fefcbf;
  --red: #c53030;
  --red-bg: #fed7d7;
  --shadow: 0 1px 3px rgba(0,0,0,.08);
  --radius: 10px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.landing-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landing-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.landing-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 32px;
}

.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-cta {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
  border: none;
}

.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,.3); }

.btn-red { background: var(--accent); color: white; }
.btn-red:hover { background: var(--accent-hover); }

.btn-white { background: white; color: #1a1a2e; }

.features { padding: 60px 40px; max-width: 960px; margin: 0 auto; }
.features h2 { font-size: 1.8rem; font-weight: 700; text-align: center; margin-bottom: 40px; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--accent); }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); }

.how { background: var(--surface); padding: 60px 40px; }
.how-inner { max-width: 720px; margin: 0 auto; }
.how h2 { font-size: 1.8rem; font-weight: 700; text-align: center; margin-bottom: 40px; }

.step-list { counter-reset: steps; list-style: none; padding: 0; }
.step-list li { counter-increment: steps; display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.step-list li::before {
  content: counter(steps);
  min-width: 36px; height: 36px; background: var(--accent); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.step-list li strong { display: block; font-weight: 600; margin-bottom: 2px; }
.step-list li span { font-size: 0.9rem; color: var(--text-muted); }

footer { background: #1a1a2e; color: rgba(255,255,255,.5); padding: 24px; text-align: center; font-size: 0.85rem; }
footer a { color: rgba(255,255,255,.7); text-decoration: none; }
footer a:hover { color: white; }