/* WorryFree Pay — Products Page V5 (Apple + Stripe + Visa) */

.wfp-page--products {
  background: #000;
  color: #f5f5f7;
}

.wfp-page--products .wfp-header {
  background: rgba(0, 0, 0, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.wfp-page--products .wfp-nav__link.is-active {
  color: #fff;
  background: rgba(99, 91, 255, 0.2);
}

.wfp-prod-main { padding-top: var(--wfp-header-h); }

/* ── Hero ── */
.wfp-prod-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.wfp-prod-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(0, 119, 255, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(99, 91, 255, 0.1) 0%, transparent 50%),
    #000;
}
.wfp-prod-hero__map {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Crect fill='%23000' width='1200' height='600'/%3E%3Cellipse cx='600' cy='300' rx='480' ry='200' fill='none' stroke='%23635bff' stroke-width='0.5' opacity='0.3'/%3E%3Cline x1='280' y1='220' x2='680' y2='240' stroke='%230077ff' stroke-width='0.8' opacity='0.4'/%3E%3Cline x1='680' y1='240' x2='820' y2='200' stroke='%230077ff' stroke-width='0.8' opacity='0.4'/%3E%3Ccircle cx='280' cy='220' r='4' fill='%23635bff'/%3E%3Ccircle cx='680' cy='240' r='4' fill='%230077ff'/%3E%3Ccircle cx='820' cy='200' r='4' fill='%2300d4aa'/%3E%3C/svg%3E") center/cover no-repeat;
  animation: wfp-prod-map-pulse 8s ease-in-out infinite;
}
@keyframes wfp-prod-map-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.35; }
}
.wfp-prod-hero__beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.wfp-prod-hero__beam {
  position: absolute;
  width: 2px;
  height: 200%;
  background: linear-gradient(180deg, transparent, rgba(0, 119, 255, 0.6), transparent);
  animation: wfp-prod-beam 6s linear infinite;
}
.wfp-prod-hero__beam:nth-child(1) { left: 20%; animation-delay: 0s; }
.wfp-prod-hero__beam:nth-child(2) { left: 50%; animation-delay: 2s; }
.wfp-prod-hero__beam:nth-child(3) { left: 80%; animation-delay: 4s; }
@keyframes wfp-prod-beam {
  0% { transform: translateY(-100%) rotate(15deg); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(50%) rotate(15deg); opacity: 0; }
}

.wfp-prod-hero__cards {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: min(520px, 90vw);
  height: 280px;
  perspective: 1200px;
  pointer-events: none;
  z-index: 1;
}
.wfp-prod-hero__cards--real {
  height: auto;
  width: min(480px, 88vw);
  transform: translate(-50%, -58%);
}
.wfp-prod-hero__cards--real .wfp-hero-card { width: 100%; }
.wfp-prod-hero__cards--real .wfp-hero-card__main { max-width: 100%; }
.wfp-prod-hero__cards--real .wfp-hero-card__sub { display: none; }
@media (min-width: 900px) {
  .wfp-prod-hero__cards--real .wfp-hero-card__sub { display: block; }
}
.wfp-prod-hero__card {
  position: absolute;
  width: 320px;
  height: 200px;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  backface-visibility: hidden;
}
.wfp-prod-hero__card--privacy {
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 40%, #1f1f2e 100%);
  left: 50%;
  margin-left: -200px;
  animation: wfp-prod-card-a 12s ease-in-out infinite;
}
.wfp-prod-hero__card--business {
  background: linear-gradient(145deg, #0d1a2e 0%, #0a0a0a 40%, #152035 100%);
  left: 50%;
  margin-left: -120px;
  animation: wfp-prod-card-b 12s ease-in-out infinite;
}
@keyframes wfp-prod-card-a {
  0%, 100% { transform: rotateY(-12deg) rotateX(6deg) translateZ(20px); }
  50% { transform: rotateY(8deg) rotateX(-4deg) translateZ(40px); }
}
@keyframes wfp-prod-card-b {
  0%, 100% { transform: rotateY(10deg) rotateX(-5deg) translateZ(60px); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateZ(30px); }
}
.wfp-prod-hero__card-chip {
  width: 40px;
  height: 30px;
  border-radius: 5px;
  background: linear-gradient(135deg, #c9a227, #f0e6a8);
}
.wfp-prod-hero__card-brand { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; color: rgba(255,255,255,0.7); }
.wfp-prod-hero__card-num { font-family: monospace; font-size: 17px; letter-spacing: 0.12em; color: rgba(255,255,255,0.85); }
.wfp-prod-hero__card-foot { display: flex; justify-content: space-between; align-items: flex-end; font-size: 11px; color: rgba(255,255,255,0.5); }
.wfp-prod-hero__card-visa { font-size: 25px; font-weight: 900; font-style: italic; color: #fff; letter-spacing: -0.04em; }

.wfp-prod-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 320px 24px 80px;
}
.wfp-prod-hero__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wfp-muted);
  margin-bottom: 20px;
}
.wfp-prod-hero__title {
  font-size: clamp(47px, 7.8vw, 85px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 8px;
}
.wfp-prod-hero__subtitle {
  font-size: clamp(33px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--wfp-muted);
  margin: 0 0 32px;
}
.wfp-prod-hero__tagline {
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 600;
  margin: 0 0 16px;
  background: linear-gradient(90deg, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wfp-prod-hero__desc {
  font-size: 19px;
  line-height: 1.65;
  color: var(--wfp-muted);
  max-width: 640px;
  margin: 0 auto 12px;
}
.wfp-prod-hero__quote {
  font-size: 17px;
  font-style: italic;
  color: #636366;
  margin: 24px auto 36px;
  letter-spacing: 0.02em;
}
.wfp-prod-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Philosophy block ── */
.wfp-prod-philosophy {
  padding: 120px 24px;
  text-align: center;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wfp-prod-philosophy__inner { max-width: 780px; margin: 0 auto; }
.wfp-prod-philosophy__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #635bff;
  margin-bottom: 24px;
}
.wfp-prod-philosophy__title {
  font-size: clamp(38px, 5.6vw, 61px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 32px;
}
.wfp-prod-philosophy__text {
  font-size: 21px;
  line-height: 1.7;
  color: var(--wfp-muted);
  margin-bottom: 16px;
}
.wfp-prod-philosophy__list {
  text-align: left;
  max-width: 480px;
  margin: 40px auto 0;
  font-size: 20px;
  color: #f5f5f7;
  line-height: 2;
}

/* ── Full-screen principles (Apple style) ── */
.wfp-prod-principles { background: #000; }
.wfp-prod-principles__intro {
  padding: 100px 24px 60px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wfp-prod-principles__intro h2 {
  font-size: clamp(33px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.wfp-prod-principles__intro p { color: var(--wfp-muted); font-size: 19px; margin: 0; }

.wfp-prod-principle {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.wfp-prod-principle__inner {
  max-width: var(--wfp-container-wide);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.wfp-prod-principle__num {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #635bff;
  margin-bottom: 16px;
}
.wfp-prod-principle__title-en {
  font-size: clamp(42px, 5.6vw, 66px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 8px;
}
.wfp-prod-principle__title-zh {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  color: var(--wfp-muted);
  margin: 0 0 28px;
}
.wfp-prod-principle__body {
  font-size: 19px;
  line-height: 1.75;
  color: var(--wfp-muted);
}
.wfp-prod-principle__body p { margin: 0 0 16px; }
.wfp-prod-principle__body strong { color: #f5f5f7; font-weight: 600; }

/* Principle visuals */
.wfp-prod-principle__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}
.wfp-prod-principle__big-text {
  font-size: clamp(57px, 11.2vw, 142px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-align: center;
  background: linear-gradient(180deg, #635bff 0%, #0077ff 50%, rgba(0,119,255,0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
}
.wfp-prod-principle.is-visible .wfp-prod-principle__big-text {
  opacity: 1;
  transform: scale(1);
}

.wfp-prod-db {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(145deg, #1c1c1e, #2c2c2e);
  border: 1px solid rgba(99,91,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.wfp-prod-principle.is-visible .wfp-prod-db { animation: wfp-prod-shrink 3s ease-in-out infinite; }
@keyframes wfp-prod-shrink {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.55); opacity: 0.7; }
}

.wfp-prod-isolation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 280px;
}
.wfp-prod-isolation__layer {
  padding: 16px 20px;
  background: rgba(99,91,255,0.08);
  border: 1px solid rgba(99,91,255,0.25);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wfp-prod-principle.is-visible .wfp-prod-isolation__layer:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.wfp-prod-principle.is-visible .wfp-prod-isolation__layer:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.25s; }
.wfp-prod-principle.is-visible .wfp-prod-isolation__layer:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.4s; }
.wfp-prod-principle.is-visible .wfp-prod-isolation__layer:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.55s; }
.wfp-prod-isolation__arrow { text-align: center; color: #635bff; font-size: 13px; }

.wfp-prod-shield {
  width: 200px;
  height: 240px;
  position: relative;
}
.wfp-prod-shield svg { width: 100%; height: 100%; filter: drop-shadow(0 0 40px rgba(99,91,255,0.4)); }

.wfp-prod-globe {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(0,119,255,0.3);
  background:
    radial-gradient(circle at 30% 30%, rgba(99,91,255,0.2), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,119,255,0.15), transparent 40%),
    #0a0a0a;
  position: relative;
  animation: wfp-prod-globe-spin 20s linear infinite;
}
@keyframes wfp-prod-globe-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.wfp-prod-globe::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(0,119,255,0.2);
  animation: wfp-prod-globe-spin 30s linear infinite reverse;
}

.wfp-prod-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wfp-prod-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #635bff;
  animation: wfp-prod-float 4s ease-in-out infinite;
}
@keyframes wfp-prod-float {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-20px); opacity: 1; }
}

/* ── Product Family ── */
.wfp-prod-family {
  padding: 120px 24px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wfp-prod-family__header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.wfp-prod-family__header h2 {
  font-size: clamp(38px, 5vw, 57px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.wfp-prod-family__header p { color: var(--wfp-muted); font-size: 19px; margin: 0; }

.wfp-prod-series {
  max-width: var(--wfp-container-wide);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  transition: border-color 0.3s;
}
.wfp-prod-series:hover { border-color: rgba(99,91,255,0.3); }
.wfp-prod-series--reverse { grid-template-columns: 380px 1fr; }
.wfp-prod-series--reverse .wfp-prod-series__content { order: 2; }
.wfp-prod-series--reverse .wfp-prod-series__visual { order: 1; }

.wfp-prod-series__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #635bff;
  margin-bottom: 12px;
}
.wfp-prod-series__name {
  font-size: clamp(33px, 3.9vw, 47px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.wfp-prod-series__series {
  font-size: 18px;
  color: var(--wfp-muted);
  margin-bottom: 20px;
}
.wfp-prod-series__oneline {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f5f5f7;
}
.wfp-prod-series__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.wfp-prod-series__feat {
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wfp-muted);
}
.wfp-prod-series__scenes { margin-bottom: 28px; }
.wfp-prod-series__scenes h4 { font-size: 15px; font-weight: 700; color: #636366; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.wfp-prod-series__scene-list { display: flex; flex-wrap: wrap; gap: 8px; }
.wfp-prod-series__scene {
  font-size: 16px;
  color: var(--wfp-muted);
  padding-left: 16px;
  position: relative;
}
.wfp-prod-series__scene::before { content: "✓"; position: absolute; left: 0; color: #00d4aa; font-weight: 700; }

.wfp-prod-series__card {
  width: 100%;
  aspect-ratio: 1.586;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.wfp-prod-series__card--privacy {
  background: linear-gradient(145deg, #111 0%, #1a1a1a 50%, #0d0d12 100%);
}
.wfp-prod-series__card--business {
  background: linear-gradient(145deg, #0a1520 0%, #111 50%, #0d1a28 100%);
}

/* ── Experience ── */
.wfp-prod-experience {
  padding: 120px 24px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wfp-prod-experience__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.wfp-prod-experience__grid {
  max-width: var(--wfp-container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wfp-prod-exp-card {
  padding: 32px 24px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: transform 0.3s, border-color 0.3s;
}
.wfp-prod-exp-card:hover { transform: translateY(-4px); border-color: rgba(99,91,255,0.3); }
.wfp-prod-exp-card__icon { font-size: 36px; margin-bottom: 20px; }
.wfp-prod-exp-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 8px; }
.wfp-prod-exp-card__en { font-size: 13px; font-weight: 600; color: #635bff; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.wfp-prod-exp-card p { font-size: 16px; color: var(--wfp-muted); line-height: 1.65; margin: 0; }

/* ── Security section ── */
.wfp-prod-security {
  padding: 120px 24px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wfp-prod-security__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.wfp-prod-security__grid {
  max-width: var(--wfp-container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Global Coverage ── */
.wfp-prod-coverage {
  position: relative;
  padding: 120px 24px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.wfp-prod-coverage__map-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Crect fill='%23050505' width='1200' height='600'/%3E%3Ccircle cx='300' cy='250' r='8' fill='%23635bff'/%3E%3Ccircle cx='600' cy='220' r='8' fill='%230077ff'/%3E%3Ccircle cx='850' cy='280' r='8' fill='%2300d4aa'/%3E%3C/svg%3E") center/cover;
}
.wfp-prod-coverage__inner { position: relative; z-index: 1; max-width: var(--wfp-container); margin: 0 auto; text-align: center; }
.wfp-prod-coverage__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.wfp-prod-coverage__tag {
  padding: 10px 20px;
  background: rgba(99,91,255,0.1);
  border: 1px solid rgba(99,91,255,0.2);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}

/* ── Compare ── */
.wfp-prod-compare {
  padding: 120px 24px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wfp-prod-compare__inner { max-width: 800px; margin: 0 auto; }
.wfp-prod-compare__inner h2 { text-align: center; font-size: clamp(33px, 4.5vw, 47px); margin-bottom: 48px; }
.wfp-prod-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
}
.wfp-prod-compare__table th,
.wfp-prod-compare__table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.wfp-prod-compare__table th:first-child,
.wfp-prod-compare__table td:first-child { text-align: left; }
.wfp-prod-compare__table thead th {
  font-weight: 700;
  color: #f5f5f7;
  background: rgba(255,255,255,0.03);
}
.wfp-prod-compare__table tbody td:first-child { color: var(--wfp-muted); }
.wfp-prod-compare__check { color: #00d4aa; font-weight: 700; }
.wfp-prod-compare__dash { color: #48484a; }

/* ── Why ── */
.wfp-prod-why {
  padding: 120px 24px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.wfp-prod-why__inner { max-width: 720px; margin: 0 auto; }
.wfp-prod-why__values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
}
.wfp-prod-why__value {
  padding: 12px 20px;
  background: rgba(99,91,255,0.1);
  border: 1px solid rgba(99,91,255,0.25);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
}

/* ── CTA ── */
.wfp-prod-cta {
  padding: 120px 24px 140px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(99,91,255,0.2), transparent),
    #000;
}
.wfp-prod-cta h2 {
  font-size: clamp(38px, 5vw, 57px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.wfp-prod-cta p { color: var(--wfp-muted); font-size: 19px; margin: 0 0 36px; }
.wfp-prod-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Reveal */
[data-wfp-prod-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-wfp-prod-reveal].is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .wfp-prod-principle__inner { grid-template-columns: 1fr; gap: 40px; }
  .wfp-prod-principle__visual { min-height: 200px; order: -1; }
  .wfp-prod-series,
  .wfp-prod-series--reverse { grid-template-columns: 1fr; }
  .wfp-prod-series--reverse .wfp-prod-series__content,
  .wfp-prod-series--reverse .wfp-prod-series__visual { order: unset; }
  .wfp-prod-experience__grid,
  .wfp-prod-security__grid { grid-template-columns: repeat(2, 1fr); }
  .wfp-prod-hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .wfp-prod-hero__cards { height: auto; position: relative; top: auto; left: auto; transform: none; margin: 0 auto 20px; }
  .wfp-prod-hero__card { width: min(100%, 280px); height: auto; min-height: 165px; padding: 18px; }
  .wfp-prod-hero__content { padding-top: 24px; }
}
@media (max-width: 768px) {
  .wfp-prod-experience__grid,
  .wfp-prod-security__grid { grid-template-columns: 1fr; }
  .wfp-prod-hero__card--privacy,
  .wfp-prod-hero__card--business { margin-left: 0; left: auto; position: relative; }
  .wfp-prod-compare__table { font-size: 15px; }
  .wfp-prod-compare__table th,
  .wfp-prod-compare__table td { padding: 12px 10px; }
}
