:root {
  --brand-red: #eb1b24;
  --brand-red-dark: #b80f17;
  --brand-red-soft: #fff1f2;
  --brand-red-border: #ffd3d6;

  --white: #ffffff;
  --black: #141414;
  --charcoal: #242424;
  --muted: #666666;
  --light-gray: #f7f7f7;
  --border: #e5e5e5;

  --shadow: 0 18px 45px rgba(20, 20, 20, 0.10);
  --radius: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  background: var(--brand-red);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 9px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.brand-text strong {
  display: block;
  color: var(--brand-red);
  font-size: 19px;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
}

.main-nav a {
  color: var(--charcoal);
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--brand-red);
}

.mobile-menu-button {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 22px;
  color: var(--brand-red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-red);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(235, 27, 36, 0.22);
}

.btn-primary:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-red);
  border-color: var(--brand-red-border);
}

.btn-secondary:hover {
  border-color: var(--brand-red);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}

.btn-outline:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--white);
  color: var(--brand-red);
}

.hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(235, 27, 36, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff7f7 52%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 78px 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--brand-red-soft);
  color: var(--brand-red-dark);
  border: 1px solid var(--brand-red-border);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -2.2px;
  color: var(--black);
}

.hero-copy p {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  color: var(--muted);
  font-size: 14px !important;
  max-width: 650px;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: var(--brand-red);
}

.hero-card-logo {
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
}

.hero-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 26px;
}

.hero-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-card li {
  display: flex;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 700;
}

.hero-card li span,
.checklist span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: 0 0 22px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 68px 22px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-soft {
  background: var(--light-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title.no-margin {
  margin-bottom: 0;
}

.section-title h2,
.content-panel h2,
.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--black);
}

.section-title p,
.content-panel p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.content-panel,
.provider-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.06);
}

.card {
  border-top: 4px solid var(--brand-red);
}

.card h3,
.provider-card h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 20px;
}

.card p,
.provider-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.content-panel {
  box-shadow: var(--shadow);
}

.content-panel p {
  margin-bottom: 18px;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--brand-red-soft);
  border: 1px solid var(--brand-red-border);
  border-radius: 14px;
  padding: 14px;
  color: var(--charcoal);
  font-weight: 800;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.provider-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.provider-initials {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 62px;
}

.cta-panel {
  background: linear-gradient(135deg, var(--brand-red-dark), var(--brand-red));
  color: var(--white);
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  color: rgba(255,255,255,0.86);
  max-width: 720px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 42px 22px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 28px;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.78);
  margin: 0 0 8px;
  font-size: 15px;
}

.site-footer a {
  display: block;
}

.footer-disclaimer {
  max-width: var(--max-width);
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

@media (max-width: 980px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-grid.four,
  .feature-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .nav-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-text span {
    display: none;
  }

  .section,
  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-inner {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .feature-grid.four,
  .feature-grid.three,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 28px;
  }
}
@media (max-width: 980px) {
  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .main-nav.is-open a {
    padding: 13px 12px;
    border-radius: 10px;
  }

  .main-nav.is-open a:hover {
    background: var(--brand-red-soft);
  }
}