:root {
  --fero-ink: #111614;
  --fero-muted: #59645f;
  --fero-paper: #f7f8f4;
  --fero-surface: #ffffff;
  --fero-soft: #edf4ef;
  --fero-green: #17624e;
  --fero-green-dark: #0f493a;
  --fero-red: #a93445;
  --fero-gold: #c59b48;
  --fero-line: #d8ded9;
  --fero-shadow: 0 18px 45px rgba(17, 22, 20, 0.10);
}

html {
  scroll-behavior: smooth;
}

#fero-prototype-root {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#fero-prototype-root:empty {
  min-height: 1px;
}

.fero-host-expanded {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: visible !important;
}

.fero-lp,
.fero-lp * {
  box-sizing: border-box;
}

.fero-lp {
  width: 100%;
  overflow-x: clip;
  background: var(--fero-paper);
  color: var(--fero-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

.fero-section {
  padding: 72px 20px;
  scroll-margin-top: 96px;
}

.fero-section--white {
  background: var(--fero-surface);
}

.fero-section--soft {
  background: var(--fero-soft);
}

.fero-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.fero-wrap,
.fero-hero__content,
.fero-hero__visual,
.fero-package,
.fero-tile,
.fero-step,
.fero-review,
.fero-faq__item,
.fero-blog-link {
  min-width: 0;
}

.fero-eyebrow {
  margin: 0 0 12px;
  color: var(--fero-red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.fero-h1,
.fero-h2,
.fero-h3 {
  margin: 0;
  color: var(--fero-ink);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.fero-h1 {
  max-width: 620px;
  font-size: 44px;
}

.fero-h2 {
  max-width: 760px;
  font-size: 34px;
}

.fero-h3 {
  font-size: 22px;
}

.fero-lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--fero-muted);
  font-size: 19px;
  overflow-wrap: break-word;
}

.fero-copy {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--fero-muted);
}

.fero-hero {
  padding: 70px 20px 46px;
  background: var(--fero-paper);
}

.fero-hero .fero-wrap {
  width: min(1240px, 100%);
}

.fero-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 60px;
  align-items: center;
}

.fero-hero__note {
  margin: 16px 0 0;
  color: var(--fero-green-dark);
  font-weight: 700;
}

.fero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--fero-green);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.fero-btn:hover,
.fero-btn:focus {
  background: var(--fero-green-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.fero-btn--secondary {
  background: transparent;
  border-color: var(--fero-green);
  color: var(--fero-green-dark);
}

.fero-btn--secondary:hover,
.fero-btn--secondary:focus {
  background: var(--fero-soft);
  color: var(--fero-green-dark);
}

.fero-btn--red {
  background: var(--fero-red);
}

.fero-btn--red:hover,
.fero-btn--red:focus {
  background: #842838;
}

.fero-hero__visual {
  display: grid;
  gap: 18px;
}

.fero-product-frame {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: clamp(12px, 2vw, 24px);
  border: 1px solid var(--fero-line);
  border-radius: 8px;
  background: var(--fero-surface);
  box-shadow: var(--fero-shadow);
  overflow: hidden;
}

.fero-product-frame img {
  display: block;
  width: min(420px, 100%);
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.fero-product-frame--photo {
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 0;
}

.fero-product-frame--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.fero-trust__item {
  min-height: 54px;
  padding: 11px 13px;
  border: 1px solid var(--fero-line);
  border-radius: 8px;
  background: var(--fero-surface);
  font-size: 15px;
  font-weight: 700;
}

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

.fero-package {
  display: grid;
  gap: 16px;
  min-height: 286px;
  padding: 22px;
  border: 1px solid var(--fero-line);
  border-radius: 8px;
  background: var(--fero-surface);
}

.fero-package--featured {
  border: 2px solid var(--fero-green);
  background: #f9fcfa;
}

.fero-package__top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.fero-package__name {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
}

.fero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--fero-soft);
  color: var(--fero-green-dark);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.fero-badge--gold {
  background: #fbf0d8;
  color: #6f4d11;
}

.fero-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fero-list li {
  position: relative;
  padding-left: 22px;
  color: var(--fero-muted);
}

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

.fero-package__action {
  align-self: end;
}

.fero-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.fero-tile {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--fero-line);
  border-radius: 8px;
  background: var(--fero-surface);
}

.fero-tile strong {
  display: block;
  margin-bottom: 6px;
  color: var(--fero-ink);
}

.fero-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  counter-reset: fero-step;
}

.fero-step {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--fero-line);
  border-radius: 8px;
  background: var(--fero-surface);
  counter-increment: fero-step;
}

.fero-step::before {
  content: counter(fero-step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--fero-green);
  color: #ffffff;
  font-weight: 700;
}

.fero-detail-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fero-price {
  margin: 4px 0 0;
  color: var(--fero-muted);
  font-size: 15px;
}

.fero-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.fero-review {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--fero-line);
  border-radius: 8px;
  background: var(--fero-surface);
}

.fero-review__tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1d7dc;
  color: #6f1f2d;
  font-size: 13px;
  font-weight: 700;
}

.fero-review p {
  margin: 0;
  color: var(--fero-muted);
}

.fero-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.fero-faq__item {
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--fero-line);
  border-radius: 8px;
  background: var(--fero-surface);
}

.fero-faq__item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.fero-faq__item p {
  margin: 0;
  color: var(--fero-muted);
}

.fero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.fero-callout {
  padding: 24px;
  border-left: 5px solid var(--fero-gold);
  background: var(--fero-surface);
}

.fero-callout .fero-copy:first-child {
  margin-top: 0;
}

.fero-callout .fero-copy + .fero-list {
  margin-top: 18px;
}

.fero-blog-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.fero-blog-link {
  display: block;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--fero-line);
  border-radius: 8px;
  background: var(--fero-surface);
  color: var(--fero-ink);
  text-decoration: none;
}

.fero-blog-link strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.fero-blog-link span {
  color: var(--fero-muted);
}

.fero-final {
  text-align: center;
}

.fero-final .fero-actions {
  justify-content: center;
}

.fero-note {
  margin-top: 12px;
  color: var(--fero-muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .fero-section {
    padding: 56px 18px;
  }

  .fero-hero__grid,
  .fero-split {
    grid-template-columns: 1fr;
  }

  .fero-hero__visual {
    order: 0;
  }

  .fero-product-frame {
    min-height: 290px;
  }

  .fero-product-frame--photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .fero-trust,
  .fero-tiles,
  .fero-steps,
  .fero-reviews,
  .fero-faq,
  .fero-blog-links {
    grid-template-columns: 1fr;
  }

  .fero-detail-head {
    display: block;
  }
}

@media (max-width: 720px) {
  .fero-h1 {
    font-size: 32px;
  }

  .fero-h2 {
    font-size: 27px;
  }

  .fero-lead {
    font-size: 17px;
  }

  .fero-hero {
    padding-top: 30px;
  }

  .fero-package-grid {
    grid-template-columns: 1fr;
  }

  .fero-actions,
  .fero-btn {
    width: 100%;
  }

  .fero-actions {
    display: grid;
  }

  .fero-btn {
    min-height: 52px;
  }

  .fero-package__top {
    display: grid;
  }

  .fero-product-frame img {
    width: min(300px, 82%);
  }

  .fero-product-frame--photo img {
    width: 100%;
  }
}
