/* ============================================================
   My HOA Spot — Global Stylesheet
   Brand: sister to My Rental Spot
   Fonts: Plus Jakarta Sans (headings), DM Sans (body)
   Colors: #0e2230 navy, #467fcf blue, #34c38f green,
           #ffa22b orange, #f46a6a red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0e2230;
  --navy2:  #0a1a27;
  --blue:   #467fcf;
  --blue-lt:#e8f0fb;
  --green:  #34c38f;
  --orange: #ffa22b;
  --red:    #f46a6a;
  --text:   #1a2b3c;
  --text2:  #4a5f72;
  --text3:  #7a90a4;
  --border: #e2e8ef;
  --bg:     #f7f9fc;
  --white:  #ffffff;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(14,34,48,0.07);
  --shadow-md: 0 4px 16px rgba(14,34,48,0.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
p { color: var(--text2); }
a { text-decoration: none; color: var(--blue); }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.nav,
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.nav-logo-text .w { color: #fff; }
.nav-logo-text .b { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { list-style: none; }
.nav-links a,
.nav-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  font-weight: 500;
  display: block;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links li a:hover,
.nav-links a.active,
.nav-links li a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-nav-ghost {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-nav-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-nav-cta:hover { background: #3a6fb8; }

/* ── FOOTER ── */
.footer,
.site-footer {
  background: var(--navy2);
  color: rgba(255,255,255,0.45);
}
.footer .container,
.site-footer .container { padding-top: 56px; padding-bottom: 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p,
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  line-height: 1.65;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 10px;
}
.footer-col h4,
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li a,
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 9px;
  transition: color 0.15s;
  text-decoration: none;
}
.footer-col ul li a:hover,
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a,
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.15s;
  text-decoration: none;
}
.footer-legal a:hover,
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── SECTION WRAPPERS ── */
.section { padding: 80px 0; }
.section-alt,
.alt-bg { background: var(--bg); }
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-title-center,
.section-title.center { text-align: center; }
.section-sub-center,
.section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: var(--blue);
  color: #fff;
  transition: background 0.15s;
}
.btn-primary:hover { background: #3a6fb8; color: #fff; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--blue-lt); }
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: rgba(255,255,255,0.85);
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-white { background: #fff; color: var(--navy); display: inline-flex; align-items: center; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px; padding: 12px 26px; border-radius: var(--radius-md); border: none; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.btn-white:hover { background: #f0f4f8; }
.btn-lg { font-size: 16px; padding: 14px 32px; }
.btn-sm { font-size: 13px; padding: 8px 18px; border-radius: var(--radius-sm); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-sm { padding: 20px 22px; }

/* ── BADGES / PILLS ── */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.badge-blue { background: rgba(70,127,207,0.12); color: #2d60aa; }
.badge-green { background: rgba(52,195,143,0.12); color: #1e8a62; }
.badge-orange { background: rgba(255,162,43,0.12); color: #b07000; }
.badge-navy { background: rgba(14,34,48,0.08); color: var(--navy); }

/* ── CHECK LIST / CHECKLIST ── */
.check-list,
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.check-list li,
.checklist li {
  font-size: 14px;
  color: var(--text2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.check-list li::before,
.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(52,195,143,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2334c38f' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(70,127,207,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(70,127,207,0.12);
  border: 1px solid rgba(70,127,207,0.2);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.hero-h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; }

/* ── STAT ROW ── */
.stat-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  margin-top: 56px;
  padding-top: 44px;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.09);
}
.stat-item:last-child { border-right: none; }
.stat-num,
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); display: block; }
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.09);
  align-self: stretch;
}

/* ── PAGE HERO (