.site-shell {
  background: radial-gradient(1200px 600px at 20% -10%, rgba(103, 3, 12, 0.08), transparent 60%),
    radial-gradient(1000px 500px at 90% 0%, rgba(31, 41, 55, 0.12), transparent 55%),
    linear-gradient(180deg, #f9fafb 0%, #ffffff 60%, #f3f4f6 100%);
}

.hero-surface {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.08), rgba(103, 3, 12, 0.06));
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.card-surface {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

:root {
  --radius: 18px;
  --font-heading: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

.radius-soft {
  border-radius: var(--radius);
}

.btn-primary {
  background: #67030c;
  color: #ffffff;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  background: #4f0209;
  box-shadow: 0 12px 26px rgba(103, 3, 12, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(103, 3, 12, 0.4);
  color: #67030c;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: rgba(103, 3, 12, 0.08);
  color: #3d0207;
  transform: translateY(-1px);
}

.section-title {
  position: relative;
  padding-bottom: 0.9rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  height: 3px;
  width: 100%;
  background: #67030c;
  border-radius: 999px;
  transform-origin: left center;
  transform: scaleX(0.35);
  transition: transform 0.6s ease;
}

.section-title.in-view::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.icon-pill {
  border-radius: 999px;
  background: rgba(103, 3, 12, 0.08);
}

.review-track {
  transition: transform 0.6s ease;
}

.sticky-call {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.3);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.sticky-call.is-hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.sticky-call.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-icons img {
  height: 48px;
  width: auto;
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.32rem;
  }

  body {
    padding-bottom: 5rem;
  }
}
