:root {
	--primary-color: #0A6EFA;
	--primary-hover: #0858C8;
	--secondary-color: #436489;
	--primary60: #0A6EFA;
	--primary70: #0858C8;
	--secondary60: #436489;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1c2026;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Topbar */
.topbar {
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1c2026;
  text-decoration: none;
}

.logo-accent {
  color: #c8202e;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #1c2026;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: #c8202e;
}

.nav-phone {
  color: #c8202e;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  padding: 96px 0 88px;
  background: #ffffff;
  text-align: center;
}

.hero .container {
  text-align: center;
}

.badge {
  display: inline-block;
  background: #c8202e;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.location-label {
  color: #a51623;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center !important;
  display: block;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1c2026;
  max-width: 760px;
  margin: 0 auto 24px !important;
  text-align: center !important;
  display: block;
}

.hero h1 .accent {
  color: #c8202e;
}

.hero-subhead {
  font-size: 1.2rem;
  color: #4a4f57;
  max-width: 620px;
  margin: 0 auto 36px !important;
  text-align: center !important;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: 8px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  background: #c8202e;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:active {
  background: #a51623;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 84px 0;
}

section .container {
  text-align: center;
}

.section-alt {
  background: #f7f7f8;
}

.section-label {
  display: block;
  color: #a51623;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center !important;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1c2026;
  max-width: 700px;
  margin: 0 auto 20px !important;
  text-align: center !important;
  display: block;
}

.section-subtitle {
  font-size: 1.12rem;
  color: #4a4f57;
  max-width: 720px;
  margin: 0 auto 48px !important;
  text-align: center !important;
  display: block;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.value-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 30px 28px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.value-item:hover {
  border-color: #c8202e;
  transform: translateY(-3px);
}

.value-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1c2026;
  margin-bottom: 10px;
}

.value-body {
  color: #4a4f57;
  font-size: 1rem;
}

/* Perks list */
.perks-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid #e8e8e8;
}

.perk:last-child {
  border-bottom: none;
}

.perk-number {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c8202e;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
}

.perk-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #1c2026;
  margin-bottom: 6px;
}

.perk-body {
  color: #4a4f57;
  font-size: 1.02rem;
}

/* CTA */
.cta {
  background: #1c2026;
  text-align: center;
}

.cta .container {
  text-align: center;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 auto 16px !important;
  text-align: center !important;
  display: block;
  max-width: 640px;
}

.cta-subhead {
  font-size: 1.15rem;
  color: #c3c7cd;
  max-width: 560px;
  margin: 0 auto 34px !important;
  text-align: center !important;
  display: block;
}

/* Footer */
footer {
  background: #14171c;
  padding: 48px 0;
}

.footer-inner {
  text-align: center;
}

.footer-name {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-line {
  color: #9aa0a8;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.footer-link {
  color: #9aa0a8;
  text-decoration: none;
}

.footer-link:hover {
  color: #c8202e;
}

.footer-tagline {
  color: #6c727b;
  font-size: 0.9rem;
  margin-top: 16px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 720px) {
  .hero {
    padding: 64px 0 56px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-subhead {
    font-size: 1.05rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .cta-title {
    font-size: 1.85rem;
  }
  section {
    padding: 60px 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .topbar-nav {
    gap: 16px;
  }
}
