/* Cooking Set landing — wsp1-page + wsp1-faq-page + order forms + footer */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

.wsp1-page {
  --wsp1-ink: #1F2A36;
  --wsp1-ink-soft: #5c6b75;
  --wsp1-navy: #1C5A78;
  --wsp1-accent-blue: #2674A6;
  --wsp1-brand: #1C5A78;
  --wsp1-accent: #2E9E5B;
  --wsp1-accent-dark: #268A4F;
  --wsp1-bg: #ffffff;
  --wsp1-soft: #f6f9fb;
  --wsp1-line: #dde7ec;
  --wsp1-good: #2E9E5B;
  --wsp1-bad: #D8453F;
  --wsp1-red: #D8453F;
  --wsp1-gold: #F5A623;
  --wsp1-grey-old: #9AA3AD;
  --wsp1-shadow: 0 16px 40px -24px rgba(33, 77, 104, .35);
  --wsp1-radius: 18px;
  --wsp1-font: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  font-family: var(--wsp1-font);
  color: var(--wsp1-ink);
  background: var(--wsp1-bg);
  line-height: 1.6;
  font-size: 17.5px;
  -webkit-font-smoothing: antialiased;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
  position: relative;
}

.wsp1-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

.wsp1-page a {
  color: inherit;
  text-decoration: none;
}

.wsp1-page .wsp1-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

.wsp1-page h1,
.wsp1-page h2,
.wsp1-page h3 {
  line-height: 1.18;
  letter-spacing: -.01em;
}

.wsp1-page .wsp1-accent {
  color: var(--wsp1-red);
}

/* top bar */
.wsp1-page .wsp1-topbar {
  background: #C63B35;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
}

.wsp1-page .wsp1-topbar .wsp1-wrap {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 22px;
  text-align: center;
  max-width: none;
}

.wsp1-topbar .wsp1-wrap {
  justify-content: space-between;
  padding-left: 48px;
  padding-right: 48px;
}

.wsp1-page .wsp1-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wsp1-page .wsp1-topbar svg {
  width: 18px;
  height: 18px;
  flex: none;
  stroke: #fff;
  stroke-width: 2.4;
}

/* buttons */
.wsp1-page .wsp1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: 0;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: linear-gradient(180deg, #2FA85F, #268A4F);
  padding: 15px 28px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -10px rgba(36, 127, 85, .7);
  transition: transform .12s ease, box-shadow .12s ease;
}

.wsp1-page .wsp1-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px rgba(36, 127, 85, .75);
}

.wsp1-page .wsp1-btn:active {
  transform: translateY(0);
}

.wsp1-page .wsp1-btn.wsp1-sm {
  padding: 11px 20px;
  font-size: 15px;
}

.wsp1-page .wsp1-btn.wsp1-block {
  display: flex;
  width: 100%;
  padding: 19px;
  font-size: 20px;
}

.wsp1-page .wsp1-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
  animation: wsp1-pulse 1.6s infinite;
}

@keyframes wsp1-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* lead */
.wsp1-page .wsp1-lead {
  background: #fff;
  padding: 22px 0 20px;
}

.wsp1-page .wsp1-lead .wsp1-wrap {
  max-width: 840px;
  text-align: center;
}

.wsp1-page .wsp1-lead h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.wsp1-page .wsp1-sub {
  font-size: 17px;
  color: var(--wsp1-ink-soft);
  max-width: 640px;
  margin: 0 auto 12px;
}

.wsp1-page .wsp1-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14.5px;
  color: var(--wsp1-ink-soft);
}

.wsp1-page .wsp1-stars .wsp1-s {
  color: var(--wsp1-gold);
  letter-spacing: 1px;
  font-size: 17px;
}

.wsp1-page .wsp1-main-img {
  position: relative;
  max-width: 560px;
  margin: 30px auto 36px;
  border-radius: 24px;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, #eef2f5, #dde7ee);
  box-shadow: var(--wsp1-shadow);
  overflow: hidden;
}

.wsp1-page .wsp1-main-img img,
.wsp1-page .wsp1-hl-img img,
.wsp1-page .wsp1-set-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wsp1-page .wsp1-feat-list {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.wsp1-page .wsp1-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #EEF4FB;
  border: 1px solid #DCE8F5;
  border-radius: 16px;
  padding: 16px 20px;
}

.wsp1-page .wsp1-feat .wsp1-ck {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--wsp1-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.wsp1-page .wsp1-feat .wsp1-ck svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.wsp1-page .wsp1-feat p {
  font-weight: 800;
  font-size: 17px;
  color: var(--wsp1-ink);
  line-height: 1.4;
  margin: 0;
}

.wsp1-page .wsp1-feat.wsp1-bonus {
  background: #FFF6E6;
  border-color: #F5D58A;
}

.wsp1-page .wsp1-feat.wsp1-bonus .wsp1-ck {
  background: var(--wsp1-gold);
}

.wsp1-page .wsp1-offer-card {
  max-width: 560px;
  margin: 38px auto 0;
  background: #fff;
  border: 1px solid var(--wsp1-line);
  border-radius: 22px;
  box-shadow: var(--wsp1-shadow);
  padding: 32px 28px;
  text-align: center;
}

.wsp1-page .wsp1-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  background: var(--wsp1-red);
  overflow: hidden;
  padding: 10px 18px;
}

.wsp1-page .wsp1-reserve span {
  color: #fff;
  font-weight: 800;
  font-size: 15.5px;
  text-align: center;
  line-height: 1.2;
}

.wsp1-page .wsp1-offer-today {
  color: var(--wsp1-ink);
  font-weight: 800;
  font-size: 21px;
  margin-top: 16px;
}

.wsp1-page .wsp1-cd-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #FDECEA;
  border: 1px solid #F1C4C1;
  border-radius: 14px;
  padding: 12px 14px;
  color: #B3322D;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: .2px;
}

.wsp1-page .wsp1-countdown {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #C63B35;
  font-size: 18px;
  font-weight: 900;
}

.wsp1-page .wsp1-countdown span {
  border-radius: 10px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  min-width: 50px;
  text-align: center;
  background: #C63B35;
  color: #fff;
  box-shadow: 0 2px 8px rgba(198, 59, 53, .28);
}

.wsp1-page .wsp1-big-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px 14px;
  max-width: 100%;
  margin: 16px 0 4px;
  background: #E9F7EF;
  border: 2px solid #BBE6CC;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 26px -16px rgba(46, 158, 107, .55);
}

.wsp1-page .wsp1-big-price b {
  font-size: 44px;
  color: var(--wsp1-accent);
  line-height: 1;
  font-weight: 800;
}

.wsp1-page .wsp1-big-price s {
  font-size: 22px;
  color: var(--wsp1-grey-old);
}

.wsp1-page .wsp1-big-price em {
  font-style: normal;
  white-space: nowrap;
  background: var(--wsp1-red);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(216, 58, 58, .6);
}

.wsp1-page .wsp1-offer-card .wsp1-btn {
  margin-top: 18px;
}

.wsp1-page .wsp1-offer-btn {
  width: auto;
  padding: 13px 26px;
  font-size: 16px;
}

.wsp1-page .wsp1-offer-trust {
  margin-top: 16px;
  background: #E9F7EF;
  border: 1px solid #BBE6CC;
  border-radius: 12px;
  padding: 11px 14px;
  color: var(--wsp1-accent-dark);
  font-weight: 700;
  font-size: 13.5px;
}

.wsp1-page .wsp1-mid-cta {
  background: #fff;
  text-align: center;
  padding: 4px 22px 24px;
}

/* trust badges */
.wsp1-page .wsp1-trust-sec {
  background: #fff;
  padding: 0 0 60px;
}

.wsp1-page .wsp1-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.wsp1-page .wsp1-trust-card {
  background: var(--wsp1-soft);
  border: 1px solid var(--wsp1-line);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
}

.wsp1-page .wsp1-trust-card .wsp1-ic {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}

.wsp1-page .wsp1-trust-card b {
  display: block;
  font-size: 16px;
  color: var(--wsp1-ink);
  margin-bottom: 4px;
}

.wsp1-page .wsp1-trust-card small {
  color: var(--wsp1-ink-soft);
  font-size: 13.5px;
}

/* product highlights */
.wsp1-page .wsp1-hl-sec {
  background: #fff;
  padding: 18px 0 26px;
}

.wsp1-page .wsp1-hl-eyebrow {
  text-align: center;
  margin-bottom: 11px;
}

.wsp1-page .wsp1-hl-head {
  font-size: 34px;
  font-weight: 800;
  color: var(--wsp1-ink);
  text-align: center;
  margin-bottom: 14px;
}

.wsp1-page .wsp1-hl-intro {
  text-align: center;
  color: var(--wsp1-ink-soft);
  font-size: 18px;
  max-width: 660px;
  margin: 0 auto 40px;
}

.wsp1-page .wsp1-hl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 46px;
}

.wsp1-page .wsp1-hl-row:last-child {
  margin-bottom: 0;
}

.wsp1-page .wsp1-hl-img {
  background: linear-gradient(160deg, #eef2f5, #dde7ee);
  border: 1px solid var(--wsp1-line);
  border-radius: 22px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.wsp1-page .wsp1-hl-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--wsp1-ink);
  line-height: 1.2;
  margin: 0 0 12px;
}

.wsp1-page .wsp1-hl-text {
  font-size: 17px;
  color: var(--wsp1-ink-soft);
  line-height: 1.55;
  margin: 0;
}

.wsp1-page .wsp1-hl-row.wsp1-rev .wsp1-hl-img {
  order: 2;
}

.wsp1-page .wsp1-hl-row.wsp1-rev .wsp1-hl-col {
  order: 1;
}

/* set includes / order */
.wsp1-page .wsp1-set-sec {
  background: #fff;
  padding: 34px 0 8px;
}

.wsp1-page .wsp1-set-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.wsp1-page .wsp1-set-img {
  background: linear-gradient(160deg, #eef2f5, #dde7ee);
  border: 1px solid var(--wsp1-line);
  border-radius: 22px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.wsp1-page .wsp1-set-card {
  background: #fff;
  border: 1px solid var(--wsp1-line);
  border-radius: 22px;
  box-shadow: var(--wsp1-shadow);
  padding: 30px 28px;
  text-align: center;
}

.wsp1-page .wsp1-set-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--wsp1-ink);
  margin: 0 0 18px;
}

.wsp1-page .wsp1-inc-list {
  display: grid;
  gap: 10px;
  text-align: left;
}

.wsp1-page .wsp1-inc {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #EEF4FB;
  border: 1px solid #DCE8F5;
  border-radius: 14px;
  padding: 13px 18px;
}

.wsp1-page .wsp1-inc.wsp1-bonus {
  background: #FFF6E6;
  border-color: #F5D58A;
}

.wsp1-page .wsp1-inc .wsp1-emo {
  font-size: 20px;
  flex: none;
  width: 24px;
  text-align: center;
  line-height: 1.4;
}

.wsp1-page .wsp1-inc p {
  font-size: 15.5px;
  color: var(--wsp1-ink);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.wsp1-page .wsp1-set-divider {
  height: 1px;
  background: var(--wsp1-line);
  margin: 24px 0;
}

.wsp1-page .wsp1-order-h {
  font-size: 20px;
  font-weight: 800;
  color: var(--wsp1-ink);
  margin: 28px 0 14px;
}

.wsp1-page .wsp1-order-now {
  margin-top: 0;
}

/* sections generic */
.wsp1-page section {
  padding: 34px 0;
}

.wsp1-page .wsp1-eyebrow {
  display: block;
  text-align: center;
  color: var(--wsp1-navy);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.wsp1-page .wsp1-sec-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 14px;
}

/* testimonials */
.wsp1-page .wsp1-tst-sec {
  background: #fff;
}

.wsp1-page .wsp1-tst-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  font-size: 16.5px;
  color: var(--wsp1-ink-soft);
  font-weight: 600;
  margin: 0 auto 40px;
}

.wsp1-page .wsp1-tst-rating .wsp1-s {
  color: var(--wsp1-gold);
  letter-spacing: 2px;
  font-size: 21px;
  white-space: nowrap;
}

.wsp1-page .wsp1-tst-rating .wsp1-rt {
  white-space: nowrap;
}

.wsp1-page .wsp1-tst-rating b {
  color: var(--wsp1-ink);
}

.wsp1-page .wsp1-tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.wsp1-page .wsp1-tst {
  background: var(--wsp1-soft);
  border: 1px solid var(--wsp1-line);
  border-radius: var(--wsp1-radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.wsp1-page .wsp1-tst-img {
  order: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1/1;
  background: #e7eef3;
}

.wsp1-page .wsp1-tst-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wsp1-page .wsp1-tst .wsp1-who {
  order: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wsp1-page .wsp1-tst .wsp1-s {
  order: 2;
  color: var(--wsp1-gold);
  letter-spacing: 1px;
  font-size: 16px;
  margin: 0 0 12px;
}

.wsp1-page .wsp1-tst p {
  order: 3;
  font-size: 16px;
  margin: 0;
}

.wsp1-page .wsp1-tst .wsp1-who b {
  display: block;
  font-size: 15.5px;
}

.wsp1-page .wsp1-tst .wsp1-who small {
  color: var(--wsp1-ink-soft);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wsp1-page .wsp1-tst .wsp1-who small svg {
  width: 14px;
  height: 14px;
  stroke: var(--wsp1-good);
}

/* floating mobile CTA */
.wsp1-page .wsp1-floatcta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--wsp1-line);
  box-shadow: 0 -10px 30px -20px rgba(0, 0, 0, .35);
  padding: 10px 12px;
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transform: translateY(120%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}

.wsp1-page .wsp1-floatcta.wsp1-show {
  transform: translateY(0);
}

.wsp1-page .wsp1-fc-price {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.wsp1-page .wsp1-floatcta b {
  font-size: 20px;
  color: var(--wsp1-accent);
  line-height: 1;
  white-space: nowrap;
}

.wsp1-page .wsp1-fc-badge {
  background: var(--wsp1-red);
  color: #fff;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: .02em;
  padding: 4px 7px;
  border-radius: 999px;
  white-space: nowrap;
}

.wsp1-page .wsp1-floatcta .wsp1-btn {
  flex: none;
  padding: 11px 18px;
  font-size: 14.5px;
}

/* order form sections */
.wsp1-page .wsp1-order-wrap {
  background: #fff;
  padding: 28px 0 40px;
}

.wsp1-page .wsp1-order-wrap .wsp1-order-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--wsp1-ink);
  margin: 0 auto 22px;
  max-width: 640px;
  line-height: 1.3;
}

.wsp1-page .wsp1-order-wrap .wsp1-order-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--wsp1-line);
  border-radius: 22px;
  box-shadow: var(--wsp1-shadow);
  padding: 28px 24px 24px;
}

.wsp1-page .wsp1-order-wrap .cod-form,
.wsp1-page .wsp1-order-wrap .tm-order-form {
  display: grid;
  gap: 0;
}

.wsp1-page .wsp1-order-wrap .cod-form__field {
  margin-bottom: 14px;
  text-align: left;
}

.wsp1-page .wsp1-order-wrap .cod-form__field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--wsp1-ink);
  margin-bottom: 6px;
}

.wsp1-page .wsp1-order-wrap .cod-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--wsp1-line);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--wsp1-font);
  color: var(--wsp1-ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.wsp1-page .wsp1-order-wrap .cod-form__input:focus {
  outline: none;
  border-color: var(--wsp1-accent);
  box-shadow: 0 0 0 3px rgba(46, 158, 91, .15);
}

.wsp1-page .wsp1-order-wrap .cod-form__input.is-invalid,
.wsp1-page .wsp1-order-wrap .cod-form__field.has-error .cod-form__input {
  border-color: var(--wsp1-red);
  box-shadow: 0 0 0 3px rgba(216, 69, 63, .12);
}

.wsp1-page .wsp1-order-wrap .cod-form__submit-wrap {
  margin-top: 6px;
  text-align: center;
}

.wsp1-page .wsp1-order-wrap .cod-form button[type="submit"],
.wsp1-page .wsp1-order-wrap .tm-order-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  cursor: pointer;
  border: 0;
  font-family: var(--wsp1-font);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: linear-gradient(180deg, #2FA85F, #268A4F);
  padding: 17px 28px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -10px rgba(36, 127, 85, .7);
  transition: transform .12s ease, box-shadow .12s ease;
}

.wsp1-page .wsp1-order-wrap .cod-form button[type="submit"],
.wsp1-page .wsp1-order-wrap .tm-order-form button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px rgba(36, 127, 85, .75);
}

.wsp1-page .wsp1-order-wrap .cod-form button[type="submit"],
.wsp1-page .wsp1-order-wrap .tm-order-form button[type="submit"]:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.wsp1-page .wsp1-order-wrap .wsp1-form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--wsp1-ink-soft);
  font-weight: 600;
}

@media (max-width: 880px) {
  .wsp1-page .wsp1-lead h1 {
    font-size: 28px;
  }

  .wsp1-page .wsp1-sub {
    font-size: 15.5px;
  }

  .wsp1-page .wsp1-feat p {
    font-size: 16px;
  }

  .wsp1-page .wsp1-big-price {
    padding: 13px 16px;
    gap: 8px 12px;
  }

  .wsp1-page .wsp1-big-price b {
    font-size: 36px;
  }

  .wsp1-page .wsp1-big-price s {
    font-size: 19px;
  }

  .wsp1-page .wsp1-big-price em {
    font-size: 14px;
    padding: 6px 11px;
  }

  .wsp1-page .wsp1-trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 420px;
  }

  .wsp1-page .wsp1-set-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .wsp1-page .wsp1-hl-head {
    font-size: 27px;
    margin-bottom: 12px;
  }

  .wsp1-page .wsp1-hl-intro {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .wsp1-page .wsp1-hl-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }

  .wsp1-page .wsp1-hl-row.wsp1-rev .wsp1-hl-img,
  .wsp1-page .wsp1-hl-row.wsp1-rev .wsp1-hl-col {
    order: 0;
  }

  .wsp1-page .wsp1-hl-title {
    font-size: 23px;
  }

  .wsp1-page .wsp1-tst-grid {
    grid-template-columns: 1fr;
  }

  .wsp1-page .wsp1-floatcta {
    display: flex;
  }

  .wsp1-page .wsp1-sec-title {
    font-size: 28px;
  }

  body.has-wsp1-floatcta {
    padding-bottom: 72px;
  }
}

@media (max-width: 560px) {
  .wsp1-page .wsp1-wrap {
    padding: 0 12px;
  }

  .wsp1-page .wsp1-mid-cta {
    padding: 4px 12px 22px;
  }

  .wsp1-page .wsp1-offer-card {
    padding: 26px 16px;
  }

  .wsp1-page .wsp1-set-card {
    padding: 24px 16px;
  }

  .wsp1-page .wsp1-tst {
    padding: 20px;
  }

  .wsp1-page .wsp1-topbar .wsp1-wrap {
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 13px;
    padding: 10px 12px;
    justify-content: center;
  }

  .wsp1-page .wsp1-topbar span {
    white-space: nowrap;
  }

  .wsp1-page .wsp1-topbar svg {
    width: 15px;
    height: 15px;
  }

  .wsp1-page .wsp1-tst-rating {
    font-size: 14px;
    gap: 8px;
  }

  .wsp1-page .wsp1-tst-rating .wsp1-s {
    font-size: 17px;
    letter-spacing: 1px;
  }

  .wsp1-page .wsp1-order-wrap .wsp1-order-card {
    padding: 22px 16px 20px;
  }
}

/* FAQ page block */
.wsp1-faq-page {
  --wsp1-ink: #1F2A36;
  --wsp1-ink-soft: #5c6b75;
  --wsp1-navy: #1C5A78;
  --wsp1-accent: #2E9E5B;
  --wsp1-accent-dark: #268A4F;
  --wsp1-line: #dde7ec;
  --wsp1-soft: #f6f9fb;
  --wsp1-font: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  font-family: var(--wsp1-font);
  color: var(--wsp1-ink);
  background: #fff;
  line-height: 1.6;
  font-size: 17.5px;
  -webkit-font-smoothing: antialiased;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
  position: relative;
}

.wsp1-faq-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wsp1-faq-page a {
  color: inherit;
  text-decoration: none;
}

.wsp1-faq-page .wsp1-faq-sec {
  padding: 66px 0;
  background: #fff;
}

.wsp1-faq-page .wsp1-faq-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 22px;
}

.wsp1-faq-page .wsp1-faq-eyebrow {
  display: block;
  text-align: center;
  color: var(--wsp1-navy);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.wsp1-faq-page .wsp1-faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0 auto 14px;
  max-width: 720px;
}

.wsp1-faq-page .wsp1-faq-lead {
  text-align: center;
  color: var(--wsp1-ink-soft);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 42px;
}

.wsp1-faq-page .wsp1-faq-list {
  display: grid;
  gap: 14px;
}

.wsp1-faq-page .wsp1-faq-item {
  background: var(--wsp1-soft);
  border: 1px solid var(--wsp1-line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.wsp1-faq-page .wsp1-faq-item[open] {
  background: #fff;
  border-color: #BBE6CC;
  box-shadow: 0 10px 30px -18px rgba(46, 158, 91, .35);
}

.wsp1-faq-page .wsp1-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  outline: none;
}

.wsp1-faq-page .wsp1-faq-item summary::-webkit-details-marker {
  display: none;
}

.wsp1-faq-page .wsp1-faq-item summary::marker {
  display: none;
  content: '';
}

.wsp1-faq-page .wsp1-faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--wsp1-ink);
  line-height: 1.4;
  flex: 1;
}

.wsp1-faq-page .wsp1-faq-icon {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--wsp1-accent);
  position: relative;
  transition: transform .25s ease, background .2s ease;
}

.wsp1-faq-page .wsp1-faq-icon::before,
.wsp1-faq-page .wsp1-faq-icon::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 2px;
}

.wsp1-faq-page .wsp1-faq-icon::before {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2.5px;
  transform: translate(-50%, -50%);
}

.wsp1-faq-page .wsp1-faq-icon::after {
  top: 50%;
  left: 50%;
  width: 2.5px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.wsp1-faq-page .wsp1-faq-item[open] .wsp1-faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.wsp1-faq-page .wsp1-faq-a {
  padding: 0 22px 22px;
}

.wsp1-faq-page .wsp1-faq-a p {
  font-size: 16px;
  color: var(--wsp1-ink-soft);
  line-height: 1.6;
  margin: 0;
}

.wsp1-faq-page .wsp1-faq-a p b {
  color: var(--wsp1-ink);
  font-weight: 700;
}

.wsp1-faq-page .wsp1-faq-cta {
  text-align: center;
  margin-top: 42px;
}

.wsp1-faq-page .wsp1-faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: 0;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: linear-gradient(180deg, #2FA85F, #268A4F);
  padding: 16px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -10px rgba(36, 127, 85, .7);
  transition: transform .12s ease, box-shadow .12s ease;
}

.wsp1-faq-page .wsp1-faq-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px rgba(36, 127, 85, .75);
}

.wsp1-faq-page .wsp1-faq-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
  animation: wsp1-faq-pulse 1.6s infinite;
}

@keyframes wsp1-faq-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 640px) {
  .wsp1-faq-page .wsp1-faq-sec {
    padding: 50px 0;
  }

  .wsp1-faq-page .wsp1-faq-wrap {
    padding: 0 14px;
  }

  .wsp1-faq-page .wsp1-faq-title {
    font-size: 26px;
  }

  .wsp1-faq-page .wsp1-faq-lead {
    font-size: 15.5px;
    margin-bottom: 32px;
  }

  .wsp1-faq-page .wsp1-faq-item summary {
    padding: 16px 16px;
    gap: 12px;
  }

  .wsp1-faq-page .wsp1-faq-q {
    font-size: 15.5px;
  }

  .wsp1-faq-page .wsp1-faq-icon {
    width: 28px;
    height: 28px;
  }

  .wsp1-faq-page .wsp1-faq-icon::before {
    width: 12px;
  }

  .wsp1-faq-page .wsp1-faq-icon::after {
    height: 12px;
  }

  .wsp1-faq-page .wsp1-faq-a {
    padding: 0 16px 18px;
  }

  .wsp1-faq-page .wsp1-faq-a p {
    font-size: 15px;
  }

  .wsp1-faq-page .wsp1-faq-btn {
    padding: 14px 24px;
    font-size: 15.5px;
  }
}

/* thedigitalbeat.com footer */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 2.5rem 0 1.5rem;
  font-size: .875rem;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

.site-footer .container {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
}

.site-footer .site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer .site-logo:hover {
  opacity: .85;
}

.site-footer .site-logo__text {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -.04em;
  text-transform: lowercase;
  line-height: 1;
}

.site-footer .site-logo__text-primary {
  color: #fff;
}

.site-footer .site-logo__text-accent {
  background: linear-gradient(135deg, #fdba74 0%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer__heading {
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
  font-size: 1rem;
}

.site-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.site-footer__list a {
  color: #cbd5e1;
  text-decoration: none;
}

.site-footer__list a:hover {
  color: #fff;
}

.site-footer__blurb {
  margin-top: 1rem;
  max-width: 340px;
  color: #94a3b8;
  line-height: 1.5;
}

.site-footer__bottom {
  border-top: 1px solid #334155;
  padding-top: 1rem;
  text-align: center;
  font-size: .75rem;
  color: #94a3b8;
}

.site-footer__bottom strong {
  color: #cbd5e1;
}

.site-footer__bottom a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 700;
}

.site-footer__bottom a:hover {
  color: #fff;
  text-decoration: underline;
}
