/* ============================================================
   BASE — Reset, Typography, Utilities (NATIONAL ALL STATE)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Section */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-red { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.section-green { background: var(--green); color: #fff; }
.section-cream { background: var(--cream); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-family: var(--font-condensed); font-weight: 600; font-size: .85rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.section-dark .section-label,
.section-green .section-label { color: var(--gold); }
.section-title {
  font-family: var(--font-impact); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase; line-height: 1.05; letter-spacing: -.01em;
}
.section-desc {
  max-width: 580px; margin: 14px auto 0;
  color: var(--gray); font-size: .95rem;
}
.section-dark .section-desc { color: rgba(255,255,255,.5); }
.section-green .section-desc { color: rgba(255,255,255,.6); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-impact); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 18px 40px; border-radius: 6px; text-decoration: none;
  transition: all .3s; border: none; cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 30px var(--red-glow); }
.btn-primary:hover { background: #E02040; transform: translateY(-2px); box-shadow: 0 8px 40px var(--red-glow); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.05); }
.btn-gold { background: var(--gold); color: var(--charcoal); box-shadow: 0 4px 20px rgba(212,168,67,.4); font-weight: 700; }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,67,.5); }
.btn-sm { font-size: .9rem; padding: 14px 32px; }

/* Status Pills */
.pill {
  display: inline-block; font-size: .72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
}
.pill-success { background: #D1FAE5; color: #065F46; }
.pill-warning { background: #FEF3C7; color: #92400E; }
.pill-danger  { background: #FEE2E2; color: #991B1B; }
.pill-info    { background: #DBEAFE; color: #1E40AF; }
