:root {
  --ink: #171b23;
  --muted: #66707d;
  --line: #e4e8ee;
  --paper: #f6f7f9;
  --white: #ffffff;
  --red: #e9002d;
  --red-dark: #b90024;
  --charcoal: #20252d;
  --steel: #dce3ea;
  --shadow: 0 24px 70px rgba(18, 24, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px clamp(18px, 4vw, 56px);
  background: rgba(246, 247, 249, 0.9);
  border-bottom: 1px solid rgba(228, 232, 238, 0.95);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 172px;
}

.brand-logo {
  display: block;
  width: 172px;
  height: auto;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.primary-cta {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(233, 0, 45, 0.25);
}

.header-cta {
  padding: 0 18px;
  font-size: 14px;
}

.primary-cta {
  padding: 0 24px;
}

.secondary-cta {
  padding: 0 20px;
  color: var(--red-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 72px) 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.8vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lead,
.process-copy p,
.cta-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  color: var(--red-dark);
  background: #fff0f3;
  border: 1px solid #ffd2dc;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  min-height: 520px;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-media a,
.service-image {
  display: block;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quick-strip div {
  padding: 24px;
  background: var(--white);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.quick-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(18, 24, 34, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
  background: var(--steel);
}

.service-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-card p,
.fit-grid p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(233, 0, 45, 0.22);
  font-weight: 800;
}

.service-card a:hover {
  background: var(--red-dark);
}

.feature-card {
  grid-column: span 2;
}

.tag {
  width: max-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--red-dark);
  background: #fff0f3;
  border: 1px solid #ffd2dc;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fit {
  background: var(--white);
}

.fit-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fit-grid article,
.faq-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fit-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--charcoal);
}

.process .eyebrow {
  color: #ffb8c6;
}

.process-copy p {
  color: #cbd3dc;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 22px;
}

.steps span {
  line-height: 1.5;
  font-weight: 700;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(58px, 7vw, 90px) clamp(18px, 5vw, 72px);
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #6f0017);
  border-radius: 8px;
}

.cta-band .eyebrow,
.cta-band p {
  color: #ffe8ed;
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 10px;
}

.cta-band .primary-cta {
  flex: 0 0 auto;
  color: var(--red-dark);
  background: var(--white);
  box-shadow: none;
}

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

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
}

.affiliate-note {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

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

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

  .feature-card {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand,
  .brand-logo {
    min-width: 0;
    width: 156px;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .quick-strip,
  .service-grid,
  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band .primary-cta,
  .hero-actions a {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
