/* North Atlanta Home Buyers - shared theme (Sell Rental Property Atlanta pilot) */
:root {
  --accent: #2471A3;
  --accent-dark: #1a557c;
  --ink: #1f2a33;
  --muted: #5b6b76;
  --bg: #ffffff;
  --soft: #f2f6fa;
  --line: #dfe7ee;
  --radius: 10px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background: var(--bg);
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

/* Sticky header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 16px; padding: 12px 20px; }
.brand { font-weight: 800; font-size: 1.15rem; color: var(--ink); text-decoration: none; white-space: nowrap; }
.brand span { color: var(--accent); }
.header-phone { margin-left: auto; font-weight: 700; color: var(--ink); text-decoration: none; white-space: nowrap; }
.header-phone:hover { color: var(--accent); }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: var(--radius);
  font-weight: 700; text-decoration: none; border: 0; cursor: pointer; font-size: 1rem;
  background: var(--accent); color: #fff;
}
.btn:hover { background: var(--accent-dark); }
.btn-ghost { background: #fff; color: var(--accent); border: 2px solid var(--accent); }
.btn-ghost:hover { background: var(--soft); color: var(--accent-dark); }
.header-cta { white-space: nowrap; }
@media (max-width: 640px) { .header-phone { display: none; } }

/* Hero */
.hero { background: linear-gradient(135deg, var(--soft) 0%, #fff 70%); padding: 64px 0 48px; border-bottom: 1px solid var(--line); }
.hero h1 { font-size: 2.1rem; line-height: 1.25; margin: 0 0 12px; max-width: 700px; }
.hero p.sub { font-size: 1.15rem; color: var(--muted); max-width: 680px; margin: 0 0 24px; }
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.badge-row span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .85rem; color: var(--muted); }

/* Content */
main section { padding: 40px 0; }
h2 { font-size: 1.6rem; margin: 0 0 14px; }
h3 { font-size: 1.2rem; margin: 26px 0 8px; }
p { margin: 0 0 14px; }
ul, ol { margin: 0 0 16px; padding-left: 24px; }
li { margin-bottom: 8px; }
.card { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin: 0 0 20px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-cons .card h3 { margin-top: 0; }
.disclaimer { font-size: .85rem; color: var(--muted); background: #fffbe8; border: 1px solid #e8dd9a; border-radius: var(--radius); padding: 14px 18px; }
details { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 12px; background: #fff; }
details summary { font-weight: 700; cursor: pointer; }
details summary::-webkit-details-marker { color: var(--accent); }

/* Lead form */
.lead-section { background: var(--soft); border-top: 1px solid var(--line); padding: 56px 0; }
.lead-box { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 32px; max-width: 640px; margin: 0 auto; box-shadow: 0 4px 18px rgba(0,0,0,.06); }
.lead-box h2 { margin-top: 0; }
.lead-box label { display: block; font-weight: 600; margin: 14px 0 6px; }
.lead-box input, .lead-box select, .lead-box textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 1rem; font-family: inherit;
}
.lead-box textarea { min-height: 110px; resize: vertical; }
.lead-box .req { color: var(--accent); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.form-success { background: #e8f7ee; border: 1px solid #9ad6b2; color: #1d6b3a; border-radius: var(--radius); padding: 18px; font-weight: 600; }
.form-error { background: #fdeaea; border: 1px solid #e6a3a3; color: #8a2323; border-radius: var(--radius); padding: 18px; font-weight: 600; }

/* Footer */
footer { background: #16222c; color: #c9d6de; padding: 48px 0 28px; font-size: .95rem; }
footer h3 { color: #fff; font-size: 1.05rem; margin: 0 0 10px; }
footer a { color: #9fc4dd; }
footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-guides { list-style: none; padding: 0; margin: 0; }
.footer-guides li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #2a3b48; margin-top: 32px; padding-top: 18px; font-size: .82rem; color: #8fa3b0; }
.city-links { display: flex; flex-wrap: wrap; gap: 10px 18px; list-style: none; padding: 0; }
