/*
 * Homepage redesign (da mockup "Stickyattack Homepage").
 * Sezioni sotto lo slider: benefits, materiali, etichette, campioni,
 * sticker pack, perché sceglierci + recensioni, FAQ.
 * Header, footer e slider invariati. Font di brand invariato.
 */

.sa-home,
.sa-page,
.sa-product {
  --sa-hd-ink: #10291d;
  --sa-hd-cream: #faf6ec;
  --sa-hd-paper: #ffffff;
  --sa-hd-green: #21783a;
  --sa-hd-green-dark: #10291d;
  --sa-hd-yellow: #fff001;
  --sa-hd-line: rgb(16 41 29 / 16%);
  --sa-hd-radius: 16px;
}

.sa-home {
  background: var(--sa-hd-cream);
}

.sa-hd-wide {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.sa-hd-narrow {
  width: min(880px, calc(100% - 48px));
  margin-inline: auto;
}

.sa-hd-section {
  padding: clamp(52px, 6vw, 88px) 0;
}

/* ---------- Titoli ---------- */

.sa-hd-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--sa-hd-green);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 950;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sa-hd-title {
  margin: 0;
  color: var(--sa-hd-ink);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 950;
  line-height: 1.06;
  text-transform: uppercase;
}

.sa-hd-title--center {
  text-align: center;
}

.sa-hd-title--invert {
  color: #fff;
}

.sa-hd-title--invert .sa-hd-eyebrow {
  color: var(--sa-hd-yellow);
}

.sa-hd-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.sa-hd-more {
  flex-shrink: 0;
  padding-bottom: 4px;
  color: var(--sa-hd-ink);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 950;
  text-decoration: none;
  border-bottom: 2px solid var(--sa-hd-yellow);
  transition: border-color .15s ease;
}

.sa-hd-more:hover,
.sa-hd-more:focus-visible {
  border-bottom-color: var(--sa-hd-ink);
}

/* ---------- Bottoni ---------- */

.sa-hd-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 30px;
  border: 2px solid var(--sa-hd-ink);
  border-radius: 999px;
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgb(16 41 29 / 18%);
  transition: transform .15s ease, box-shadow .15s ease;
}

.sa-hd-button:hover,
.sa-hd-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgb(16 41 29 / 24%);
}

.sa-hd-button--yellow {
  background: var(--sa-hd-yellow);
  color: var(--sa-hd-ink);
}

.sa-hd-button--green {
  background: var(--sa-hd-green);
  border-color: var(--sa-hd-green-dark);
  color: #fff;
}

/* ---------- Benefits ---------- */

.sa-hd-benefits {
  padding: clamp(28px, 3.5vw, 48px) 0;
  background: var(--sa-hd-cream);
  border-bottom: 1px solid var(--sa-hd-line);
}

.sa-hd-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.sa-hd-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 18px 22px;
  background: var(--sa-hd-paper);
  border: 1px solid var(--sa-hd-line);
  border-radius: var(--sa-hd-radius);
  box-shadow: 0 4px 12px rgb(16 41 29 / 6%);
}

.sa-hd-benefit__badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--sa-hd-yellow);
  border: 1px solid var(--sa-hd-ink);
  border-radius: 14px;
}

.sa-hd-benefit__badge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.sa-hd-benefit__body {
  min-width: 0;
}

.sa-hd-benefit h3 {
  margin: 0 0 5px;
  color: var(--sa-hd-ink);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .05em;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.sa-hd-benefit p {
  margin: 0;
  color: var(--sa-hd-ink);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .sa-hd-benefit {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Card prodotto (materiali / etichette) ---------- */

.sa-hd-cards {
  display: grid;
  gap: clamp(14px, 1.8vw, 24px);
}

.sa-hd-cards--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sa-hd-cards--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sa-hd-card {
  display: grid;
  overflow: hidden;
  background: var(--sa-hd-paper);
  border: 1px solid var(--sa-hd-line);
  border-radius: var(--sa-hd-radius);
  box-shadow: 0 4px 12px rgb(16 41 29 / 6%);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.sa-hd-card:hover,
.sa-hd-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgb(16 41 29 / 16%);
}

.sa-hd-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 14px;
}

.sa-hd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sa-hd-card__label {
  padding: 12px 8px;
  background: var(--sa-hd-green-dark);
  color: #fff;
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 950;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.sa-hd-card:hover .sa-hd-card__label {
  background: var(--sa-hd-green);
}

.sa-hd-labels {
  background: var(--sa-hd-paper);
}

/* ---------- Campioni (banda verde) ---------- */

.sa-hd-samples {
  background: var(--sa-hd-green);
}

.sa-hd-samples__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.sa-hd-samples__copy p {
  margin: 22px 0 28px;
  color: #fff;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}

.sa-hd-samples__copy strong {
  color: var(--sa-hd-yellow);
  font-weight: 700;
}

.sa-hd-samples__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--sa-hd-radius);
  filter: drop-shadow(0 14px 24px rgb(16 41 29 / 35%));
}

/* ---------- Sticker pack ---------- */

.sa-hd-pack {
  background: var(--sa-hd-cream);
}

.sa-hd-pack__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.sa-hd-pack__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--sa-hd-line);
  border-radius: var(--sa-hd-radius);
  box-shadow: 0 12px 26px rgb(16 41 29 / 14%);
}

.sa-hd-pack__copy p {
  margin: 20px 0 6px;
  color: var(--sa-hd-ink);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}

.sa-hd-checklist {
  margin: 14px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sa-hd-checklist li {
  position: relative;
  padding: 12px 16px 12px 48px;
  background: var(--sa-hd-paper);
  border: 1px solid var(--sa-hd-line);
  border-radius: 12px;
  color: var(--sa-hd-ink);
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 1.4;
}

.sa-hd-checklist li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sa-hd-yellow);
  color: var(--sa-hd-ink);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: 13px;
  font-weight: 950;
  transform: translateY(-50%);
}

/* ---------- Perché scegliere + recensioni ---------- */

.sa-hd-why {
  background: var(--sa-hd-paper);
}

.sa-hd-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  margin: clamp(28px, 3.4vw, 44px) 0 0;
  padding: 0;
  list-style: none;
}

.sa-hd-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--sa-hd-cream);
  border: 1px solid var(--sa-hd-line);
  border-radius: 999px;
  color: var(--sa-hd-ink);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 950;
}

.sa-hd-chip img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.sa-hd-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: clamp(26px, 3vw, 40px) 0 0;
  font-size: clamp(15px, 1.2vw, 17px);
}

.sa-hd-stars {
  color: var(--sa-hd-green);
  font-size: 1.15em;
  letter-spacing: .12em;
}

.sa-hd-rating a {
  color: var(--sa-hd-ink);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sa-hd-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(24px, 3vw, 40px);
}

.sa-hd-review {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 24px;
  background: var(--sa-hd-cream);
  border: 1px solid var(--sa-hd-line);
  border-radius: var(--sa-hd-radius);
  box-shadow: 0 4px 12px rgb(16 41 29 / 6%);
}

.sa-hd-review p {
  margin: 0;
  color: var(--sa-hd-ink);
  font-size: 15px;
  line-height: 1.55;
}

.sa-hd-review footer {
  margin-top: auto;
  color: var(--sa-hd-ink);
  font-size: 14px;
}

.sa-hd-review cite {
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-style: normal;
  font-weight: 950;
}

/* ---------- FAQ ---------- */

.sa-hd-faq {
  background: var(--sa-hd-cream);
}

.sa-hd-faq__list {
  display: grid;
  gap: 12px;
  margin-top: clamp(28px, 3.4vw, 44px);
}

.sa-hd-faq__item {
  overflow: hidden;
  background: var(--sa-hd-paper);
  border: 1px solid var(--sa-hd-line);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgb(16 41 29 / 5%);
}

.sa-hd-faq__item summary {
  position: relative;
  padding: 18px 52px 18px 22px;
  color: var(--sa-hd-ink);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 950;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.sa-hd-faq__item summary::-webkit-details-marker {
  display: none;
}

.sa-hd-faq__item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--sa-hd-green);
  border-bottom: 3px solid var(--sa-hd-green);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .18s ease;
}

.sa-hd-faq__item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.sa-hd-faq__item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--sa-hd-ink);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Pagine interne: layout base ---------- */

.sa-hd-page {
  background: var(--sa-hd-cream);
  font-family: AvenirNextLTPro, "Avenir Next", Arial, sans-serif;
  color: var(--sa-hd-ink);
}

/* Hero pagina */

.sa-hd-page-hero {
  padding: clamp(48px, 6vw, 84px) 0;
  background: var(--sa-hd-green-dark);
  color: #fff;
}

.sa-hd-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.sa-hd-page-hero--center .sa-hd-page-hero__inner {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.sa-hd-page-hero .sa-hd-eyebrow {
  color: var(--sa-hd-yellow);
}

.sa-hd-page-hero h1 {
  margin: 0;
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 950;
  line-height: 1.04;
  text-transform: uppercase;
}

.sa-hd-page-hero__lead {
  margin: 18px 0 0;
  max-width: 640px;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}

.sa-hd-page-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 20px 0 0;
  font-size: 14px;
  color: rgb(255 255 255 / 82%);
}

.sa-hd-page-hero__trust .sa-hd-stars {
  color: var(--sa-hd-yellow);
}

.sa-hd-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 26px;
}

.sa-hd-page-hero__actions .sa-hd-link {
  color: #fff;
}

.sa-hd-page-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--sa-hd-radius);
  filter: drop-shadow(0 16px 28px rgb(0 0 0 / 35%));
}

.sa-hd-link {
  color: var(--sa-hd-ink);
  font-size: clamp(15px, 1.2vw, 16px);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Nav materiali (pill) */

.sa-hd-pillnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  padding: 18px 24px;
  background: var(--sa-hd-yellow);
}

.sa-hd-pillnav a {
  padding: 9px 22px;
  background: var(--sa-hd-paper);
  border: 2px solid var(--sa-hd-ink);
  border-radius: 999px;
  color: var(--sa-hd-ink);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease;
}

.sa-hd-pillnav a:hover,
.sa-hd-pillnav a:focus-visible {
  background: var(--sa-hd-ink);
  color: var(--sa-hd-yellow);
}

/* Griglie card aggiuntive */

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

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

/* Come funziona (step) */

.sa-hd-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  counter-reset: sa-step;
}

.sa-hd-step {
  position: relative;
  counter-increment: sa-step;
  padding: 22px;
  background: var(--sa-hd-paper);
  border: 1px solid var(--sa-hd-line);
  border-radius: var(--sa-hd-radius);
  box-shadow: 0 4px 12px rgb(16 41 29 / 6%);
}

.sa-hd-step::before {
  content: counter(sa-step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  background: var(--sa-hd-yellow);
  border: 2px solid var(--sa-hd-ink);
  border-radius: 50%;
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: 18px;
  font-weight: 950;
}

.sa-hd-step h3 {
  margin: 0 0 6px;
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.sa-hd-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Split generico (testo + immagine) */

.sa-hd-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.sa-hd-split__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--sa-hd-radius);
  filter: drop-shadow(0 12px 24px rgb(16 41 29 / 18%));
}

.sa-hd-split__copy p {
  margin: 18px 0 24px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}

/* Price card (campioni) */

.sa-hd-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.sa-hd-price {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--sa-hd-paper);
  border: 1px solid var(--sa-hd-line);
  border-radius: var(--sa-hd-radius);
  box-shadow: 0 8px 20px rgb(16 41 29 / 10%);
}

.sa-hd-price__media {
  display: grid;
  place-items: center;
  padding: 26px;
  background: var(--sa-hd-cream);
}

.sa-hd-price__media img {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
}

.sa-hd-price__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
  padding: 26px;
}

.sa-hd-price h3 {
  margin: 0;
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 950;
  text-transform: uppercase;
}

.sa-hd-price__tag {
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 950;
  color: var(--sa-hd-green);
}

.sa-hd-price ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sa-hd-price li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.45;
}

.sa-hd-price li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sa-hd-yellow);
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: 12px;
  font-weight: 950;
}

.sa-hd-price .sa-hd-button {
  margin-top: auto;
}

/* Form (crea anteprima) */

.sa-hd-form-card {
  padding: clamp(24px, 3vw, 40px);
  background: var(--sa-hd-paper);
  border: 1px solid var(--sa-hd-line);
  border-radius: var(--sa-hd-radius);
  box-shadow: 0 10px 24px rgb(16 41 29 / 10%);
}

.sa-hd-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.sa-hd-form__field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.sa-hd-form__field--full {
  grid-column: 1 / -1;
}

.sa-hd-form__field > label,
.sa-hd-form__field legend {
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sa-hd-form__field input[type="text"],
.sa-hd-form__field input[type="tel"],
.sa-hd-form__field input[type="email"],
.sa-hd-form__field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--sa-hd-line);
  border-radius: 12px;
  background: var(--sa-hd-cream);
  color: var(--sa-hd-ink);
  font-family: inherit;
  font-size: 15px;
}

.sa-hd-form__field input:focus,
.sa-hd-form__field textarea:focus {
  outline: 2px solid var(--sa-hd-green);
  outline-offset: 1px;
}

.sa-hd-form__field--radio {
  margin: 0;
  padding: 0;
  border: 0;
}

.sa-hd-form__field--radio > div {
  display: flex;
  gap: 20px;
  padding-top: 6px;
}

.sa-hd-form__field--radio label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.sa-hd-form__field input[type="file"] {
  padding: 10px 0;
  font-size: 14px;
}

.sa-hd-form__submit {
  grid-column: 1 / -1;
  justify-self: start;
  cursor: pointer;
}

/* Banda CTA finale */

.sa-hd-cta-band {
  background: var(--sa-hd-green-dark);
  color: #fff;
  text-align: center;
}

.sa-hd-cta-band .sa-hd-title {
  color: #fff;
}

.sa-hd-cta-band p {
  max-width: 640px;
  margin: 16px auto 26px;
  color: rgb(255 255 255 / 85%);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}

/* FAQ groups (supporto) */

.sa-hd-faq-group + .sa-hd-faq-group {
  margin-top: clamp(36px, 4vw, 56px);
}

.sa-hd-faq-group > h2,
.sa-hd-faq-group > h3 {
  margin: 0 0 18px;
  font-family: "Avenir bold", AvenirNextLTPro, Arial, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 950;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .sa-hd-benefits__grid {
    grid-template-columns: 1fr;
  }

  .sa-hd-cards--4,
  .sa-hd-cards--5,
  .sa-hd-cards--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sa-hd-samples__inner,
  .sa-hd-pack__inner,
  .sa-hd-page-hero__inner,
  .sa-hd-split,
  .sa-hd-prices {
    grid-template-columns: 1fr;
  }

  .sa-hd-pack__media,
  .sa-hd-split--media-first .sa-hd-split__media {
    order: 2;
  }

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

  .sa-hd-form {
    grid-template-columns: 1fr;
  }

  .sa-hd-reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .sa-hd-cards--3,
  .sa-hd-cards--4,
  .sa-hd-cards--5,
  .sa-hd-cards--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sa-hd-steps {
    grid-template-columns: 1fr;
  }

  .sa-hd-pillnav a {
    font-size: 12px;
    padding: 8px 16px;
  }

  .sa-hd-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sa-hd-button {
    width: 100%;
  }
}
