/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2b4a;
  --navy2:  #243557;
  --gold:   #0e91d9;
  --gold2:  #3aaee8;
  --white:  #ffffff;
  --offwhite: #f4f8fc;
  --gray:   #6b7280;
  --light:  #d9ecf8;
  --text:   #1f2937;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(14,145,217,.12);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Georgia', serif; color: var(--text); background: var(--white); line-height: 1.7; }

h1,h2,h3,h4 { font-family: 'Georgia', serif; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-label { font-family: sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 16px; }
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 560px; }
.divider { width: 54px; height: 3px; background: var(--gold); margin: 20px 0 40px; }

/* ─── Nav ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 84px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo span:first-child { color: var(--navy); font-size: 1rem; font-weight: 700; letter-spacing: .04em; }
.nav-logo span:last-child  { color: var(--gold); font-size: .72rem; font-family: sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--navy); font-family: sans-serif; font-size: .88rem; letter-spacing: .04em; transition: color var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--white); font-family: sans-serif; font-size: .85rem;
  font-weight: 700; padding: 9px 22px; border-radius: 6px; transition: background var(--transition);
}
.nav-cta:hover { background: var(--gold2); color: var(--white); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3a6a 100%);
  display: flex; align-items: center; padding-top: 66px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230e91d9' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; display: flex; align-items: center; gap: 64px; padding: 80px 0; }
.hero-text { flex: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,145,217,.15); border: 1px solid rgba(14,145,217,.3);
  color: var(--gold); font-family: sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 480px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--white); font-family: sans-serif; font-weight: 700;
  font-size: .9rem; padding: 14px 32px; border-radius: 7px; transition: background var(--transition), transform .15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white); font-family: sans-serif; font-weight: 600;
  font-size: .9rem; padding: 13px 32px; border-radius: 7px; border: 1.5px solid rgba(255,255,255,.35);
  transition: border-color var(--transition), background var(--transition); cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,.08); }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; }
.stat { }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-family: sans-serif; font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 4px; letter-spacing: .04em; }
.hero-card {
  flex: 0 0 340px;
  background: rgba(14,145,217,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(14,145,217,.25); border-radius: 16px; padding: 36px;
}
.hero-card-title { color: var(--gold); font-family: sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.hero-card-items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hero-card-items li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.85); font-family: sans-serif; font-size: .9rem; }
.hero-card-items li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: rgba(14,145,217,.2); color: var(--gold); border-radius: 50%; font-size: .78rem; font-weight: 700; flex-shrink: 0; }
.hero-card-cta { margin-top: 28px; width: 100%; text-align: center; padding: 13px; display: block; }

/* ─── About ─── */
.about { background: var(--offwhite); }
.about-inner { display: flex; gap: 64px; align-items: center; }
.about-img-wrap { flex: 0 0 340px; position: relative; }
.about-img-bg {
  width: 320px; height: 380px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: var(--radius); position: relative;
}
.about-img-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  background: var(--gold); border-radius: var(--radius); opacity: .18;
}
.about-initials {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; font-weight: 700; color: rgba(255,255,255,.15); letter-spacing: -.02em;
}
.about-text { flex: 1; }
.about-body { color: var(--gray); margin-bottom: 20px; }
.about-highlights { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.highlight-chip {
  background: var(--white); border: 1px solid var(--light); border-radius: 8px;
  padding: 16px 20px; flex: 1; min-width: 130px;
}
.highlight-chip strong { display: block; font-size: 1.4rem; color: var(--navy); }
.highlight-chip span  { font-family: sans-serif; font-size: .8rem; color: var(--gray); }

/* ─── Reviews ─── */
.reviews { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: var(--offwhite); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--light); transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.review-date { font-family: sans-serif; font-size: .78rem; color: var(--gray); }
.reviews-cta { text-align: center; margin-top: 48px; }
.reviews-cta a { color: var(--gold); font-family: sans-serif; font-size: .9rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ─── Blog ─── */
.blog { background: var(--offwhite); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--light); transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a80 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: rgba(255,255,255,.25);
  position: relative; overflow: hidden;
}
.blog-card-thumb-label {
  position: absolute; bottom: 12px; left: 16px;
  background: var(--gold); color: var(--navy); font-family: sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.blog-card-body { padding: 24px; }
.blog-card-meta { font-family: sans-serif; font-size: .78rem; color: var(--gray); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.blog-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; margin-bottom: 18px; }
.blog-card-link { font-family: sans-serif; font-size: .85rem; font-weight: 700; color: var(--gold); }
.blog-card-link:hover { text-decoration: underline; }

/* ─── Lead Magnet Banner ─── */
.lead-banner {
  background: linear-gradient(120deg, var(--navy) 0%, #1e3d72 100%);
  padding: 72px 0;
}
.lead-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.lead-banner-text h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 12px; }
.lead-banner-text p { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 480px; }
.lead-banner a.btn-primary { display: inline-block; white-space: nowrap; }

/* ─── Footer ─── */
footer {
  background: #0f1d33; color: rgba(255,255,255,.65);
  padding: 56px 0 32px;
}
.footer-inner { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; margin-bottom: 48px; }
.footer-brand p { font-size: .9rem; margin-top: 12px; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: .88rem; font-family: sans-serif; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; font-family: sans-serif; font-size: .8rem; flex-wrap: wrap; gap: 8px; }

/* ─── Service Tags ─── */
.service-tags { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; justify-content: center; }
.service-tag {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-top: 3px solid var(--gold);
  color: var(--navy); font-family: sans-serif; font-size: .9rem; font-weight: 700;
  padding: 18px 24px; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(14,145,217,.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  letter-spacing: .02em;
}
.service-tag:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(14,145,217,.15); border-top-color: var(--gold2); }

/* ─── Agent Cards ─── */
.agent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.agent-card {
  background: var(--white); border: 1px solid var(--light); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: transform var(--transition);
}
.agent-card:hover { transform: translateY(-3px); }
.agent-photo-wrap { height: 520px; overflow: hidden; background: #ffffff; }
.agent-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
.agent-card:first-child .agent-photo-wrap { background: #ffffff; }
.agent-card:first-child .agent-photo { object-fit: contain; object-position: center center; }
.agent-info { padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.agent-name { font-size: 1.35rem; color: var(--navy); margin: 0; }
.agent-title { font-family: sans-serif; font-size: .82rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; }
.agent-bio { color: var(--gray); font-size: .92rem; line-height: 1.65; }
.agent-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.agent-link { font-family: sans-serif; font-size: .85rem; color: var(--navy); transition: color var(--transition); }
.agent-link:hover { color: var(--gold); }
.agent-socials { display: flex; gap: 10px; margin-top: 8px; }
.social-btn {
  font-family: sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 6px; border: 1.5px solid var(--navy); color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--navy); color: var(--white); }

/* ─── Footer socials & brokerage ─── */
.footer-socials { display: flex; gap: 14px; margin-top: 16px; }
.footer-socials a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-socials a:hover { color: var(--gold); }
.footer-brokerage {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0 16px;
  font-family: sans-serif; font-size: .8rem; color: rgba(255,255,255,.4);
}

@media (max-width: 720px) {
  .agent-grid { grid-template-columns: 1fr; }
  .agent-photo-wrap { height: 260px; }
}

/* ─── Quiz Page ─── */
.quiz-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3d72 100%);
  padding: 120px 0 72px; text-align: center;
}
.quiz-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 16px; }
.quiz-hero p  { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.quiz-wrap { max-width: 700px; margin: 0 auto; padding: 64px 24px 80px; }
.quiz-progress-bar { width: 100%; height: 5px; background: var(--light); border-radius: 99px; margin-bottom: 40px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--gold); border-radius: 99px; transition: width .4s ease; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.quiz-q-num { font-family: sans-serif; font-size: .78rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.quiz-q-text { font-size: 1.3rem; color: var(--navy); margin-bottom: 28px; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quiz-opt {
  background: var(--white); border: 2px solid var(--light); border-radius: 10px;
  padding: 18px 20px; cursor: pointer; text-align: left;
  font-family: sans-serif; font-size: .92rem; color: var(--text);
  transition: border-color .2s, background .2s, transform .15s;
  display: flex; align-items: center; gap: 12px;
}
.quiz-opt:hover { border-color: var(--gold); background: #fffdf5; transform: translateY(-1px); }
.quiz-opt.selected { border-color: var(--gold); background: #e8f5fd; }
.quiz-opt-icon { font-size: 1.4rem; flex-shrink: 0; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; }
.btn-back { background: none; border: 1.5px solid var(--light); color: var(--gray); font-family: sans-serif; font-size: .9rem; padding: 11px 24px; border-radius: 7px; cursor: pointer; transition: border-color .2s; }
.btn-back:hover { border-color: var(--gray); }
.quiz-lead-form { background: var(--offwhite); border-radius: 14px; padding: 36px; border: 1px solid var(--light); }
.quiz-lead-form h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 8px; }
.quiz-lead-form p { color: var(--gray); font-size: .92rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: sans-serif; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--light); border-radius: 8px;
  font-size: .95rem; font-family: sans-serif; color: var(--text);
  transition: border-color .2s; outline: none;
}
.form-group input:focus { border-color: var(--navy); }
.quiz-result { text-align: center; padding: 40px 0; }
.result-badge {
  display: inline-block; background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: var(--white); font-size: 2.8rem; width: 88px; height: 88px;
  border-radius: 50%; line-height: 88px; margin-bottom: 20px;
}
.result-neighborhood { font-size: 1.9rem; color: var(--navy); margin-bottom: 12px; }
.result-why { color: var(--gray); font-size: 1rem; max-width: 480px; margin: 0 auto 32px; }
.result-details { background: var(--offwhite); border-radius: 12px; padding: 28px; text-align: left; margin-bottom: 32px; }
.result-details h4 { color: var(--navy); margin-bottom: 16px; }
.result-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.result-features li { font-family: sans-serif; font-size: .9rem; color: var(--gray); padding-left: 24px; position: relative; }
.result-features li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.result-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Mobile Nav Menu ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 84px;
  left: 0; right: 0;
  background: var(--navy);
  z-index: 99;
  padding: 0 24px 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.mobile-nav ul li a {
  display: block;
  color: rgba(255,255,255,.82);
  font-family: sans-serif;
  font-size: 1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--transition);
}
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-nav-cta {
  display: block;
  background: var(--gold);
  color: var(--white) !important;
  font-family: sans-serif;
  font-weight: 700;
  font-size: .95rem;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-nav-cta:hover { background: var(--gold2) !important; }

/* Hamburger → X animation */
.nav-hamburger span { transition: transform .25s ease, opacity .25s ease; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Responsive ─── */

/* ── Tablet & below ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { flex-direction: column; gap: 32px; padding: 52px 0 64px; }
  .hero-card { flex: none; width: 100%; max-width: 100%; }

  .about-inner { flex-direction: column; gap: 40px; }
  .about-img-wrap { flex: none; width: 100%; }
  .about-img-bg { width: 100%; max-width: 340px; margin: 0 auto; }

  .lead-banner-inner { flex-direction: column; text-align: center; }

  .quiz-options { grid-template-columns: 1fr; }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* Hero */
  .hero-inner { padding: 40px 0 56px; gap: 28px; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .hero-sub { font-size: .98rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 1rem;
  }
  .hero-stats { gap: 20px; margin-top: 36px; flex-wrap: wrap; }
  .stat-num { font-size: 1.65rem; }
  .hero-card { padding: 24px 20px; }

  /* About image */
  .about-img-bg { height: 300px; }
  .about-highlights { gap: 12px; }
  .highlight-chip { min-width: 0; }

  /* Service tags — 2-col grid */
  .service-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .service-tag {
    text-align: center;
    padding: 14px 10px;
    font-size: .82rem;
  }

  /* Agent */
  .agent-photo-wrap { height: 300px; }

  /* Reviews */
  .review-card { padding: 22px 18px; }

  /* Blog */
  .blog-card-thumb { height: 160px; }

  /* Lead banner buttons */
  .lead-banner-btns {
    flex-direction: column !important;
    width: 100%;
  }
  .lead-banner-btns .btn-primary,
  .lead-banner-btns .btn-outline {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    padding: 16px 20px !important;
    box-sizing: border-box;
  }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brokerage { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── Small phones (≤ 360px) ── */
@media (max-width: 360px) {
  .service-tags { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
  .stat-num { font-size: 1.5rem; }
}
