:root {
  --red: #960000;
  --text: #383838;
  --white: #ffffff;
  --text-90: rgba(56, 56, 56, 0.9);
  --text-78: rgba(56, 56, 56, 0.78);
  --text-62: rgba(56, 56, 56, 0.62);
  --text-18: rgba(56, 56, 56, 0.18);
  --text-10: rgba(56, 56, 56, 0.1);
  --text-06: rgba(56, 56, 56, 0.06);
  --red-90: rgba(150, 0, 0, 0.9);
  --red-18: rgba(150, 0, 0, 0.18);
  --red-10: rgba(150, 0, 0, 0.1);
  --white-92: rgba(255, 255, 255, 0.92);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-18: rgba(255, 255, 255, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section-muted {
  background: var(--text-06);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  max-width: 880px;
  margin: 0 auto 16px;
  color: var(--text);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 42px;
  color: var(--text-78);
  font-size: 1.06rem;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 36px rgba(150, 0, 0, 0.26);
}

.btn-primary:hover {
  background: var(--text);
}

.btn-light {
  color: var(--text);
  background: var(--white);
  border-color: var(--white);
}

.btn-outline {
  color: var(--red);
  background: var(--white);
  border-color: var(--red-18);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 86px 0 72px;
  color: var(--white);
  background: var(--text);
}

.hero-media,
.hero-media img,
.hero-tint {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.36;
}

.hero-tint {
  background:
    linear-gradient(90deg, rgba(56, 56, 56, 0.98) 0%, rgba(56, 56, 56, 0.92) 50%, rgba(150, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(56, 56, 56, 0.28) 0%, rgba(56, 56, 56, 0.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--red);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  margin: 0 0 18px;
  border: 1px solid var(--white-18);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 5.55rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--white-92);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.trust-item {
  min-height: 104px;
  padding: 16px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.09);
  border-radius: 0 8px 8px 0;
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--white-80);
  font-size: 0.92rem;
}

.quote-card {
  padding: 28px;
  color: var(--text);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(56, 56, 56, 0.28);
}

.quote-card h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1.15;
}

.quote-card p {
  margin: 0 0 18px;
  color: var(--text-78);
}

.mini-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 22px;
  color: var(--text-78);
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.keyword-strip {
  padding: 18px 0;
  color: var(--white);
  background: var(--red);
}

.keyword-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.keyword-pill {
  padding: 8px 12px;
  border: 1px solid var(--white-18);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 28px;
  border: 1px solid var(--text-18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(56, 56, 56, 0.07);
}

.card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.16;
}

.card p {
  margin: 0;
  color: var(--text-78);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 28px;
}

.split-copy .section-title,
.split-copy .section-lead {
  margin-left: 0;
  text-align: left;
}

.process {
  display: grid;
  gap: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--text-18);
  border-radius: 8px;
  background: var(--white);
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.process-item h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.process-item p {
  margin: 0;
  color: var(--text-78);
}

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

.stats .section-title,
.stats .section-lead {
  color: var(--white);
}

.stats .section-lead {
  color: var(--white-80);
}

.stat-card {
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--white-18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1;
}

.stat-card span {
  color: var(--white-80);
}

.seo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.seo-copy {
  padding: 30px;
  border-left: 6px solid var(--red);
  background: var(--text-06);
  border-radius: 0 8px 8px 0;
}

.seo-copy h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.faq .section-title {
  margin: 0 auto 16px;
  text-align: center;
}

.faq .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.seo-copy p {
  margin: 0;
  color: var(--text-78);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--text-18);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 62px;
  padding: 18px 20px;
  border: 0;
  color: var(--text);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 900;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--text-78);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-cta {
  padding: 78px 0 104px;
  color: var(--white);
  background: var(--text);
}

.final-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.final-box h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.final-box p {
  margin: 0;
  color: var(--white-80);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  max-width: calc(100vw - 44px);
  padding: 16px 22px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 46px rgba(56, 56, 56, 0.3);
  font-weight: 900;
}

.sticky-cta:hover {
  background: var(--text);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .seo-block,
  .final-box {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .split-copy {
    position: static;
  }

  .grid-3,
  .stats .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .section {
    padding: 62px 0;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  .section-lead {
    margin-bottom: 30px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 56px;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1;
  }

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

  .hero-grid,
  .hero-actions {
    gap: 16px;
  }

  .hero-actions,
  .btn,
  .sticky-cta {
    width: 100%;
  }

  .hero-trust,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .card,
  .seo-copy,
  .stat-card {
    padding: 22px;
  }

  .process-item {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .faq-question {
    min-height: 58px;
    padding: 16px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .final-cta {
    padding-bottom: 118px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}
