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

:root {
  --sf-red: #ce1126;
  --sf-red-dark: #a80e1f;
  --sf-black: #1a1a1a;
  --sf-white: #ffffff;
  --sf-gray-light: #f5f5f5;
  --sf-gray: #e0e0e0;
  --sf-gray-dark: #666666;
  --sf-text: #333333;
  --max-width: 1100px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--sf-text);
  background: var(--sf-white);
  line-height: 1.6;
}

a {
  color: var(--sf-red);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--sf-red-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* === Header === */
.site-header {
  background: var(--sf-black);
  color: var(--sf-white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.header-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sf-white);
}

.header-brand span {
  color: var(--sf-red);
}

.header-phone a {
  color: var(--sf-white);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-phone a:hover {
  color: var(--sf-red);
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--sf-red) 0%, var(--sf-red-dark) 100%);
  color: var(--sf-white);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem;
  max-width: var(--max-width);
  margin: 0 auto 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  border: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-white:hover {
  background: var(--sf-gray-light);
  color: var(--sf-red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--sf-white);
  border: 2px solid var(--sf-white);
}

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

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

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

/* === Sections === */
.section {
  padding: 3rem 1.5rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-alt {
  background: var(--sf-gray-light);
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--sf-black);
}

.section h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--sf-black);
}

/* === Features Grid === */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--sf-white);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid var(--sf-red);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

/* === Trust Bar === */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--sf-black);
  color: var(--sf-white);
}

.trust-item {
  flex: 1 1 160px;
  max-width: 220px;
}

.trust-item .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sf-red);
  display: block;
}

.trust-item .label {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* === CTA Banner === */
.cta-banner {
  background: var(--sf-red);
  color: var(--sf-white);
  text-align: center;
  padding: 3rem 1.5rem;
}

.cta-banner h2 {
  color: var(--sf-white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

.cta-banner .btn {
  margin: 0 0.5rem;
}

/* === Office Info === */
.office-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.office-card {
  flex: 1 1 300px;
  background: var(--sf-white);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.office-card h3 {
  border-bottom: 2px solid var(--sf-red);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.office-card p {
  margin-bottom: 0.5rem;
}

/* === Coverage List === */
.coverage-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.coverage-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
}

.coverage-list li::before {
  content: "\2713";
  color: var(--sf-red);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* === Footer === */
.site-footer {
  background: var(--sf-black);
  color: var(--sf-white);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--sf-gray);
}

.site-footer a:hover {
  color: var(--sf-white);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* === Hub Page (Index) === */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.state-card {
  background: var(--sf-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.state-card h3 {
  border-bottom: 2px solid var(--sf-red);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.city-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.city-links li a {
  font-size: 0.95rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .trust-bar {
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .trust-item .number {
    font-size: 1.5rem;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
