@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  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;
  background: #06134f;
  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;
}

html:has(body.menu-open),
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.menu-backdrop {
  position: fixed;
  inset: 64px 0 0;
  z-index: 90;
  padding: 0;
  border: 0;
  background: rgba(3, 8, 42, .62);
  cursor: default;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

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-redesign {
  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);
}

.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 {
  box-shadow: 0 16px 34px rgba(255, 214, 25, .4);
}

.btn.suppress-button-glow,
.btn.suppress-button-glow:hover,
.btn.suppress-button-glow:focus,
.btn.suppress-button-glow:active {
  box-shadow: none;
}

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

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

.hero-copy.reveal {
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.hero-title-reveal.reveal {
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s 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: 100;
  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: 22px;
  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: 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);
  opacity: 0;
  transition: none;
}

.nav-links a.is-current::after {
  opacity: 1;
}

.header-cta {
  min-height: 0;
  padding-block: 8px;
  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: 900;
}

.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;
  grid-column: span 3;
}

@media (max-width: 1023px) {
  .hero-visual {
    grid-column: span 1;
  }
}

@media (min-width: 768px) and (max-width: 950px) {
  .hero-visual {
    min-height: 480px;
  }
}

@media (max-width: 767px) {
  .hero-visual {
    min-height: auto;
    align-self: stretch;
    gap: 20px;
    grid-column: span 2;
    order: 0;
    margin: 0;
  }
}

.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: 24px;
}

.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: 16px 0 0;
  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: 230px;
}

@media (min-width: 1024px) {
  .what-we-do-2-box-picture {
    padding-top: 20px;
  }
}

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

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

.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;
  padding-left: 20px;
  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 .save-divider {
  display: inline-block;
  transform: scaleX(.75);
}

.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: 16px;
}

.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(3, 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-icon svg {
  display: block;
  width: 1.15em;
  height: 1.15em;
}

.step:nth-of-type(2) .step-icon svg {
  width: 1em;
  height: 1em;
}

.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: repeat(8, minmax(0, 1fr));
  gap: 38px;
  column-gap: var(--site-gutter);
  padding: 30px;
  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-redesign .savings-message {
  align-self: start;
  padding: 0;
}

#savings-redesign .savings-message h2 {
  white-space: nowrap;
}

#savings-redesign .savings-heading-group p {
  max-width: none;
  margin: 20px 0 26px;
  white-space: nowrap;
}

#savings-redesign .saving-tech-items {
  width: 140px;
  height: auto;
}

#savings-redesign .saving-luxury-items {
  width: 200px;
  height: auto;
  margin: 0;
}

#savings-redesign .saving-category-name {
  font-size: 1.75rem;
}

#savings-redesign .saving-category-kicker {
  font-size: 1.15rem;
  text-transform: none;
}

#savings-redesign .saving-cat strong {
  font-size: 48px;
}

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

.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(2, minmax(0, 1fr));
  grid-column: span 4;
  column-gap: var(--site-gutter);
  row-gap: 30px;
}

@media (max-width: 1023px) {
  .savings-categories {
    grid-column: span 3;
  }
}

@media (max-width: 767px) {
  .savings-categories {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .savings-categories {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  .savings-categories {
    grid-column: 1 / 9;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }
}

.saving-cat {
  min-height: 310px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 24px;
  background: linear-gradient(135deg, #082d8f, #43c5ff);
  box-shadow: 0 16px 28px rgba(61, 26, 139, .16);
}

.saving-cat:nth-child(2) {
  background: linear-gradient(135deg, #8a166e, #ff79be);
}

.saving-cat:nth-child(3) {
  background: linear-gradient(135deg, #187a55, #59d98c);
}

.saving-cat:nth-child(4) {
  background: linear-gradient(135deg, #075f76, #42e1ca);
}

.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;
}

/* 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;
}

.mobile-testimonial-controls {
  display: none;
}

.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 pinch-zoom;
  user-select: none;
}

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

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

.testimonial-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.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-track {
  display: grid;
  grid-template-columns: none;
  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: repeat(6, minmax(0, 1fr));
  row-gap: 70px;
  column-gap: var(--site-gutter);
}

.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: repeat(6, minmax(0, 1fr));
  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-image {
  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;
  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 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%;
}

.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: 1023px) {
  .container {
    width: 92%;
  }

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

  .cta-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .nav-links a:nth-last-child(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 {
    gap: 55px 30px;
  }

  .process-line {
    display: none;
  }

  .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: repeat(3, minmax(0, 1fr));
    row-gap: 35px;
    column-gap: var(--site-gutter);
  }

}

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

}

@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-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: 64px 0 auto auto;
    width: min(280px, 72vw);
    display: grid;
    gap: 4px;
    max-height: 430px;
    overflow: hidden;
    padding: 16px 20px;
    border-radius: 0 0 20px 20px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 1;
    visibility: hidden;
    clip-path: none;
    transform: translateX(100%);
    transition: none;
  }

  .menu-open .nav-links {
    max-height: 430px;
    padding-block: 16px;
    opacity: 1;
    visibility: visible;
    clip-path: none;
    transform: translateX(0);
    transition: transform .28s ease;
  }

  .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-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: 16px;
  }

  .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: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
    column-gap: var(--site-gutter);
    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 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 35px;
    column-gap: var(--site-gutter);
    padding: 30px;
    border-radius: 30px;
  }

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

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

  .desktop-testimonial-controls {
    display: none;
  }

  .mobile-testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 22px;
  }

  .testimonials-dots {
    display: none;
  }

  .testimonials-viewport {
    overflow: hidden;
  }

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

  .faq-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
    column-gap: var(--site-gutter);
  }

  .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;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    padding: 95px 0 80px;
  }

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

  .cta-visual {
    display: none;
  }

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

  .cta-mobile-image {
    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 {
    gap: 42px 28px;
  }

  .footer-brand {
    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%;
  }

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

  .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;
  }

}

@media (max-width: 500px) {
  .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);
}

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@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: 16px;
  }

}

/* Enhanced featured saving card */

.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 .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);
}

.featured-product .saving-mobile-summary {
  display: none;
}

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

.hero-copy,
.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;
}

.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;
}

@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;
  }

  .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 {
    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;
  }

}

@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,
  .featured-product,
  .products-mini-grid,
  .step,
  .savings-message,
  .faq-intro,
  .faq-list,
  .cta-copy,
  .cta-visual {
    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: 200px;
    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: repeat(6, minmax(0, 1fr));
    column-gap: var(--site-gutter);
    row-gap: 10px;
  }

  .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;
    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: repeat(6, minmax(0, 1fr));
    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;
  }
}

@supports (grid-template-columns: subgrid) {
  @media (min-width: 1024px) {
    .examples-grid > .products-mini-grid,
    .examples-grid .product-card {
      grid-template-columns: subgrid;
    }

    .examples-grid .featured-product {
      grid-template-columns: subgrid;
    }
  }
}

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

  .testimonial {
    grid-column: auto;
  }
}

@media (min-width: 768px) {
  .testimonials-track {
    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: 30px;
    border-radius: 32px;
  }

  .savings-message {
    grid-column: 1 / 3;
    padding-left: 30px;
  }

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

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

  .savings-categories .saving-cat {
    width: calc(100% - 30px);
    grid-column: auto;
    justify-self: start;
    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-redesign .savings-wrap {
    padding: 30px;
  }

  #savings-redesign .savings-message {
    display: flex;
    grid-column: 1 / 9;
    grid-row: 1;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }

  #savings-redesign .savings-heading-group p {
    margin-bottom: 0;
  }

  #savings-redesign .savings-categories .saving-cat {
    width: 100%;
    text-align: left;
  }

  #savings-redesign .savings-categories .saving-cat-tech {
    position: relative;
    height: 270px;
    min-height: 270px;
    align-self: start;
  }

  #savings-redesign .saving-tech-copy {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 18px;
  }

  #savings-redesign .saving-cat-tech .saving-tech-items {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 8px;
    margin: 0;
  }

  #savings-redesign .saving-cat-fashion {
    position: relative;
  }

  #savings-redesign .saving-cat-fashion small,
  #savings-redesign .saving-cat-fashion strong {
    position: relative;
    z-index: 2;
  }

  #savings-redesign .saving-cat-fashion .saving-fashion-image {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 8px;
    width: 170px;
    height: auto;
    margin: 0;
  }

  #savings-redesign .saving-cat-luxury {
    position: relative;
  }

  #savings-redesign .saving-cat-luxury small,
  #savings-redesign .saving-cat-luxury strong {
    position: relative;
    z-index: 2;
  }

  #savings-redesign .saving-cat-luxury .saving-luxury-items {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 8px;
    width: 200px;
    height: auto;
    margin: 0;
  }

}

#savings-redesign .saving-cat-tech,
#savings-redesign .saving-cat-luxury,
#savings-redesign .saving-cat-fashion,
#savings-redesign .saving-cat-sports {
  position: relative;
}

#savings-redesign .saving-cat-luxury {
  background: linear-gradient(135deg, #8a166e, #ff79be);
}

#savings-redesign .saving-cat-fashion {
  background: linear-gradient(135deg, #187a55, #59d98c);
}

#savings-redesign .saving-cat-tech {
  background: linear-gradient(135deg, #082d8f, #43c5ff);
}

#savings-redesign .saving-cat-sports {
  background: linear-gradient(135deg, #075f76, #42e1ca);
}

#savings-redesign .saving-tech-copy {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
}

#savings-redesign .saving-cat-luxury small,
#savings-redesign .saving-cat-luxury strong,
#savings-redesign .saving-cat-fashion small,
#savings-redesign .saving-cat-fashion strong,
#savings-redesign .saving-cat-sports small,
#savings-redesign .saving-cat-sports strong {
  position: relative;
  z-index: 2;
}

#savings-redesign .saving-cat-tech .saving-tech-items,
#savings-redesign .saving-cat-luxury .saving-luxury-items,
#savings-redesign .saving-cat-fashion .saving-fashion-image,
#savings-redesign .saving-cat-sports .saving-sports-items {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 8px;
  height: auto;
  margin: 0;
}

#savings-redesign .saving-cat-fashion .saving-fashion-image {
  width: 170px;
}

#savings-redesign .saving-cat-sports .saving-sports-items {
  width: 170px;
}

#savings-redesign .saving-cat-tech .saving-tech-items {
  right: 23px;
  bottom: 13px;
}

@media (max-width: 767px) {
  #savings-redesign .savings-message h2 .accent-yellow {
    display: block;
  }
}

/* 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 > :not(.saving-mobile-summary) {
    display: none;
  }

  .examples-grid .featured-product .saving-mobile-summary {
    display: inline;
  }
}

/* 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 {
    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: end;
  }

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

  #how-it-works-v2 .steps {
    grid-column: 2 / span 3;
  }
}

/* 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) {
  .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-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;
}

.socials a:hover {
  border-color: #ffd619;
  color: #ffd619;
}

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

.footer-links {
  /* Preserves the link position after the section heading was removed. */
  padding: 72px 62px 12px;
}

.footer-links a {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  margin-top: 0;
  color: rgba(255,255,255,.92);
  font-size: .95rem;
}

.footer-links a:visited {
  color: rgba(255,255,255,.48);
}

.footer-links a:hover,
.footer-links a:visited:hover {
  color: #fff;
  transform: none;
}

.footer-links a span {
  display: flex;
  width: 16px;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.75rem;
  line-height: 1;
  transform: translateY(-3px);
}

.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: #000;
  background: #ffd619;
}

.footer-contact-btn.suppress-footer-button-background,
.footer-contact-btn.suppress-footer-button-background:hover,
.footer-contact-btn.suppress-footer-button-background:focus,
.footer-contact-btn.suppress-footer-button-background:active {
  background: transparent;
}

.contact-page .footer-contact-btn.suppress-contact-anchor-state,
.contact-page .footer-contact-btn.suppress-contact-anchor-state:hover,
.contact-page .footer-contact-btn.suppress-contact-anchor-state:focus,
.contact-page .footer-contact-btn.suppress-contact-anchor-state:active {
  color: #ffd619;
  background: transparent;
}

@media (min-width: 1024px) {
  .footer-contact-btn {
    margin-top: 29px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-contact-btn {
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .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: 60px 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: 861px) {
  .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 a,
.footer-contact h3,
.footer-contact p,
.footer-contact-btn,
.footer-bottom {
  font-size: 12px;
}

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

@media (max-width: 1023px) {
  .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: 767px) {
  .site-footer .footer-contact {
    display: none !important;
  }
}

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

@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;
  }
}

/* ========================================================================== */
/* CONTACT PAGE STYLES — used by contact.html                                 */
/* ========================================================================== */

/* Quirky Quest contact page */

.contact-page {
  background: #fff;
}

.contact-page .site-header {
  background: #06134f;
}

.contact-page .site-header.is-scrolled {
  background: rgba(6, 19, 79, .96);
}

.contact-page .nav-links .is-current::after {
  transform: scaleX(1);
}

.contact-page main {
  overflow: hidden;
}

.contact-page h1,
.contact-page h2,
.contact-page h3 {
  color: #07134e;
}

.contact-hero {
  padding: 152px 0 72px;
  background:
    radial-gradient(circle at 73% 41%, rgba(105, 83, 244, .08) 0 150px, transparent 151px),
    linear-gradient(180deg, #fff 0%, #fefeff 100%);
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 72px;
  min-height: 390px;
}

.contact-hero-copy {
  max-width: 520px;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-eyebrow::before,
.contact-section-heading h2::before {
  width: 30px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 20px;
  background: var(--pink);
  content: "";
}

.contact-hero h1 {
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3.2px;
}

.contact-hero h1 span {
  color: var(--electric);
}

.contact-hero h1 i {
  color: var(--pink);
  font-style: normal;
}

.contact-hero-copy p {
  max-width: 500px;
  margin-top: 24px;
  color: #30385f;
  font-size: 16px;
  line-height: 1.75;
}

.contact-options-section {
  padding: 54px 0 42px;
  background: #fff;
}

.contact-section-heading h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 27px;
  font-weight: 850;
  letter-spacing: -1px;
}

.contact-section-heading p {
  max-width: 650px;
  margin-top: 14px;
  color: #3f476b;
  font-size: 14px;
  line-height: 1.65;
}

.contact-option {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  padding-bottom: 24px;
  text-align: center;
  transition: transform .2s ease;
}

.contact-option::after {
  position: absolute;
  right: 28%;
  bottom: 0;
  left: 28%;
  height: 3px;
  border-radius: 8px;
  background: var(--option-color);
  box-shadow: 0 6px 10px color-mix(in srgb, var(--option-color) 20%, transparent);
  content: "";
}

.contact-option:hover:not(.suppress-hover) {
  transform: translateY(-6px);
}

.contact-option-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 12px;
}

.contact-option-icon svg {
  width: 64px;
  height: 64px;
}

.contact-option strong {
  color: #07134e;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.3px;
}

.contact-option small {
  max-width: 150px;
  margin-top: 8px;
  color: #434b70;
  font-size: 13px;
  line-height: 1.6;
}

.contact-option-instagram { --option-color: #ff2f87; }
.contact-option-tiktok { --option-color: #111641; }
.contact-option-messenger { --option-color: #5a55f5; }
.contact-strip {
  display: grid;
  min-height: 126px;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 24px 42px;
  border-radius: 18px;
}

.contact-call-strip {
  background: linear-gradient(90deg, #fff8df, #fffaf0);
}

.strip-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.strip-icon-call {
  background: var(--yellow);
}

.strip-copy {
  display: grid;
  gap: 5px;
  color: #31395f;
  font-size: 14px;
}

.strip-copy strong {
  color: #07134e;
  font-size: 19px;
  line-height: 1.3;
}

.strip-copy b {
  color: var(--electric);
  font-size: 23px;
}

.contact-page .footer-backdrop {
  margin-top: 0;
  background: #edf7ff;
}

@media (min-width: 921px) and (max-width: 1100px) {
  .contact-page .nav-links a:nth-last-child(-n+2) {
    display: block;
  }

  .contact-hero-layout {
    grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
    gap: 38px;
  }

}

@media (max-width: 920px) {
  .contact-page .menu-toggle {
    display: block;
  }

  .contact-page .nav-links {
    position: fixed;
    inset: 64px 0 auto auto;
    width: min(280px, 72vw);
    display: grid;
    gap: 4px;
    max-height: 520px;
    overflow: hidden;
    padding: 16px 20px;
    border-radius: 0 0 20px 20px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 1;
    visibility: hidden;
    clip-path: none;
    transform: translateX(100%);
    transition: none;
  }

  .contact-page.menu-open .nav-links {
    max-height: 520px;
    padding-block: 16px;
    opacity: 1;
    visibility: visible;
    clip-path: none;
    transform: translateX(0);
    transition: transform .28s ease;
  }

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

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

  .contact-hero {
    padding: 122px 0 58px;
  }

  .contact-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr);
    gap: 28px;
    min-height: 350px;
  }

  .contact-hero-copy p {
    margin-top: 19px;
    font-size: 15px;
    line-height: 1.65;
  }

  .contact-option:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: 50%;
  }

  .contact-option:nth-child(5) {
    grid-column: 3 / 4;
    margin-right: 50%;
  }

}

@media (max-width: 700px) {
  .contact-hero {
    padding: 112px 0 48px;
  }

  .contact-hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-hero-copy {
    max-width: 580px;
  }

  .contact-options-section {
    padding-top: 44px;
  }

  .contact-section-heading h2 {
    align-items: flex-start;
    font-size: 24px;
  }

  .contact-section-heading h2::before {
    margin-top: 11px;
  }

  .contact-strip {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 18px;
    padding: 22px 24px;
  }

  .strip-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .strip-copy strong {
    font-size: 17px;
  }

  .strip-copy b {
    font-size: 19px;
  }

}

@media (max-width: 500px) {
  .contact-hero {
    padding-top: 105px;
  }

  .contact-eyebrow {
    margin-bottom: 14px;
  }

  .contact-hero-copy p {
    font-size: 15px;
  }

  .contact-option:nth-child(4) {
    grid-column: auto;
    margin-left: 0;
  }

  .contact-option:nth-child(5) {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
    margin-right: 0;
  }

  .contact-option strong {
    font-size: 16px;
  }

  .contact-strip {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    padding: 22px 18px;
    border-radius: 15px;
  }

  .strip-icon {
    width: 48px;
    height: 48px;
  }

  .strip-copy {
    font-size: 13px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .contact-page .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Consolidated contact methods section */

.contact-options-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 40px;
  background: linear-gradient(180deg, #fff 0%, #f5f2ff 18%, #edf7ff 100%);
}

.contact-options-section::before {
  position: absolute;
  z-index: -1;
  top: 90px;
  left: -170px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(25, 209, 209, .1);
  content: "";
}

.contact-options-section::after {
  position: absolute;
  z-index: -1;
  top: 48px;
  right: 38px;
  width: 145px;
  height: 145px;
  background-image: radial-gradient(circle, rgba(255, 214, 25, .35) 0 3px, transparent 4px);
  background-repeat: repeat;
  background-size: 24px 24px;
  content: "";
  transform: rotate(9deg);
}

.contact-options-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 30px 58px;
  background: none;
}

.contact-options-section .contact-section-heading {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  text-align: left;
  background: none;
}

.contact-options-section .contact-section-heading .contact-eyebrow {
  margin-bottom: 14px;
}

.contact-options-section .contact-section-heading h2 {
  display: block;
  max-width: 760px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -2.6px;
  white-space: nowrap;
}

.contact-options-section .contact-section-heading h2::before {
  display: none;
}

.contact-heading-black,
.contact-heading-blue {
  display: inline;
}

.contact-heading-black {
  color: #111641;
}

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

.contact-options-section .contact-section-heading p {
  max-width: 610px;
  margin-top: 24px;
  color: #3d466d;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 432px) {
  .contact-subtext-break {
    display: none;
  }
}

.contact-heading-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 0;
  box-shadow: none;
}

.contact-methods-panel > * {
  position: relative;
  z-index: 1;
}

.contact-methods-panel .contact-option {
  padding: 8px 8px 22px;
}

.contact-methods-panel .contact-option:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: 50%;
}

.contact-methods-panel .contact-option:nth-child(5) {
  grid-column: 3 / 4;
  margin-right: 50%;
}

.contact-methods-panel .contact-strip {
  min-height: 104px;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid rgba(78, 70, 144, .08);
  border-radius: 18px;
}

.contact-methods-panel .strip-icon {
  width: 50px;
  height: 50px;
  font-size: 23px;
}

.contact-methods-panel .strip-copy {
  font-size: 12px;
  line-height: 1.45;
}

.contact-methods-panel .strip-copy strong {
  font-size: 16px;
}

.contact-methods-panel .strip-copy b {
  font-size: 17px;
}

@media (max-width: 1023px) {
  .contact-options-section {
    padding: 80px 0 40px;
  }

  .contact-options-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .contact-options-section .contact-section-heading h2 {
    max-width: 560px;
    font-size: 46px;
    letter-spacing: -2px;
  }

  .contact-options-section .contact-section-heading p {
    max-width: 500px;
    font-size: 15px;
  }

  .contact-methods-panel .contact-option:nth-child(4) {
    margin-left: 34%;
  }

  .contact-methods-panel .contact-option:nth-child(5) {
    margin-right: 34%;
  }

}

@media (max-width: 800px) {
  .contact-options-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-options-section .contact-section-heading {
    grid-column: 1;
  }

  .contact-options-section .contact-section-heading h2 {
    max-width: 620px;
  }

  .contact-options-section .contact-section-heading p {
    max-width: 520px;
  }

}

@media (max-width: 767px) {
  .contact-options-section .contact-section-heading h2 {
    font-size: 46px;
  }
}

@media (max-width: 500px) {
  .contact-options-section::after {
    top: 26px;
    right: -52px;
  }

  .contact-methods-panel .contact-option:nth-child(4) {
    grid-column: auto;
    margin-left: 0;
  }

  .contact-methods-panel .contact-option:nth-child(5) {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
    margin-right: 0;
  }

  .contact-methods-panel .contact-strip {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 17px 15px;
  }

  .contact-methods-panel .strip-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

}

@media (max-width: 460px) {
  .contact-options-section .contact-section-heading h2 {
    font-size: 46px;
  }
}

/* Text-only contact hero */

.contact-hero {
  padding: 100px 0 40px;
  background-color: #07145f;
  background-image: linear-gradient(90deg, rgba(5, 10, 82, .9) 0%, rgba(12, 23, 145, .72) 50%, rgba(22, 34, 183, .32) 100%), url("assets/images/electric-blue-wide.jpg");
  background-position: center, center top;
  background-repeat: no-repeat;
  background-size: 100% 100%, 2520px 1080px;
}

.contact-hero-layout {
  display: grid;
  min-height: 180px;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  gap: 0;
}

.contact-hero-copy {
  position: relative;
  width: 100%;
  max-width: 780px;
  text-align: center;
}

.contact-hero .contact-eyebrow {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-bottom: 8px;
  transform: translateX(-50%);
  color: var(--cyan);
}

.contact-hero .contact-eyebrow::before {
  display: none;
}

.contact-hero h1 i {
  color: var(--cyan);
}

.contact-hero h1 {
  color: #fff;
  font-size: 68px;
  letter-spacing: -2.72px;
}

.contact-hero h1 span {
  color: var(--yellow);
}

.contact-hero-copy p {
  max-width: 650px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.7;
}

.contact-hero-copy p + p {
  margin-top: 14px;
}

@media (max-width: 920px) {
  .contact-hero {
    padding: 100px 0 40px;
  }

  .contact-hero-layout {
    min-height: 180px;
  }

}

@media (max-width: 700px) {
  .contact-hero {
    padding: 100px 0 30px;
  }

  .contact-hero-layout {
    min-height: 170px;
  }

  .contact-hero-copy p {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact-hero h1 {
    font-size: 68px;
  }
}

@media (max-width: 767px) {
  .contact-hero h1 {
    font-size: 52px;
  }
}

/* Upright social contact cards */

.contact-methods-panel .contact-option,
.contact-methods-panel .contact-option:nth-child(4),
.contact-methods-panel .contact-option:nth-child(5) {
  min-height: 224px;
  aspect-ratio: 4 / 5;
  grid-column: auto;
  justify-content: center;
  margin: 0;
  padding: 24px 14px 30px;
  border: 1px solid var(--card-border);
  border-radius: 22px;
  background: var(--card-background);
  box-shadow: 0 12px 25px rgba(36, 43, 101, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-methods-panel .contact-option:hover:not(.suppress-hover),
.contact-methods-panel .contact-option.is-transitioning {
  box-shadow: 0 18px 34px rgba(36, 43, 101, .12);
  transform: translateY(-6px);
}

.contact-methods-panel .contact-option::after {
  right: 32%;
  bottom: 18px;
  left: 32%;
}

.contact-methods-panel .contact-option-instagram {
  --card-border: rgba(255, 47, 135, .2);
  --card-background: linear-gradient(160deg, #fff9f3 0%, #fff0f7 100%);
}

.contact-methods-panel .contact-option-tiktok {
  --card-border: rgba(17, 22, 65, .14);
  --card-background: linear-gradient(160deg, #f3ffff 0%, #f4f3ff 100%);
}

.contact-methods-panel .contact-option-messenger {
  --card-border: rgba(98, 51, 230, .18);
  --card-background: linear-gradient(160deg, #fbf7ff 0%, #eeebff 100%);
}

@media (max-width: 1023px) {
  .contact-methods-panel .contact-option {
    grid-column: span 2;
  }

  .contact-methods-panel .contact-option:nth-child(4) {
    grid-column: span 2;
    margin: 0;
  }

  .contact-methods-panel .contact-option:nth-child(5) {
    grid-column: 4 / span 2;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .contact-methods-panel .contact-option,
  .contact-methods-panel .contact-option:nth-child(4) {
    min-height: 214px;
    grid-column: auto;
  }

  .contact-methods-panel .contact-option:nth-child(5) {
    width: calc((100% - 12px) / 2);
    min-height: 214px;
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* Right-aligned stack of equal-width contact pills */

@media (min-width: 901px) {
  .contact-options-layout {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 30px;
    align-items: start;
  }

  .contact-options-section .contact-section-heading {
    position: static;
    top: auto;
    max-width: none;
    grid-column: 1 / span 2;
    grid-row: 1;
    align-self: start;
  }

  .contact-heading-image {
    width: 100%;
    margin-right: 0;
  }

}

.contact-methods-panel {
  --contact-pill-gradient: linear-gradient(120deg, #071a52 0%, #31206f 34%, #a21caf 68%, #db2777 100%);
}

.contact-methods-panel .contact-options-grid {
  display: grid;
  width: 100%;
  max-width: none;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  justify-self: end;
  margin: 0;
}

.contact-methods-panel .contact-option,
.contact-methods-panel .contact-option:nth-child(4),
.contact-methods-panel .contact-option:nth-child(5) {
  --pill-bg: linear-gradient(100deg, #fff8df, #fffaf0);
  --pill-border: rgba(172, 145, 48, .15);
  --pill-icon-bg: #ffd619;
  display: grid;
  width: 100%;
  min-height: 104px;
  aspect-ratio: auto;
  grid-column: auto;
  grid-template-columns: 50px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: stretch;
  column-gap: 17px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--pill-border);
  border-radius: 18px;
  background: var(--pill-bg);
  background-position: left center;
  background-size: 140% 140%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    inset 0 -1px 0 rgba(0,0,0,.14),
    0 10px 24px rgba(25, 32, 82, .14);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, background-position .35s ease;
}

.contact-methods-panel .contact-option:hover:not(.suppress-hover),
.contact-methods-panel .contact-option.is-transitioning {
  background-position: right center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.26),
    inset 0 -1px 0 rgba(0,0,0,.12),
    0 16px 30px rgba(25, 32, 82, .2);
  transform: translateY(-2px);
}

.contact-methods-panel .contact-option::after {
  display: none;
}

.contact-methods-panel .contact-option-icon {
  display: grid;
  width: 50px;
  height: 50px;
  grid-column: 1;
  grid-row: 1 / 3;
  place-items: center;
  margin: 0;
  border-radius: 0;
  background: transparent;
}

.contact-methods-panel .contact-option-icon svg,
.contact-methods-panel .contact-option-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .2));
}

.contact-methods-panel .contact-option-messenger .contact-option-icon img {
  width: 36px;
  height: 36px;
}

.contact-methods-panel .contact-option strong {
  align-self: end;
  grid-column: 2;
  grid-row: 1;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

.contact-methods-panel .contact-option small {
  align-self: start;
  max-width: none;
  grid-column: 2;
  grid-row: 2;
  margin-top: 5px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.contact-methods-panel .contact-option-instagram {
  --pill-bg:
    var(--contact-pill-gradient);
  --pill-border: rgba(244, 114, 182, .62);
  --pill-icon-bg: #ffd64a;
}

.contact-methods-panel .contact-option-tiktok {
  --pill-bg:
    var(--contact-pill-gradient);
  --pill-border: rgba(34, 211, 238, .56);
  --pill-icon-bg: #bdf5f2;
}

.contact-methods-panel .contact-option-messenger {
  --pill-bg:
    var(--contact-pill-gradient);
  --pill-border: rgba(129, 140, 248, .64);
  --pill-icon-bg: #ddd3ff;
}

.contact-methods-panel .contact-call-strip {
  width: 100%;
  min-height: 104px;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 17px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(71, 190, 255, .42);
  border-radius: 18px;
  background:
    var(--contact-pill-gradient);
  background-position: left center;
  background-size: 140% 140%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    inset 0 -1px 0 rgba(0,0,0,.14),
    0 10px 24px rgba(25, 32, 82, .14);
  transition: transform .2s ease, box-shadow .2s ease, background-position .35s ease;
}

.contact-methods-panel .contact-call-strip .strip-icon-call {
  width: 42px;
  height: 42px;
  justify-self: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #38bdf8 0%, #2563eb 58%, #4f46e5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.38),
    0 5px 12px rgba(8, 28, 96, .3);
}

.contact-methods-panel .contact-call-strip .strip-icon-call svg {
  display: block;
  width: 26px;
  height: 26px;
  transform: translate(-1px, 1px);
}

.contact-methods-panel .contact-call-strip .strip-icon-whatsapp {
  border-radius: 0;
  color: #25d366;
  background: transparent;
}

.contact-methods-panel .contact-call-strip .strip-icon-whatsapp svg,
.contact-methods-panel .contact-call-strip .strip-icon-whatsapp img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .2));
}

.contact-methods-panel .contact-call-strip:hover:not(.suppress-hover),
.contact-methods-panel .contact-call-strip.is-transitioning {
  background-position: right center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.26),
    inset 0 -1px 0 rgba(0,0,0,.12),
    0 16px 30px rgba(25, 32, 82, .2);
  transform: translateY(-2px);
}

.contact-methods-panel .contact-mobile-strip {
  background-image: var(--contact-pill-gradient);
}

.contact-methods-panel .contact-call-strip .strip-copy,
.contact-methods-panel .contact-call-strip .strip-copy strong {
  color: #fff;
}

.contact-methods-panel .contact-call-strip .strip-copy span {
  color: rgba(255,255,255,.78);
  font-weight: 750;
}

.contact-methods-panel .contact-call-strip .strip-copy b {
  color: inherit;
  font-size: 12px;
  font-weight: inherit;
}

@media (max-width: 900px) {
  .contact-options-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-heading-image {
    width: 100%;
  }

  .contact-options-section .contact-section-heading {
    grid-column: 1;
  }

  .contact-options-section .contact-section-heading {
    grid-row: 1;
  }

}


.contact-options-section .contact-methods-panel {
  display: contents;
}

@media (min-width: 901px) {
  .contact-methods-panel .contact-options-grid {
    grid-column: 3 / span 2;
    grid-row: 1;
  }
}

/* Contact reassurance banner */
.contact-benefits-banner {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  min-height: 220px;
  padding: 34px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffd619 0%, #ffe348 45%, #ffeb68 100%);
  color: #073451;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), 0 14px 28px -12px rgba(116, 88, 12, .22), 0 4px 10px rgba(116, 88, 12, .05);
}

.contact-benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 12px 20px;
}

.contact-benefit + .contact-benefit {
  border-left: 1px solid rgba(145, 116, 0, .12);
}

.contact-benefit-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 72px;
  filter: drop-shadow(0 3px 4px rgba(91, 50, 174, .17));
}

.contact-benefit-copy {
  min-width: 0;
}

.contact-benefit-copy h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.contact-benefit-copy p {
  margin: 8px 0 0;
  color: #626c50;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-benefit-chat .contact-benefit-icon {
  align-self: flex-start;
  margin-top: 7px;
}

.contact-chat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #8024ff;
  box-shadow: 0 7px 14px -4px rgba(103, 32, 207, .4), 0 3px 6px rgba(103, 32, 207, .15);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
}

.contact-chat-button:hover {
  background: #6820d5;
}

.contact-chat-button:focus-visible {
  outline: 3px solid #073451;
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .contact-benefits-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px;
  }

  .contact-benefit {
    padding: 24px;
  }

  .contact-benefit:nth-child(3) {
    border-left: 0;
  }

  .contact-benefit:nth-child(n + 3) {
    border-top: 1px solid rgba(145, 116, 0, .12);
  }
}

@media (max-width: 600px) {
  .contact-benefits-banner {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px 20px;
  }

  .contact-benefit {
    padding: 24px 0;
    gap: 22px;
  }

  .contact-benefit + .contact-benefit {
    border-left: 0;
    border-top: 1px solid rgba(145, 116, 0, .2);
  }
}

/* Bottom two contact pills */

/* End arrows for the five contact pills */

.contact-methods-panel .contact-options-grid > .contact-option,
.contact-methods-panel .contact-options-grid > .contact-call-strip {
  grid-template-columns: 50px minmax(0, 1fr) 38px;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.contact-methods-panel .contact-call-strip .strip-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: center;
}

.contact-methods-panel .contact-call-strip .strip-copy {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  align-content: center;
  justify-self: stretch;
}

/* The filled phone tile has more visual weight than the image-based icons. */
.contact-methods-panel .contact-call-strip .strip-icon-call {
  width: 38px;
  height: 38px;
}

.contact-methods-panel .contact-call-strip .strip-icon-call svg {
  width: 26px;
  height: 26px;
}

.contact-methods-panel .contact-options-grid > .contact-option::after,
.contact-methods-panel .contact-options-grid > .contact-call-strip::after {
  position: static;
  display: grid;
  width: 38px;
  height: 38px;
  grid-column: 3;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 50%;
  color: #07134e;
  background: var(--yellow);
  box-shadow: none;
  content: "\2192";
  font-size: 21px;
  font-weight: 900;
  transition: transform .2s ease;
}

.contact-methods-panel .contact-options-grid > .contact-option:hover:not(.suppress-hover)::after,
.contact-methods-panel .contact-options-grid > .contact-option.is-transitioning::after,
.contact-methods-panel .contact-options-grid > .contact-call-strip:hover::after {
  transform: translateX(4px);
}

.contact-methods-panel .contact-options-grid > .contact-call-strip:hover::after {
  transform: none;
}

.contact-methods-panel .contact-options-grid > .contact-mobile-strip::after {
  transform: none !important;
}



@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;
  }
}

/* Tablet navigation: full-size yellow CTA followed by the hamburger. */
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header .nav-wrap {
    gap: 20px;
  }

  .site-header .menu-toggle {
    display: block;
    flex-shrink: 0;
    order: 3;
    margin-left: 0;
  }

  .site-header .header-cta {
    display: inline-flex;
    flex-shrink: 0;
    order: 2;
    margin-left: auto;
  }

  .site-header .nav-links {
    position: fixed;
    inset: 64px 0 auto auto;
    width: min(280px, 72vw);
    display: grid;
    gap: 4px;
    max-height: min(520px, calc(100dvh - 88px));
    overflow: hidden;
    padding: 16px 20px;
    border-radius: 0 0 20px 20px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 1;
    visibility: hidden;
    clip-path: none;
    transform: translateX(100%);
    transition: none;
  }

  .menu-open .site-header .nav-links {
    max-height: min(520px, calc(100dvh - 88px));
    overflow: hidden;
    padding-block: 16px;
    opacity: 1;
    visibility: visible;
    clip-path: none;
    transform: translateX(0);
    transition: transform .28s ease;
  }

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

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

@media (max-width: 1023px) {
  body.menu-closing .site-header .nav-links {
    visibility: visible;
    transform: translateX(100%);
    transition: transform .28s ease;
  }

  .site-header .nav-links {
    max-height: calc(100dvh - 88px);
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(to bottom right, #cfe9ff 0%, #edf6ff 55%, #fff 100%);
    touch-action: pan-y;
    overscroll-behavior-y: contain;
  }

  .site-header .nav-links a::after {
    display: none;
  }

  .site-header .nav-label {
    position: relative;
    display: inline-block;
  }

  .site-header .nav-label::after {
    position: absolute;
    inset: auto 0 -3px;
    height: 3px;
    border-radius: 99px;
    background: var(--yellow);
    content: "";
    opacity: 0;
    transform: none;
    transition: none;
  }

  .site-header .nav-links a.is-current .nav-label::after,
  .site-header .nav-links a[aria-current="page"] .nav-label::after {
    opacity: 1;
  }
}

/* Tall mobile view: add 50px to the hero's existing 90px top padding. */
@media (max-width: 767px) and (min-height: 850px) {
  .hero {
    padding-top: calc(90px + 50px);
  }
}

/* Taller mobile view: add another 50px from 950px viewport height. */
@media (max-width: 767px) and (min-height: 950px) {
  .hero {
    padding-top: calc(90px + 100px);
  }
}

/* Taller mobile view: add another 50px from 1050px viewport height. */
@media (max-width: 767px) and (min-height: 1050px) {
  .hero {
    padding-top: calc(90px + 150px);
  }
}

/* Consistent spacing above the Get in touch section at every viewport size. */
.contact-page .contact-options-section {
  padding-top: 50px;
}
