
main {
  width: min(1120px, 94vw);
}

.hero {
  margin-top: 10px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(900px 380px at 85% 10%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(110deg, rgba(89, 105, 24, 0.76), rgba(133, 151, 44, 0.46)),
    url('../img/b&r-1.webp') center/cover no-repeat;
}

.hero > div {
  border: none;
  box-shadow: none;
  background: transparent;
  color: #fff;
  padding: clamp(24px, 4vw, 44px);
  max-width: 760px;
}

.eyebrow {
  letter-spacing: 0.15em;
  font-size: 12px;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 0;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
}

.lead,
.dd,
.reason-now,
.support-menu,
.invoice,
.closing {
  margin-top: 30px;
}

.hero-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

.hero-cards article {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-cards img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.hero-cards h3 {
  text-align: left;
  font-size: 20px;
  margin: 12px 14px 6px;
}

.hero-cards p {
  margin: 0 14px 14px;
  color: var(--color-muted);
  font-size: 14px;
}

.closing .hero-cards {
  margin-bottom: 24px;
}

.lead {
  padding: 24px;
}

.lead p {
  color: var(--color-muted);
}

.lead p + p {
  margin-top: 10px;
}

.dd {
  padding: 24px;
}

.dd.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 16px;
  align-items: center;
}

.dd.split > div:first-child {
  max-width: 520px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.dd.split > div:first-child h2 {
  font-size: clamp(20px, 1.9vw, 28px);
}

.dd h2,
.support-menu h2,
.invoice h2,
.closing h2,
.reason-now h2 {
  text-align: left;
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 38px);
}

.dd .desc {
  color: var(--color-muted);
}

.steps {
  margin-top: 0;
  position: relative;
  width: min(560px, 100%);
  height: 420px;
}

.steps article,
.cards article {
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
}

.steps article {
  position: absolute;
  width: 170px;
  box-shadow: var(--shadow-soft);
  padding: 12px;
}

.steps .step-1 {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.steps .step-2 {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.steps .step-3 {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.steps .step-4 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.steps h3,
.cards h3 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 6px;
}

.steps p,
.cards p {
  color: var(--color-muted);
}

.steps p {
  font-size: 12px;
  line-height: 1.55;
}

.steps-orbit {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.steps-orbit::before {
  content: "";
  position: absolute;
  width: 370px;
  height: 250px;
  border: 2px dashed #b8c88a;
  border-radius: 50%;
}

.orbit-core {
  position: absolute;
  z-index: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6c8126;
  color: #fff;
  font-weight: 700;
}

.reason-now {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.reason-now .panel {
  padding: 24px;
}

.reason-now p {
  color: var(--color-muted);
}

.support-menu {
  padding: 24px;
}

.support-menu .subcopy {
  color: var(--color-muted);
  margin-bottom: 12px;
}

.cards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 12px;
}

.support-menu > .cards {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.invoice {
  padding: 24px;
}

.invoice p,
.invoice li,
.closing p {
  color: var(--color-muted);
}

.invoice ul {
  margin: 10px 0 16px 18px;
}

.invoice .checkbutton a,
.closing .cta {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
  padding: 11px 24px;
  border-radius: 999px;
  background: #5f7120;
  color: #fdfef8;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.invoice .checkbutton {
  display: block;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: center;
}

.closing {
  padding: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.closing .cta {
  margin-top: 10px;
}

.invoice .checkbutton a:hover,
.closing .cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }

  .cards,
  .reason-now,
  .dd.split {
    grid-template-columns: 1fr;
  }

  .dd.split > div:first-child {
    min-height: auto;
  }

  .steps-orbit {
    min-height: auto;
    display: block;
  }

  .steps-orbit::before,
  .orbit-core {
    display: none;
  }

  .steps {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .steps article {
    position: static;
    width: 100%;
    transform: none;
  }
}
