@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("assets/fonts/InterVariable.woff2") format("woff2");
}

:root {
  --navy: #07145f;
  --blue: #1727d5;
  --electric: #1559ff;
  --violet: #6233e6;
  --pink: #ff2f87;
  --coral: #ff5b51;
  --orange: #ff8a22;
  --cyan: #19d1d1;
  --lime: #b6ed31;
  --yellow: #ffd619;
  --ink: #111641;
  --muted: #616882;
  --paper: #fbfbff;
  --white: #fff;
  --shadow: 0 20px 50px rgba(17, 22, 65, .13);
  --soft-shadow: 0 12px 28px rgba(17, 22, 65, .1);
  --radius: 28px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -.04em;
}

section {
  position: relative;
  scroll-margin-top: 88px;
}

#what-we-do-2 {
  scroll-margin-top: -20px;
}

#how-it-works-v2 {
  scroll-margin-top: -10px;
}

#examples {
  scroll-margin-top: -20px;
}

#savings {
  scroll-margin-top: -20px;
}

#reviews,
#faq {
  scroll-margin-top: -20px;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding-bottom: 14px;
  color: var(--pink);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 4px;
  border-radius: 99px;
  background: currentColor;
}

.section-title {
  font-size: clamp(2.125rem, 4vw, 4.5rem);
  max-width: 780px;
}

.section-copy {
  color: var(--muted);
  font-size: 1.0625rem;
}

.accent-blue {
  color: var(--electric);
}

.accent-yellow {
  color: var(--yellow);
}

.accent-pink {
  color: var(--pink);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--yellow);
  color: #1d2556;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(255, 214, 25, .27);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 214, 25, .4);
}

.btn:active {
  transform: translateY(0) scale(.98);
}

:focus-visible {
  outline: 4px solid var(--cyan);
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

/* Header + hero */

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: visible;
  color: var(--white);
  isolation: isolate;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 calc(-3.3vh - 2px);
  z-index: 0;
  pointer-events: none;
  background-color: var(--navy);
  background-image: linear-gradient(90deg, rgba(5, 10, 82, .88) 0%, rgba(12, 23, 145, .65) 47%, rgba(22, 34, 183, .1) 100%), url("assets/images/electric-blue-wide.jpg");
  background-position: center, center top;
  background-attachment: scroll, scroll;
  background-repeat: no-repeat;
  background-size: 100% 100%, 2520px 1080px;
  clip-path: url("#hero-divider");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2147483000;
  padding-block: 12px;
  background: transparent;
  box-shadow: none;
  transition: background .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 20, 95, .94);
  box-shadow: 0 5px 18px rgba(0, 0, 35, .18);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 1.4375rem;
  line-height: .86;
  font-weight: 900;
  letter-spacing: -.06em;
}

.logo strong {
  display: block;
  color: var(--yellow);
}

.logo-arrow {
  color: var(--yellow);
  font-size: 1.6875rem;
  transform: rotate(-35deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 46px;
  padding-inline: 20px;
  font-size: .8125rem;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.1);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: currentColor;
  transition: transform .25s, opacity .25s;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 36px;
  padding: 100px 0;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 530px;
}

.hero-kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: .8125rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-kicker-star {
  position: absolute;
  top: -24px;
  left: 210px;
  color: var(--yellow);
  font-size: 1.6875rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-14deg);
}

.hero-diamond {
  position: absolute;
  z-index: -1;
  width: 13px;
  height: 13px;
  background: #8b5cf6;
  transform: rotate(45deg);
}

.hero-diamond-one {
  top: 82px;
  left: -28px;
}

.hero-diamond-two {
  top: 135px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: #a855f7;
  transform: rotate(61deg);
}

.hero-diamond-three {
  bottom: 82px;
  left: 238px;
  width: 8px;
  height: 8px;
  background: #7c3aed;
  transform: rotate(108deg);
}

.hero h1 {
  max-width: 520px;
  font-size: 68px;
  font-weight: 700;
}

.hero-copy > p {
  max-width: 510px;
  margin: 26px 0 32px;
  color: rgba(255,255,255,.83);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.mini-trust {
  display: none;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.78);
  font-size: .8125rem;
}

.mini-trust b {
  color: var(--yellow);
  font-size: 1rem;
}

.hero-benefits {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
}

.hero-benefit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.hero-benefit svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--yellow);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 525px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.hero-products {
  position: relative;
  z-index: 2;
  width: 460px;
  height: auto;
  max-width: none;
  right: auto;
  bottom: auto;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 30, .3));
  animation: float 5s ease-in-out infinite;
}

.price-float {
  position: relative;
  z-index: 5;
  left: auto;
  bottom: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 450px;
  max-width: none;
  align-items: center;
  gap: 6px;
  margin: -54px 0 0;
  padding: 18px 14px 13px;
  border: 3px solid white;
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: none;
}

.price-float::before {
  content: "Same & Genuine Product!";
  position: absolute;
  top: -18px;
  left: 50%;
  margin: 0;
  padding: 6px 15px;
  border-radius: 18px 18px 6px 4px;
  background: var(--ink);
  color: white;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .7);
  font-size: .6875rem;
  font-weight: 900;
  white-space: nowrap;
  transform: translateX(-50%);
}

.price-row {
  margin: 0;
  padding: 8px 7px;
  border-radius: 12px;
  background: #fff0f3;
  font-size: .6875rem;
  line-height: 1.2;
  text-align: center;
}

.price-row + .price-row {
  margin-top: 0;
  background: #fff8d8;
}

.price-row strong {
  display: block;
  color: #ff3d55;
  font-size: 1.25rem;
}

.price-row:last-of-type strong {
  color: #18a44a;
}

.saving-badge {
  position: relative;
  top: auto;
  margin: 0;
  padding: 10px 7px;
  border: 2px solid white;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--pink));
  color: white;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.025em;
}

.doodle {
  position: absolute;
  z-index: 1;
  font-size: 3.8125rem;
  font-weight: 900;
}

.doodle-one {
  top: 25px;
  left: 8%;
  color: var(--pink);
  transform: rotate(-18deg);
}

.doodle-two {
  top: 110px;
  right: 0;
  color: var(--yellow);
  transform: rotate(15deg);
}

.doodle-three {
  bottom: 36px;
  right: -25px;
  color: var(--cyan);
  transform: rotate(18deg);
}

@keyframes float {
  50% {
    transform: translateY(-14px) rotate(1deg);
  }

}

/* What we do */

.compare-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 24px;
  border: 2px solid #ff8c91;
  border-radius: 24px;
  background: white;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.15);
}

.compare-card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 17px;
  width: 28px;
  height: 25px;
  pointer-events: none;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 29' fill='none' stroke='%23ff5b51' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 27S3 19.5 3 10.5C3 5.8 6 3 10 3c2.4 0 4.6 1.3 6 3.4C17.4 4.3 19.6 3 22 3c4 0 7 2.8 7 7.5C29 19.5 16 27 16 27Z'/%3E%3C/svg%3E");
}

.compare-card.taobao {
  border-color: #66d58c;
}

.compare-card.taobao::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 29' fill='none' stroke='%2318a44a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 27S3 19.5 3 10.5C3 5.8 6 3 10 3c2.4 0 4.6 1.3 6 3.4C17.4 4.3 19.6 3 22 3c4 0 7 2.8 7 7.5C29 19.5 16 27 16 27Z'/%3E%3C/svg%3E");
}

.compare-card h3 {
  color: var(--coral);
  font-size: .875rem;
  letter-spacing: 0;
}

.compare-card.taobao h3 {
  color: #18a44a;
}

.compare-card img {
  width: 200px;
  height: 210px;
  margin: 8px auto -10px;
  object-fit: contain;
}

.compare-card small {
  color: var(--muted);
}

.compare-card h4 {
  margin-top: 24px;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.price-block {
  position: absolute;
  left: 24px;
  bottom: 24px;
}

.price-label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
}

.price-label .green {
  color: #18a44a;
}

.compare-price {
  color: var(--coral);
  font-size: 1.625rem;
  font-weight: 900;
}

.taobao .compare-price {
  color: #18a44a;
}

.vs-bubble {
  position: absolute;
  z-index: 4;
  left: 292.5px;
  top: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--violet);
  color: white;
  font-size: 1.3125rem;
  box-shadow: var(--soft-shadow);
  transform: translate(-50%, -50%);
}

.saved-card {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  padding: 30px 34px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff19a 0%, var(--yellow) 42%, #ffd84b 100%);
  box-shadow: 0 20px 26px rgba(250, 178, 0, .2), var(--soft-shadow);
  transform: none;
}

.saved-card small {
  font-weight: 900;
  text-transform: uppercase;
}

.saved-card strong {
  margin: 8px 0 16px;
  color: var(--coral);
  font-size: 1.875rem;
  line-height: 1;
}

.saved-card .saved-copy {
  max-width: 230px;
  padding-top: 14px;
  border-top: 2px solid rgba(255, 119, 76, .36);
  font-size: .875rem;
  font-weight: 800;
  line-height: 1.25;
}

.saved-piggy {
  position: absolute;
  z-index: 5;
  right: -5px;
  bottom: -8px;
  width: 134px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 10px 10px rgba(126, 40, 74, .18));
}

.what-we-do-2 {
  min-height: 700px;
  background: #fff;
}

.what-we-do-2-inner {
  width: min(1200px, calc(100% - 40px));
  min-height: 700px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
  align-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.what-we-do-2-copy {
  grid-column: span 2;
  max-width: 560px;
  color: white;
}

.what-we-do-2-card-row {
  grid-column: 3 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: end;
  align-self: center;
}

.what-we-do-2-cards {
  position: relative;
  grid-column: 1 / span 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.what-we-do-2-cards .vs-bubble {
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  font-size: 1.75rem;
}

.what-we-do-2-card {
  min-width: 0;
}

.what-we-do-2 .compare-card {
  min-height: 0;
  height: 430px;
  top: auto;
}

.what-we-do-2 .saved-card {
  min-height: 0;
  height: 380px;
  align-self: end;
  top: auto;
}

.what-we-do-2 .saved-card {
  padding-inline: 22px;
}

.what-we-do-2 .saved-card strong {
  font-size: 28px;
}

.what-we-do-2 .saved-piggy {
  right: -22px;
  bottom: -18px;
  filter: none;
}

.what-we-do-2 .saved-piggy-shadow {
  position: absolute;
  z-index: 4;
  right: -15px;
  bottom: -20px;
  width: 120px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .24) 42%, rgba(0, 0, 0, 0) 76%);
  filter: blur(3px);
}

.what-we-do-2-saved {
  grid-column: 4;
}

.what-we-do-2-copy .section-title {
  margin-top: 0;
  padding-top: 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 900;
  line-height: 46px;
  letter-spacing: normal;
}

.what-we-do-2-copy .section-copy {
  margin: 0;
  padding-top: 20px;
  max-width: 370px;
  font-size: 16px;
}

.what-we-do-2-box-image {
  display: block;
  width: 100%;
  height: auto;
}

.what-we-do-2-box-picture {
  display: block;
  width: 350px;
}

.mobile-product-name {
  display: none;
}

.saver-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.saver-arrow {
  top: -54px;
  left: -9px;
  width: 66px;
  height: 36px;
  border-top: 4px solid #5369f5;
  border-radius: 75% 0 0;
  transform: rotate(22deg);
}

.saver-arrow::before {
  content: "←";
  position: absolute;
  top: -18px;
  left: -8px;
  color: #5369f5;
  font-size: 1.8125rem;
  font-weight: 900;
  transform: rotate(-20deg);
}

.saver-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  width: 9px;
  height: 9px;
  border: 3px solid #5369f5;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(47deg);
}

.saver-confetti {
  right: -8px;
  top: 78px;
  width: 40px;
  height: 142px;
  background: radial-gradient(ellipse at 18% 4%, #ec48b9 0 3px, transparent 4px), radial-gradient(ellipse at 67% 20%, #f495ca 0 4px, transparent 5px), radial-gradient(ellipse at 21% 52%, #ff8567 0 5px, transparent 6px), radial-gradient(ellipse at 80% 63%, #ffbb4d 0 4px, transparent 5px), radial-gradient(ellipse at 40% 92%, #eb56b9 0 3px, transparent 4px);
  transform: rotate(-13deg);
}

.saver-dots {
  left: -19px;
  bottom: 64px;
  width: 43px;
  height: 54px;
  background: radial-gradient(circle at 7% 15%, #e859c4 0 3px, transparent 4px), radial-gradient(circle at 55% 42%, #5b81f9 0 2px, transparent 3px), radial-gradient(circle at 88% 88%, #fbad2e 0 3px, transparent 4px);
}

.coin {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 3px solid #eaa420;
  border-radius: 50%;
  color: #e19a16;
  background: radial-gradient(circle at 35% 28%, #ffe782, #f9b92d 62%, #eaa120);
  box-shadow: inset -3px -3px 0 rgba(190, 116, 0, .18), 0 5px 8px rgba(173, 113, 0, .15);
  font-size: .8125rem;
  font-weight: 900;
}

.coin::after {
  content: "₫";
}

.coin-top {
  right: 39px;
  bottom: 197px;
  transform: rotate(-16deg);
}

.coin-side {
  right: -8px;
  bottom: 134px;
  transform: rotate(19deg);
}

/* Examples */

.examples-section {
  overflow: hidden;
  padding: 100px 0 50px;
  background: linear-gradient(180deg, #f7f5ff 0%, #fff 100%);
}

.examples-section::before {
  content: "";
  position: absolute;
  left: -250px;
  top: 300px;
  width: 500px;
  height: 320px;
  border-radius: 50%;
  background: rgba(25, 209, 209, .1);
  transform: none;
}

.examples-section > .container {
  position: relative;
  z-index: 1;
}

.examples-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}

.examples-head .section-copy {
  max-width: 430px;
}

.examples-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
  gap: 24px;
}

.featured-product {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(155deg, #eaf2ff, #d7d9ff 60%, #b3a5ff);
  box-shadow: var(--shadow);
}

.featured-product::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(255,255,255,.44);
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-size: .75rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.featured-product img {
  position: relative;
  z-index: 1;
  width: 330px;
  height: 360px;
  margin: 10px auto;
  object-fit: contain;
  transform: translateY(20px);
}

.featured-product h3 {
  font-size: 1.5625rem;
}

.featured-product .local-price,
.featured-product .our-price {
  font-size: 21px;
}

.product-prices {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.product-prices small {
  display: block;
  color: var(--muted);
}

.local-price {
  color: var(--coral);
  font-size: 1.125rem;
  text-decoration: line-through;
}

.our-price {
  color: #15924a;
  font-size: 1.625rem;
}

.save-ribbon {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  padding: 17px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: white;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 900;
}

.products-mini-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 26px 25px 56px;
  border: 1px solid #e2e4f6;
  border-radius: 24px;
  background: white;
  box-shadow: var(--soft-shadow);
  transition: transform .25s, box-shadow .25s;
}

.product-card-text {
  display: contents;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-card img {
  float: right;
  width: 52%;
  height: 150px;
  margin: -4px -8px 0 6px;
  object-fit: contain;
}

.examples-grid .product-card img.helmet-card-image {
  transform: rotate(28deg);
  transform-origin: center;
}

.examples-grid .product-card img.premium-sunglasses-image {
  width: 95px;
  max-width: none;
  height: auto;
}

@media (max-width: 1023px) {
  .examples-grid .product-card img {
    margin-top: 20px;
  }

  .examples-grid .product-card h3 {
    max-width: none;
  }
}

.product-card h3 {
  max-width: 165px;
  padding-top: 12px;
  font-size: 1.125rem;
  letter-spacing: -.02em;
}

.product-details {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: normal;
}

.product-card .product-prices {
  display: block;
  margin-top: 18px;
}

.product-card .save-ribbon {
  padding: 11px;
  font-size: .8125rem;
}

.product-card:nth-child(2) .save-ribbon {
  background: linear-gradient(135deg, var(--coral), var(--pink));
}

.product-card:nth-child(3) .save-ribbon {
  background: linear-gradient(135deg, #a78bfa, var(--violet));
}

.product-card:nth-child(4) .save-ribbon {
  background: linear-gradient(135deg, #7c8cff, var(--blue));
  color: white;
}

.deal-tag {
  display: none;
}

@media (max-width: 1023px) {
  .deal-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    font-size: .625rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .product-card:nth-child(2) .deal-tag {
    background: linear-gradient(135deg, var(--coral), var(--pink));
  }

  .product-card:nth-child(3) .deal-tag {
    background: linear-gradient(135deg, #a78bfa, var(--violet));
  }

  .product-card:nth-child(4) .deal-tag {
    color: white;
    background: linear-gradient(135deg, #7c8cff, var(--blue));
  }
}

/* How it works */

.process-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #fff, #f7f5ff);
}

#how-it-works-v2 {
  background: linear-gradient(180deg, #fff 0%, #f7f5ff 100%);
}

.process-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 40px;
  width: 350px;
  height: 280px;
  border-radius: 38% 62% 29% 71%;
  background: rgba(25, 209, 209, .1);
  transform: rotate(-18deg);
}

#how-it-works-v2 .section-copy {
  font-size: 17px;
}

#how-it-works-v2 .section-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 46px;
  letter-spacing: normal;
}

.process-head {
  max-width: 670px;
  margin-bottom: 72px;
}

.process-head .section-copy {
  margin-top: 20px;
}

.process-line {
  position: absolute;
  left: 9%;
  right: 8%;
  top: 46px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--electric) 0 12px, transparent 12px 19px);
  transform: rotate(1deg);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.step {
  position: relative;
  z-index: 2;
  min-height: 260px;
  padding: 62px 26px 26px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--soft-shadow);
}

.step-number {
  position: absolute;
  left: 24px;
  top: -27px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 6px solid #f8f6ff;
  border-radius: 50%;
  color: white;
  background: var(--electric);
  font-size: 1.3125rem;
  font-weight: 900;
}

.step:nth-child(2) .step-number {
  background: var(--violet);
}

.step:nth-child(3) .step-number {
  background: var(--pink);
}

.step:nth-child(4) .step-number {
  background: var(--orange);
}

.step-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 18px;
  background: #eef2ff;
  font-size: 2rem;
}

.step h3 {
  font-size: 1.125rem;
  letter-spacing: -.02em;
}

.step p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .875rem;
}

@media (min-width: 768px) {
  .process-section .step {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 12px;
    align-content: start;
  }

  .process-section .step-icon {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin-bottom: 0;
  }

  .process-section .step h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-weight: 900;
  }

  .process-section .step p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* Savings */

.savings-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #fff 0%, #fbfaff 45%, #f7f5ff 100%);
}

.savings-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.65fr);
  gap: 38px;
  padding: 54px;
  border-radius: 40px;
  color: white;
  background: linear-gradient(105deg, #f72074, #fe6d43 52%, #ffbd12);
  box-shadow: 0 16px 38px rgba(17, 22, 65, .15);
}

.savings-wrap::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -120px;
  width: 300px;
  height: 240px;
  border-radius: 50%;
  background: rgba(117, 45, 229, .28);
}

.savings-message {
  position: relative;
  z-index: 2;
  align-self: center;
}

.savings-message h2 {
  font-size: clamp(2.8125rem, 4.2vw, 5rem);
}

.savings-message p {
  max-width: 330px;
  margin: 20px 0 26px;
}

.savings-categories {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.saving-cat {
  min-height: 310px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 24px;
  background: rgba(21, 89, 255, .92);
  box-shadow: 0 16px 28px rgba(61, 26, 139, .16);
}

.saving-cat:nth-child(2) {
  background: rgba(247, 49, 148, .9);
}

.saving-cat:nth-child(3) {
  background: rgba(255, 93, 42, .9);
}

.saving-cat:nth-child(4) {
  background: rgba(14, 189, 172, .92);
}

.saving-cat small {
  font-size: .8125rem;
  font-weight: 900;
  text-transform: uppercase;
}

.saving-cat small span {
  display: block;
}

.saving-category-name {
  font-size: 1rem;
  line-height: 1;
}

.saving-category-kicker {
  margin-top: 6px;
  font-size: .6875rem;
  line-height: 1;
}

.saving-cat strong {
  display: block;
  margin-top: 10px;
  font-size: 2.5rem;
  line-height: 1;
}

.saving-cat img {
  width: 130px;
  height: 135px;
  margin: 14px auto -5px;
  object-fit: contain;
}

.savings-categories .saving-cat img.saving-helmet {
  width: 110px;
  height: auto;
  transform: rotate(28deg);
  transform-origin: center;
}

/* Testimonials */

.reviews-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #f7f5ff 0%, #f4f1ff 100%);
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.carousel-btn:hover {
  transform: scale(1.07);
  background: var(--pink);
}

.testimonials-viewport {
  overflow: hidden;
  padding-block: 14px 22px;
  margin-block: -14px -22px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.testimonials-viewport.is-dragging {
  cursor: grabbing;
}

.testimonials-viewport img {
  pointer-events: none;
}

.testimonials-dots {
  display: none;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: transform .35s ease;
}

.testimonial {
  min-width: 0;
  padding: 30px;
  border: 1px solid #e9e9f3;
  border-radius: 24px;
  background: white;
  box-shadow: 0 10px 24px -16px rgba(31, 37, 87, .42);
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-size: 1.0625rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person h3 {
  font-size: 1rem;
  letter-spacing: -.02em;
}

.stars {
  color: #ffc400;
  letter-spacing: 2px;
}

.bought {
  display: inline-block;
  margin-top: 22px;
  color: var(--muted);
  font-size: .75rem;
}

.saved {
  display: block;
  margin: 3px 0 18px;
  color: #18a44a;
  font-size: 1.25rem;
}

.quote {
  color: #454b68;
}

/* FAQ */

.faq-section {
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, #f4f1ff 0%, #fff 100%);
}

.faq-section::before {
  content: "?";
  position: absolute;
  right: -15px;
  bottom: -65px;
  color: rgba(98, 51, 230, .12);
  font-size: 22rem;
  font-weight: 900;
  transform: rotate(12deg);
}

.faq-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr);
  gap: 70px;
}

.faq-intro .section-title {
  font-size: clamp(2.625rem, 4vw, 4.5rem);
}

.faq-intro .section-copy {
  max-width: 330px;
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e3e4f1;
  border-radius: 18px;
  background: white;
  box-shadow: 0 7px 18px rgba(17,22,65,.05);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-plus {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--violet);
  font-size: 1.1875rem;
  transition: transform .25s, background .25s;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  background: var(--pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p {
  padding: 0 70px 22px 22px;
  color: var(--muted);
}

/* Final CTA */

.final-cta {
  min-height: 660px;
  overflow: hidden;
  color: white;
  background-color: var(--navy);
  background-image: linear-gradient(90deg, rgba(4, 8, 70, .92), rgba(16, 20, 137, .35)), url("assets/images/electric-blue-bg.jpg");
  background-size: 100% 100%, 2520px 1080px;
  background-position: center, center top;
  background-repeat: no-repeat;
}

.cta-layout {
  min-height: 660px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 30px;
  padding: 90px 0;
}

.cta-copy {
  position: relative;
  z-index: 3;
}

.cta-copy h2 {
  max-width: 560px;
  font-size: clamp(2.8125rem, 4vw, 4.8125rem);
  line-height: .98;
}

@media (min-width: 1024px) {
  .cta-copy h2 {
    font-size: 64px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cta-copy h2 {
    font-size: 50px;
  }
}

.cta-copy p {
  max-width: 480px;
  margin: 24px 0 30px;
  color: rgba(255,255,255,.8);
  font-size: 1.0625rem;
}

.cta-visual {
  position: relative;
  align-self: stretch;
}

.cta-visual img {
  position: absolute;
  width: 420px !important;
  height: auto !important;
  max-width: none;
  max-height: 600px;
  right: 0;
  bottom: 125px;
  object-fit: contain;
  filter: drop-shadow(0 36px 30px rgba(0,0,40,.45));
  transform: rotate(3deg);
}

.cta-mobile-helmet {
  display: none;
}

.cta-mobile-visual {
  display: none;
}

.sale-sticker {
  position: absolute;
  z-index: 3;
  right: 30px;
  top: 70px;
  width: 130px;
  padding: 17px 12px;
  border-radius: 20px;
  color: white;
  background: linear-gradient(140deg, var(--coral), var(--pink));
  text-align: center;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.05;
  transform: rotate(9deg);
  box-shadow: var(--shadow);
}

.sale-sticker strong {
  display: block;
  color: var(--yellow);
  font-size: 2.1875rem;
}

.cta-trust {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.75);
  font-size: .75rem;
}

.cta-trust span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--yellow);
  font-weight: 900;
}

/* Footer */

.site-footer {
  padding: 80px 0 28px;
  color: white;
  background: #06134f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, .85fr)) minmax(0, 1.4fr);
  gap: 44px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 235px;
  margin-top: 22px;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
}

.footer-col h3 {
  margin-bottom: 22px;
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-col a {
  display: table;
  margin-top: 13px;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  transition: color .2s, transform .2s;
}

.footer-col a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.newsletter p {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.newsletter-form input {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: white;
  background: transparent;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,.5);
}

.newsletter-form .btn {
  min-height: 48px;
  border: 0;
}

.form-message {
  min-height: 20px;
  color: var(--lime);
  font-size: .75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font-size: .75rem;
}

.footer-credit {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}

.footer-credit:hover {
  color: var(--yellow);
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2147482000;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  background: transparent;
  box-shadow: 0 14px 34px rgba(17, 22, 65, .18);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.96);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  backdrop-filter: blur(3px);
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-top:hover {
  background: transparent;
  transform: translateY(-3px);
}

@media (max-width: 1280px) {
  .hero-shell::before {
    background-size: 100% 100%, 2520px 1080px;
  }

}

@media (min-width: 1024px) and (max-width: 1151px) {
  .what-we-do-2-copy .section-title {
    font-size: clamp(35px, calc(3.90625vw - 5px), 40px);
  }

}

@media (min-width: 1024px) and (max-width: 1061px) {
  .what-we-do-2-copy .section-copy {
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .savings-wrap {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
  }

  .newsletter {
    grid-column: 1 / -1;
    max-width: 560px;
  }

}

@media (max-width: 1023px) {
  .container {
    width: 92%;
  }

  .what-we-do-2-inner {
    width: 92%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo {
    color: var(--white);
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a:nth-last-child(-n+2) {
    display: none;
  }

  .mini-trust {
    display: flex;
  }

  .hero-benefits {
    display: none;
  }

  .saved-card {
    flex: 1 0 100%;
    min-height: 220px;
    padding: 30px 34px;
    transform: none;
  }

  .saved-piggy {
    right: -5px;
    width: 140px;
  }

  .examples-grid {
    grid-template-columns: .9fr 1.6fr;
  }

  .featured-product {
    min-height: 640px;
  }

  .product-card img {
    float: none;
    width: 100%;
    height: 130px;
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 55px 30px;
  }

  .process-line {
    display: none;
  }

  .savings-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .saving-cat {
    min-height: 245px;
  }

  .saving-cat img {
    height: 110px;
  }

  .cta-visual img {
    width: 350px !important;
    max-height: 540px;
    right: -30px;
  }

  .faq-layout {
    grid-template-columns: .7fr 1.3fr;
    gap: 35px;
  }

}

@media (min-width: 768px) and (max-width: 950px) {
  .hero {
    grid-template-columns: 1.12fr .88fr;
  }

  .hero-visual {
    min-height: 480px;
  }

}

@media (min-width: 768px) and (max-width: 1023px) {
  .faq-section {
    padding: 50px 0 100px;
  }

  .cta-visual {
    display: grid;
    grid-template-columns: 350px;
    grid-template-rows: auto auto;
    justify-content: center;
    align-content: center;
    row-gap: 0;
  }

  .cta-visual img {
    position: static;
    grid-column: 1;
    grid-row: 1;
  }

  .cta-visual .sale-sticker {
    position: static;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    margin-top: -15px;
    transform: none;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .hero-products {
    position: relative;
    align-self: center;
    right: auto;
    bottom: auto;
  }

  .price-float {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -48px 0 0;
    transform: none;
  }

}

@media (max-width: 767px) {
  .desktop-subtext-intro {
    display: none;
  }

  .what-we-do-2-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta {
    background-size: 100% 100%, 2520px 1080px;
    background-position: center, calc(50% - 550px) center;
  }

  .hero-shell::before {
    background-image: linear-gradient(180deg, rgba(5, 10, 82, .96) 0%, rgba(12, 23, 145, .78) 25%, rgba(22, 34, 183, .16) 50%, rgba(22, 34, 183, 0) 70%), url("assets/images/electric-blue-wide.jpg");
  }

  .hero-diamond-two {
    top: 150px;
    right: 4px;
  }

  .hero-diamond-three {
    bottom: 92px;
    left: 205px;
  }

  html {
    scroll-padding-top: 72px;
  }

  section {
    scroll-margin-top: 72px;
  }

  .section-title {
    font-size: clamp(2.375rem, 11vw, 3.5rem);
  }

  .section-copy {
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 72px 4% auto;
    display: grid;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-radius: 20px;
    color: var(--ink);
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    transition: max-height .3s, padding .3s, opacity .25s, transform .25s;
  }

  .menu-open .nav-links {
    max-height: 430px;
    padding-block: 16px;
    opacity: 1;
    transform: none;
  }

  .nav-links a,
  .nav-links a:nth-last-child(-n+2) {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid #eeeef6;
  }

  .nav-links a:last-child {
    border: 0;
  }

  .hero-shell::before {
    background-position: center, calc(50% - 550px) center;
    background-size: 100% 100%, 2520px 1080px;
  }

  .hero {
    display: grid;
    min-height: auto;
    align-items: stretch;
    padding: 90px 0 80px;
  }

  .hero-copy {
    top: 0;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-copy > p {
    max-width: 510px;
    margin-block: 22px 26px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    min-height: auto;
    order: 0;
    margin: 0;
  }

  .hero-products {
    position: relative;
    align-self: center;
    width: 320px;
    right: auto;
    bottom: auto;
    margin: 0;
    transform: none;
    animation: mobile-float 5s ease-in-out infinite;
  }

  @keyframes mobile-float {
    50% {
      transform: translateY(-10px) rotate(1deg);
    }

  }

  .price-float {
    position: relative;
    left: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 430px);
    align-items: center;
    gap: 4px;
    margin: -48px 0 0;
    padding: 17px 12px 12px;
    border-radius: 12px;
    transform: none;
  }

  .price-float::before {
    position: absolute;
    top: -18px;
    left: 50%;
    margin: 0;
    padding: 5px 13px;
    background: var(--blue);
    font-size: .625rem;
    transform: translateX(-50%);
  }

  .price-row,
  .price-row + .price-row {
    margin: 0;
    padding: 6px;
    border-radius: 10px;
    font-size: .5625rem;
    line-height: 1.2;
    text-align: center;
  }

  .price-row {
    background: #fff0f3;
  }

  .price-row + .price-row {
    background: #fff8d8;
  }

  .price-row strong {
    font-size: .875rem;
  }

  .saving-badge {
    top: auto;
    margin: 0;
    padding: 8px 5px;
    border-width: 2px;
    border-radius: 999px;
    font-size: 1rem;
    line-height: 1;
  }

  .doodle-one {
    left: 0;
  }

  .doodle-two {
    right: -10px;
  }

  .examples-section,
  .process-section,
  .reviews-section {
    padding: 50px 0;
  }

  .faq-section {
    padding: 50px 0;
  }

  .compare-card {
    min-height: 360px;
    padding: 20px;
  }

  .compare-card .price-block {
    left: 20px;
  }

  .compare-card img {
    height: 195px;
  }

  .vs-bubble {
    left: 50%;
    top: calc(50% - 117px);
    transform: translate(-50%, -50%);
  }

  .saved-card {
    min-height: 250px;
  }

  .saved-piggy {
    right: -5px;
    width: 130px;
  }

  .examples-head,
  .reviews-head {
    display: block;
  }

  .examples-head .section-copy {
    margin-top: 20px;
  }

  .examples-grid {
    display: grid;
  }

  .featured-product {
    min-height: 620px;
    margin-bottom: 20px;
  }

  .products-mini-grid {
    display: grid;
    gap: 16px;
  }

  .product-card {
    min-height: 330px;
  }

  .product-card img {
    height: 160px;
  }

  .process-head {
    margin-bottom: 65px;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-left: 34px;
  }

  .steps::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 20px;
    width: 4px;
    border-radius: 99px;
    background: repeating-linear-gradient(180deg, var(--electric) 0 12px, transparent 12px 20px);
  }

  .step {
    min-height: auto;
    padding: 28px 24px 28px 74px;
  }

  .step-number {
    left: -52px;
    top: 23px;
  }

  .step-icon {
    position: absolute;
    left: 14px;
    top: 24px;
    width: 46px;
    height: 46px;
    font-size: 1.375rem;
  }

  .savings-section {
    padding: 50px 0;
  }

  .savings-wrap {
    gap: 35px;
    padding: 38px 20px;
    border-radius: 30px;
  }

  .savings-message h2 {
    font-size: 3.25rem;
  }

  .savings-categories {
    display: grid;
    gap: 14px;
    padding-bottom: 12px;
  }

  .saving-cat {
    min-height: 270px;
  }

  .reviews-head .carousel-controls {
    display: none;
  }

  .testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .testimonial-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    cursor: pointer;
  }

  .testimonial-dot.is-active {
    background: var(--pink);
    transform: scale(1.25);
  }

  .testimonials-viewport {
    overflow: hidden;
  }

  .testimonials-track {
    display: grid;
    gap: 16px;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-intro .section-copy {
    max-width: none;
  }

  .faq-question {
    min-height: 66px;
    padding: 16px 17px;
  }

  .faq-answer p {
    padding: 0 55px 20px 17px;
  }

  .final-cta {
    min-height: auto;
  }

  .cta-layout {
    display: grid;
    min-height: auto;
    align-items: stretch;
    padding: 95px 0 80px;
  }

  .cta-copy h2 {
    font-size: 50px;
  }

  .cta-visual {
    display: none;
  }

  .cta-mobile-visual {
    display: none;
  }

  .cta-mobile-helmet {
    display: block;
    width: min(190px, 54vw);
    height: auto;
    margin: 0;
    object-fit: contain;
  }

  .cta-mobile-visual .sale-sticker {
    display: block;
    top: 55px;
    right: 0;
  }

  .cta-visual img {
    width: 330px !important;
    max-height: 480px;
    right: 50%;
    bottom: -20px;
    transform: translateX(50%);
  }

  .sale-sticker {
    right: 5px;
    top: 40px;
    width: 108px;
    font-size: 1.0625rem;
  }

  .sale-sticker strong {
    font-size: 1.6875rem;
  }

  .cta-trust {
    gap: 12px 20px;
    margin-top: 28px;
  }

  .site-footer {
    padding-top: 65px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand,
  .newsletter {
    grid-column: 1 / -1;
  }

  .footer-col:nth-of-type(4) {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .back-top {
    right: 4%;
    bottom: 18px;
  }

}

@media (max-width: 420px) {
  .container {
    width: 92%;
  }

  .logo {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .price-float {
    bottom: -25px;
  }

  .featured-product {
    min-height: 580px;
    padding: 26px;
  }

  .featured-product img {
    height: 325px;
  }

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

  .saved-card strong {
    font-size: 1.5625rem;
  }

  .savings-message h2 {
    font-size: 2.875rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 500px) {
  .hero-visual {
    min-height: auto;
  }

  .hero-products {
    width: min(280px, 78vw);
  }

}

@media (max-width: 450px) {
  .marketplace-links {
    position: relative;
    display: inline-block;
  }

  .marketplace-links .shopee {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .what-we-do-2-cards .vs-bubble {
    width: 80px;
    height: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}

/* Utilities extracted from former inline styles. */

.svg-definitions {
  position: absolute;
  overflow: hidden;
}

.hero-benefit--shield svg {
  stroke: url("#benefit-shield");
}

.hero-benefit--lock svg {
  stroke: url("#benefit-lock");
}

.hero-benefit--pin svg {
  stroke: url("#benefit-pin");
}

.eyebrow--cyan {
  color: var(--cyan);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Shared site grid: six columns, three at tablet, two on mobile. */

:root {
  --site-columns: 6;
  --site-gutter: 30px;
}

.hero,
.examples-head,
.examples-grid,
.steps,
.savings-wrap,
.savings-categories,
.testimonials-track,
.faq-layout,
.cta-layout,
.footer-grid,
.what-we-do-2-inner {
  grid-template-columns: repeat(var(--site-columns), minmax(0, 1fr));
  column-gap: var(--site-gutter);
}

@media (min-width: 1024px) {
  .examples-section > .container {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: var(--site-gutter);
    row-gap: 12px;
    align-items: start;
  }

  .examples-head {
    grid-column: 1 / span 2;
    display: block;
    margin-bottom: 0;
  }

  .examples-head > div {
    grid-column: auto;
  }

  .examples-head .section-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 46px;
    letter-spacing: normal;
  }

  .examples-head > .section-copy {
    grid-column: auto;
    max-width: none;
    margin-top: 20px;
  }

}

/* Enhanced featured saving card */

.featured-product .featured-star {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #e3e6fb;
  border-radius: 50%;
  color: var(--violet);
  background: rgba(255, 255, 255, .94);
  font-size: 24px;
  line-height: 1;
  filter: drop-shadow(0 6px 10px rgba(56, 46, 145, .12));
}

.featured-product .featured-product-info {
  position: relative;
  z-index: 2;
}

.featured-product .save-ribbon {
  isolation: isolate;
}

.featured-product .best-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #1559ff;
  background: #e6e5ff;
  font-size: .625rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-7px);
}

.featured-product .best-value > span {
  font-size: .6875rem;
}

.featured-product .save-amount {
  display: block;
  color: #fb554f;
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.featured-product .saving-percent-wrap {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 58px;
  place-items: center;
}

.featured-product .saving-percent {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 106px;
  min-height: 52px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 17px;
  border-radius: 999px;
  color: #fb554f;
  background: transparent;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  box-shadow: none;
}

.featured-product .saving-label {
  color: var(--ink);
  font-size: .78em;
}

.featured-product .saving-value {
  color: #fb554f;
  font-size: 1.18em;
}

.featured-product .saving-confetti {
  display: none;
}

.featured-product .saving-confetti--one {
  left: 8%;
  top: 15px;
  transform: rotate(40deg);
}

.featured-product .saving-confetti--two {
  left: 13%;
  bottom: 8px;
  background: #7bd7dc;
  transform: rotate(25deg);
}

.featured-product .saving-confetti--three {
  right: 8%;
  top: 13px;
  background: #ffba61;
  transform: rotate(-43deg);
}

.featured-product .saving-confetti--four {
  right: 15%;
  bottom: 6px;
  background: #ff8b8d;
  transform: rotate(-18deg);
}

.featured-product .saving-note {
  color: #64708e;
  font-size: .6875rem;
  font-weight: 600;
  line-height: 1.25;
  transform: translateY(7px);
}

@media (max-width: 767px) {
  .examples-grid > .featured-product,
  .examples-grid > .products-mini-grid,
  .examples-grid .product-card {
    grid-column: 1 / -1;
  }
}

.hero-copy,
.hero-visual,
.cta-copy,
.cta-visual {
  grid-column: span 3;
}

.featured-product {
  grid-column: span 2;
}

.products-mini-grid {
  grid-column: span 4;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: var(--site-gutter);
}

.product-card {
  grid-column: span 3;
}

.step {
  grid-column: span 2;
}

.savings-message {
  grid-column: span 2;
}

.savings-categories {
  grid-column: span 4;
}

.saving-cat,
.testimonial {
  grid-column: span 1;
}

.faq-intro {
  grid-column: span 2;
}

.faq-list {
  grid-column: span 4;
}

.footer-brand,
.footer-col {
  grid-column: span 1;
}

.footer-grid .newsletter {
  grid-column: span 2;
}

@media (max-width: 1023px) {
  :root {
    --site-columns: 3;
  }

  .what-we-do-2-card-row {
    display: contents;
  }

  .what-we-do-2-cards {
    grid-column: 1 / -1;
  }

  .what-we-do-2-saved {
    grid-column: 3;
  }

  .hero-copy {
    grid-column: span 2;
  }

  .hero-visual {
    grid-column: span 1;
  }

  .featured-product {
    grid-column: span 1;
  }

  .products-mini-grid {
    grid-column: span 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card,
  .step,
  .saving-cat,
  .testimonial {
    grid-column: span 1;
  }

  .savings-message,
  .savings-categories {
    grid-column: span 3;
  }

  .faq-intro {
    grid-column: span 1;
  }

  .faq-list {
    grid-column: span 2;
  }

  .cta-copy {
    grid-column: span 2;
  }

  .cta-visual {
    grid-column: span 1;
  }

  .footer-grid .newsletter {
    grid-column: span 2;
  }

}

@media (max-width: 767px) {
  :root {
    --site-columns: 2;
  }

  .desktop-product-name {
    display: none;
  }

  .desktop-heading-extra {
    display: none;
  }

  .mobile-product-name {
    display: inline;
  }

  .what-we-do-2-cards {
    grid-column: 1 / -1;
  }

  .what-we-do-2 .compare-card {
    height: 350px;
    min-height: 350px;
  }

  .what-we-do-2 .compare-card img {
    height: 160px;
    margin: 4px auto -8px;
  }

  .what-we-do-2 .compare-card h4 {
    margin-top: 16px;
  }

  .what-we-do-2-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(110px, 2fr);
    column-gap: 14px;
    align-items: center;
    max-width: none;
  }

  .what-we-do-2-copy .eyebrow,
  .what-we-do-2-copy .section-title {
    grid-column: 1;
  }

  .what-we-do-2-copy .section-title {
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.08;
  }

  .what-we-do-2-copy .section-copy {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .what-we-do-2-box-picture {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 200px;
    margin: 0;
  }

  .what-we-do-2-saved {
    grid-column: 1 / -1;
    width: 100%;
  }

  .what-we-do-2 .saved-card {
    height: 120px;
    min-height: 120px;
    padding: 8px 110px 8px 20px;
  }

  .what-we-do-2 .saved-card strong {
    margin: 4px 0 8px;
  }

  .what-we-do-2 .saved-card .saved-copy {
    max-width: 180px;
    padding-top: 6px;
    font-size: .75rem;
  }

  .what-we-do-2 .saved-piggy {
    right: -5px;
    bottom: -12px;
    width: 110px;
  }

  .what-we-do-2 .saved-piggy-shadow {
    right: 2px;
    bottom: -14px;
  }

  .hero-copy,
  .hero-visual,
  .featured-product,
  .products-mini-grid,
  .step,
  .savings-message,
  .savings-categories,
  .faq-intro,
  .faq-list,
  .cta-copy,
  .cta-visual,
  .footer-grid .newsletter {
    grid-column: span 2;
  }

  .products-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card,
  .saving-cat,
  .testimonial {
    grid-column: span 1;
  }

}

@media (min-width: 768px) and (max-width: 1023px) {
  .what-we-do-2-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
    align-items: center;
    max-width: none;
  }

  .what-we-do-2-copy .eyebrow,
  .what-we-do-2-copy .section-title,
  .what-we-do-2-copy .section-copy {
    grid-column: 1 / span 2;
  }

  .what-we-do-2-box-picture {
    grid-column: 3;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: end;
    width: 100%;
    margin: 0;
  }

  .what-we-do-2-saved {
    grid-column: 1 / -1;
    width: 100%;
  }

  .what-we-do-2 .saved-card {
    height: 150px;
    min-height: 150px;
    padding: 18px 190px 18px 30px;
  }

  .what-we-do-2 .saved-card strong {
    margin: 4px 0 8px;
  }

  .what-we-do-2 .saved-card .saved-copy {
    max-width: 420px;
    padding-top: 8px;
  }

  .what-we-do-2 .saved-piggy {
    right: 24px;
    bottom: -14px;
    width: 180px;
  }

  .what-we-do-2 .saved-piggy-shadow {
    right: 32px;
    bottom: -16px;
    width: 150px;
  }
}

@media (max-width: 450px) {
  .what-we-do-2 .compare-card h4 {
    margin-top: 5px;
  }
}

@media (max-width: 1023px) {
  .what-we-do-2 .coin-top {
    top: -16px;
    right: auto;
    bottom: auto;
    left: calc(50% - 36px);
  }

  .what-we-do-2 .coin-side {
    top: 18px;
    right: auto;
    bottom: auto;
    left: calc(50% + 4px);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .examples-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .examples-grid > .featured-product,
  .examples-grid > .products-mini-grid {
    grid-column: 1;
  }

  .examples-grid .featured-product {
    display: grid;
    min-height: 220px;
    overflow: visible;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 1fr 1fr;
    align-items: center;
    column-gap: var(--site-gutter);
    padding: 24px 0;
    border: 1px solid #e2e4f6;
    background: #fff;
    box-shadow: var(--soft-shadow);
  }

  .examples-grid .featured-product::after {
    display: none;
  }

  .examples-grid .feature-tag {
    position: absolute;
    z-index: 3;
    top: -12px;
    left: 0;
  }

  .examples-grid .featured-product img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 180px;
    max-width: none;
    height: 172px;
    margin: 0;
    justify-self: center;
  }

  .examples-grid .featured-product h3 {
    grid-column: 2 / 4;
    grid-row: 1;
    align-self: end;
    font-size: 1.25rem;
  }

  .examples-grid .featured-product .product-prices {
    display: grid;
    grid-column: 2 / 4;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--site-gutter);
    margin-top: 0;
  }

  .examples-grid .featured-product .product-prices > div:first-child {
    grid-column: 1;
  }

  .examples-grid .featured-product .product-prices > div:last-child {
    grid-column: 2;
  }

  .examples-grid .featured-product .save-ribbon {
    position: static;
    grid-column: 4;
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: stretch;
    min-width: 0;
    padding: 14px 12px;
    margin-right: 20px;
    border-radius: 12px;
    background: #ffe4e8;
    color: var(--coral);
    font-size: .9375rem;
  }

  .products-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .examples-grid {
    display: contents;
  }

  .examples-grid > .featured-product {
    grid-column: 3 / -1;
    align-self: end;
  }

  .examples-grid > .products-mini-grid {
    grid-column: 1 / -1;
    grid-template-columns: subgrid;
    column-gap: var(--site-gutter);
    row-gap: 10px;
  }

  .examples-grid .featured-product {
    display: grid;
    min-height: 220px;
    overflow: visible;
    grid-template-columns: subgrid;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    column-gap: var(--site-gutter);
    padding: 24px 0;
    border: 1px solid #e2e4f6;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--soft-shadow);
  }

  .examples-grid .featured-product::after {
    display: none;
  }

  .examples-grid .feature-tag {
    position: absolute;
    z-index: 3;
    top: -12px;
    left: 0;
  }

  .examples-grid .featured-product img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    max-width: 180px;
    height: 172px;
    margin: 0;
    justify-self: center;
  }

  .examples-grid .featured-product h3 {
    grid-column: 2 / span 2;
    grid-row: 1;
    align-self: end;
    font-size: 1.25rem;
  }

  .examples-grid .featured-product .product-prices {
    display: contents;
  }

  .examples-grid .featured-product .product-prices > div:first-child {
    grid-column: 2;
    grid-row: 2;
  }

  .examples-grid .featured-product .product-prices > div:last-child {
    grid-column: 3;
    grid-row: 2;
  }

  .examples-grid .featured-product .save-ribbon {
    position: static;
    grid-column: 4;
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: stretch;
    min-width: 0;
    padding: 14px 12px;
    margin-right: 20px;
    border-radius: 12px;
    background: #ffe4e8;
    color: var(--coral);
    font-size: .9375rem;
  }

  .examples-grid .product-card {
    display: grid;
    min-height: 104px;
    grid-column: 1 / -1;
    grid-template-columns: subgrid;
    align-items: center;
    column-gap: var(--site-gutter);
    padding: 12px 0;
    border-radius: 16px;
  }

  .examples-grid .product-card img {
    float: none;
    grid-column: 1;
    grid-row: 1;
    width: 76px;
    height: auto;
    margin: 0;
    justify-self: center;
  }

  .examples-grid .product-card img.perfume-card-image {
    width: 74px;
  }

  .examples-grid .product-card img.helmet-card-image {
    width: 70px;
  }

  .examples-grid .product-card img.premium-sunglasses-image {
    width: 84px;
  }

  .examples-grid .product-card h3 {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    padding: 0;
    font-size: 1rem;
  }

  .examples-grid .product-card .product-prices {
    display: contents;
  }

  .examples-grid .product-card .product-prices > div:first-child {
    grid-column: 3;
    grid-row: 1;
  }

  .examples-grid .product-card .product-prices > div:last-child {
    grid-column: 4;
    grid-row: 1;
  }

  .examples-grid .product-card .local-price,
  .examples-grid .product-card .our-price {
    font-size: 1rem;
  }

  .examples-grid .product-card .save-ribbon {
    position: static;
    grid-column: 5 / span 2;
    grid-row: 1;
    justify-self: stretch;
    padding: 12px;
    margin-right: 20px;
    border-radius: 12px;
    color: var(--coral);
    background: #ffe4e8;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .testimonials-track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    column-gap: 16px;
  }

  .testimonial {
    grid-column: auto;
  }
}

@media (min-width: 768px) {
  .testimonials-track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    column-gap: 24px;
  }

  .testimonial {
    grid-column: auto;
  }
}

@media (min-width: 1024px) {
  .savings-wrap {
    align-items: center;
    padding: 28px 30px;
    border-radius: 32px;
  }

  .savings-message {
    grid-column: 1 / 3;
  }

  .savings-message h2 {
    font-size: 42px;
    line-height: .98;
  }

  .savings-message p {
    margin: 14px 0 18px;
  }

  .savings-categories {
    grid-column: 3 / 7;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--site-gutter);
    align-items: stretch;
  }

  .savings-categories .saving-cat {
    grid-column: auto;
    min-height: 220px;
    padding: 18px;
    border-radius: 20px;
    text-align: center;
  }

  .savings-categories .saving-cat strong {
    font-size: 30px;
  }

  .savings-categories .saving-cat:nth-child(4) strong {
    margin-bottom: 30px;
  }

  .savings-categories .saving-cat img {
    width: 105px;
    height: 100px;
    margin: 20px auto 0;
  }

  .savings-categories .saving-cat img.saving-helmet {
    width: 90px;
    max-width: none;
    margin-top: 0;
  }

  .savings-categories .saving-cat img.saving-glasses {
    max-width: none;
    margin-top: 45px;
  }

}

/* Keep the four savings cards in a 2-by-2 grid below desktop. */
.savings-categories {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  .savings-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Keep the enhanced card authoritative after the layout breakpoint rules. */

@media (min-width: 768px) {
  .examples-grid .featured-product {
    min-height: 250px;
    overflow: hidden;
    grid-template-rows: 1fr 1fr;
    padding-block: 26px;
    border-color: #ccd4ff;
    background:
      linear-gradient(180deg, rgba(224, 233, 255, .76) 0, rgba(249, 250, 255, .34) 34%, rgba(255, 255, 255, 0) 62%),
      #fff;
    box-shadow: 0 10px 28px rgba(48, 55, 130, .08);
  }

  .examples-grid .featured-product::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -95px;
    right: -35px;
    width: 330px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(171, 140, 255, .22), rgba(171, 140, 255, 0) 70%);
    pointer-events: none;
  }

  .examples-grid .feature-tag {
    top: 8px;
    left: 12px;
  }

  .examples-grid .featured-product img {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 160px;
    max-width: 100%;
    height: auto;
    margin: 0;
  }

  .examples-grid .featured-product .featured-product-info {
    display: contents;
  }

  .examples-grid .featured-product .featured-product-info h3 {
    position: relative;
    grid-column: 2 / 4;
    grid-row: 1;
    align-self: end;
    padding-bottom: 0;
    font-size: 1.25rem;
  }

  .examples-grid .featured-product .featured-product-info h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    height: 1px;
    background: #e5e8f7;
  }

  .examples-grid .featured-product .product-prices {
    position: relative;
    display: grid;
    grid-column: 2 / 4;
    grid-row: 2;
    align-self: center;
    grid-template-columns: max-content 1px max-content;
    column-gap: clamp(24px, 4vw, 45px);
    justify-content: start;
    margin-top: 0;
  }

  .examples-grid .featured-product .product-prices::before {
    content: "";
    position: static;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 1px;
    height: 40px;
    background: #cbd2fa;
    transform: none;
  }

  .examples-grid .featured-product .product-prices > div:first-child {
    position: relative;
    grid-column: 1;
    grid-row: 1;
  }

  .examples-grid .featured-product .product-prices > div:last-child {
    position: relative;
    grid-column: 3;
    grid-row: 1;
  }

  .examples-grid .featured-product .product-prices > div + div {
    padding-left: 0;
  }

  .examples-grid .featured-product .product-prices > div + div::before {
    content: none;
  }

  .examples-grid .featured-product .save-ribbon {
    position: relative;
    inset: auto;
    grid-column: 4;
    grid-row: 1 / 3;
    display: flex;
    min-width: 0;
    min-height: 198px;
    align-self: center;
    justify-self: stretch;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 18px 12px 14px;
    margin: 0 24px 0 0;
    border-radius: 18px;
    color: inherit;
    background: #ffe4e8;
    font-size: 1rem;
    text-align: center;
    white-space: normal;
  }

}

@media (max-width: 767px) {
  .examples-grid .featured-product {
    min-height: 0;
    overflow: hidden;
    padding: 26px 22px 0;
    border: 1px solid #ccd4ff;
    background:
      linear-gradient(180deg, rgba(224, 233, 255, .82), rgba(255, 255, 255, 0) 34%),
      #fff;
    box-shadow:
      0 0 0 2px rgba(21, 89, 255, .22),
      0 0 24px rgba(21, 89, 255, .3),
      var(--soft-shadow);
  }

  .examples-grid .featured-product img {
    display: block;
    width: 215px;
    height: 255px;
    margin: 0 auto;
    transform: none;
  }

  .examples-grid .featured-product .product-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 18px 0 24px;
  }

  .examples-grid .featured-product .save-ribbon {
    position: relative;
    inset: auto;
    display: grid;
    width: calc(100% + 44px);
    min-height: 52px;
    place-items: center;
    padding: 17px;
    margin: 0 -22px;
    border-radius: 0;
    color: white;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    font-size: .8125rem;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
  }

  .examples-grid .featured-product .save-ribbon > * {
    display: none;
  }

  .examples-grid .featured-product .save-ribbon::before {
    content: "SAVE 460,000₫ | 67%";
  }
}

/* Final desktop override: this section uses four tracks, not the shared six-track grid. */
@media (min-width: 1024px) {
  .hero-products {
    top: -20px;
  }

  .cta-visual {
    display: grid;
    grid-template-columns: 130px 420px;
    justify-content: end;
    align-content: center;
    column-gap: 0;
  }

  .cta-visual img {
    position: relative;
    left: -50px;
    right: auto;
    bottom: auto;
    grid-column: 2;
    grid-row: 1;
  }

  .cta-visual .sale-sticker {
    position: relative;
    top: 50px;
    left: 40px;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    transform: none;
  }

  .examples-grid .featured-product img {
    width: 155px;
    max-width: none;
  }

  .examples-grid .featured-product .featured-product-info h3::after {
    content: none;
  }

  #how-it-works-v2 .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
  }

  #how-it-works-v2 .steps > .step {
    grid-column: auto;
  }

  #how-it-works-v2 > .container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 30px;
    align-items: start;
  }

  #how-it-works-v2 .process-head {
    grid-column: 1;
    margin-bottom: 0;
  }

  #how-it-works-v2 .steps {
    grid-column: 2 / span 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Fixed testimonial heading sizes by device range. */
.examples-head .section-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 46px;
  letter-spacing: normal;
}

.reviews-head .section-title,
.faq-intro .section-title {
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.8px;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  }

  .reviews-head .section-title,
  .faq-intro .section-title {
    font-size: 62px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.5fr);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-products {
    width: 340px;
    max-width: none;
  }

  .price-float {
    width: 340px;
    max-width: none;
    gap: 3px;
    margin-top: -38px;
    padding: 16px 7px 9px;
  }

  .price-row {
    padding: 6px 3px;
    font-size: .5rem;
  }

  .price-row strong {
    font-size: .75rem;
  }

  .saving-badge {
    padding: 8px 3px;
    font-size: .8125rem;
  }

  .examples-head > div {
    min-width: 285px;
  }

  .examples-grid .featured-product .featured-product-info h3::after {
    content: none;
  }

  .reviews-head .section-title,
  .faq-intro .section-title {
    font-size: 50px;
  }

  .examples-grid .product-card img.premium-sunglasses-image {
    top: 80px;
    left: calc(50% - 100px);
    width: 200px;
    height: auto;
  }

  .examples-grid .product-card img.perfume-card-image {
    left: calc(50% - 75px);
    width: 150px;
    height: auto;
  }

  .examples-grid .product-card img.magnetic-case-image {
    left: calc(50% - 80px);
    width: 160px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .reviews-head .section-title,
  .faq-intro .section-title {
    font-size: 40px;
  }
}

/* Redesigned footer */
.footer-backdrop {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  background: transparent;
}

.site-footer {
  --yellow: var(--electric);
  position: relative;
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(190, 222, 255, .46);
  border-radius: 42px 42px 0 0;
  background: #06134f;
  box-shadow: 0 -5px 16px rgba(112, 166, 255, .09);
}

.site-footer::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(88, 132, 255, .22) 0%,
    rgba(151, 203, 255, .52) 24%,
    rgba(66, 143, 255, .38) 48%,
    rgba(201, 232, 255, .7) 73%,
    rgba(88, 153, 255, .58) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 32%);
  box-shadow: 0 1px 7px rgba(126, 190, 255, .28);
  content: "";
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0;
  padding: 20px 0;
}

.footer-brand,
.footer-col,
.footer-contact {
  grid-column: auto;
  min-width: 0;
}

.footer-brand,
.footer-links {
  border-right: 1px solid rgba(255,255,255,.14);
}

.footer-brand {
  padding-right: 52px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.footer-logo strong {
  color: #ffd619;
}

.footer-logo .footer-logo-arrow {
  flex: 0 0 auto;
  color: #ffd619;
}

@media (min-width: 768px) {
  .footer-logo {
    gap: 8px;
    font-size: 24px;
  }

  .footer-logo .footer-logo-arrow {
    font-size: 22px;
  }
}

.footer-brand p {
  max-width: none;
  margin-top: 27px;
  color: rgba(255,255,255,.92);
  font-size: .9rem;
  line-height: 1.7;
}

.socials {
  gap: 16px;
  margin-top: 29px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-color: rgba(255,255,255,.55);
  color: white;
  transition: border-color .2s, color .2s, transform .2s;
}

.socials a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-links {
  padding: 12px 62px;
}

.footer-links h3 {
  position: relative;
  margin-bottom: 46px;
  font-size: .9rem;
  letter-spacing: .16em;
}

.footer-links h3::after {
  display: none;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 0;
  color: rgba(255,255,255,.92);
  font-size: .95rem;
}

.footer-links a span {
  color: var(--yellow);
  font-size: 1.75rem;
  line-height: .6;
}

.footer-contact {
  padding-left: 62px;
}

.trolley-icon {
  width: 78px;
  height: 54px;
  margin-bottom: 0;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
}

.trolley-frame {
  stroke: rgba(255,255,255,.5);
}

.trolley-frame circle,
.trolley-speed {
  stroke: var(--yellow);
}

.footer-contact h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
}

.footer-contact h3 strong {
  color: var(--yellow);
}

.footer-contact p {
  margin-top: 13px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  line-height: 1.6;
}

.footer-contact .footer-contact-copy {
  max-width: 260px;
  margin-top: 10px;
}

.footer-contact-copy b {
  font-weight: 750;
}

.footer-contact-copy strong {
  color: var(--yellow);
}

.footer-contact-btn {
  display: flex;
  width: min(100%, 160px);
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 0 22px;
  border: 1px solid #ffd619;
  border-radius: 10px;
  color: #ffd619;
  font-size: .92rem;
  font-weight: 700;
  transition: color .2s, background .2s;
}

.footer-contact-btn span {
  font-size: inherit;
  font-weight: 900;
  line-height: 1;
}

.footer-contact-btn:hover {
  color: #06134f;
  background: var(--yellow);
}

@media (max-width: 900px) {
  .site-footer > .container {
    width: min(100% - 40px, 720px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 0;
    padding: 20px 0;
  }

  .footer-brand {
    padding-right: 45px;
  }

  .footer-links {
    padding: 0 0 15px 45px;
    border-right: 0;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding: 45px 0 0;
    border-top: 1px solid rgba(255,255,255,.14);
  }
}

@media (max-width: 600px) {
  .footer-brand p br,
  .footer-contact p br {
    display: none;
  }

  .footer-brand p .footer-copy-break {
    display: none;
  }

}

.site-footer,
.footer-brand p,
.footer-links h3,
.footer-links a,
.footer-contact h3,
.footer-contact p,
.footer-contact-btn,
.footer-bottom {
  font-size: 12px;
}

.footer-brand p,
.footer-links h3,
.footer-links a,
.footer-contact .footer-contact-copy,
.footer-bottom {
  color: rgba(255,255,255,.48);
}

.footer-links h3 {
  color: white;
}

@media (max-width: 767px) {
  .site-footer .footer-contact {
    display: none !important;
  }

  .footer-logo {
    gap: 8px;
    font-size: 1.15rem;
  }

  .footer-logo .footer-logo-arrow {
    font-size: 1.45rem;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 16px;
  }

  .footer-bottom > span:nth-child(2) {
    justify-self: end;
  }

  .footer-bottom > span:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 510px) {
  .footer-brand {
    border-right: 0;
  }
}

.savings-categories .saving-cat img.saving-glasses {
  width: 180px;
  height: auto;
}

@media (min-width: 1024px) {
  .savings-categories .saving-cat img.saving-glasses {
    width: 130px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .examples-grid .product-card {
    padding-top: 240px;
  }

  .examples-grid .product-card > img {
    position: absolute;
    top: 50px;
    left: calc(50% - 85px);
    width: 170px;
    height: 130px;
    margin: 0;
    object-fit: contain;
  }

  .examples-grid .product-card img.helmet-card-image {
    top: 70px;
    width: 150px;
    height: auto;
  }

  .examples-grid .product-card .product-card-text {
    display: block;
  }

  .examples-grid .product-card .product-card-text h3 {
    padding-top: 0;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .examples-grid .product-card {
    padding-top: 240px;
  }

  .examples-grid .product-card > img {
    position: absolute;
    top: 50px;
    left: calc(50% - 85px);
    width: 170px;
    height: 130px;
    margin: 0;
    object-fit: contain;
  }

  .examples-grid .product-card img.helmet-card-image {
    top: 70px;
    width: 150px;
    height: auto;
  }

  .examples-grid .product-card img.premium-sunglasses-image {
    top: 80px;
    left: calc(50% - 100px);
    width: 200px;
    height: auto;
  }

  .examples-grid .product-card img.perfume-card-image {
    left: calc(50% - 75px);
    width: 150px;
    height: auto;
  }

  .examples-grid .product-card img.magnetic-case-image {
    left: calc(50% - 80px);
    width: 160px;
    height: auto;
  }

  .examples-grid .product-card .product-card-text {
    display: block;
  }

  .examples-grid .product-card .product-card-text h3 {
    padding-top: 0;
    margin: 0;
  }
}
