:root {
  --v2-purple: #602fff;
  --v2-purple-dark: #3d1eb2;
  --v2-pink: #ff7ac6;
  --v2-ink: #141421;
  --v2-ink-soft: #2b2b3d;
  --v2-muted: #6a6a85;
  --v2-bg: #f6f4ff;
  --v2-white: #ffffff;
  --v2-card: #ffffff;
  --v2-border: rgba(20, 20, 33, 0.08);
  --v2-shadow: 0 20px 60px rgba(24, 12, 64, 0.16);
  --pf-primary: #602fff;
  --pf-primary-2: #7f09f4;
  --pf-ink: #0b1020;
  --pf-text: rgba(255, 255, 255, 0.88);
  --pf-muted: rgba(16, 16, 99, 0.62);
  --pf-card: rgba(255, 255, 255, 0.1);
  --pf-card2: rgba(255, 255, 255, 0.14);
  --pf-radius: 18px;
  --pf-shadow: 0 24px 60px rgba(8, 10, 30, 0.35);
  --pf-shadow-soft: 0 14px 34px rgba(10, 12, 40, 0.22);
  --pf-shadow-strong: 0 18px 44px rgba(10, 12, 40, 0.16);
  --pf-ring: 0 0 0 4px rgba(96, 47, 255, 0.25);
  --pf-border: rgba(16, 16, 99, 0.1);
  --pf-bg: rgba(255, 255, 255, 0.78);
  --pf-glass: blur(10px);
}

/* Base + utilities */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body.v2-page {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--v2-ink);
  background: radial-gradient(circle at top, #f3eaff, var(--v2-bg));
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#v2-main {
  flex: 1 0 auto;
}

.pf-footer {
  margin-top: auto;
}

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

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

.v2-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.pf-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.v2-skip {
  position: absolute;
  left: -999px;
  top: -999px;
  background: var(--v2-purple);
  color: var(--v2-white);
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 10;
}

.v2-skip:focus {
  left: 16px;
  top: 16px;
}

/* Global buttons */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.v2-btn-primary {
  background: var(--v2-purple);
  color: var(--v2-white);
  box-shadow: 0 16px 30px rgba(96, 47, 255, 0.35);
}

.v2-btn-ghost {
  border-color: rgba(96, 47, 255, 0.3);
  color: var(--v2-purple);
  background: var(--v2-white);
}

.v2-btn:hover {
  transform: translateY(-2px);
}

/* V2 hero layout (features/pricing) */
.v2-hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}

.v2-hero-compact {
  padding-bottom: 56px;
}

.v2-hero h1 {
  font-family: "IBM Plex Serif", serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin: 12px 0 16px;
}

.v2-hero p {
  color: var(--v2-ink-soft);
  max-width: 520px;
}

.v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(96, 47, 255, 0.12);
  color: var(--v2-purple);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Sections + common blocks */
.v2-section {
  padding: 72px 0;
}

.v2-section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.v2-section-head h2 {
  font-family: "IBM Plex Serif", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  margin-bottom: 12px;
}

.v2-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--v2-purple);
  color: var(--v2-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 30px rgba(96, 47, 255, 0.4);
  cursor: pointer;
  z-index: 40;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.v2-scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.v2-scroll-top .scrollto-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.v2-scroll-top i {
  font-size: 20px;
  line-height: 1;
}

.v2-scroll-top .flame {
  display: none;
}

/* Marketing header */
.pf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--pf-bg);
  background-color: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: var(--pf-glass);
  backdrop-filter: var(--pf-glass);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--pf-ink);
  will-change: transform;
}

.pf-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--pf-border);
  box-shadow: var(--pf-shadow);
}

.pf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  transition: height 0.18s ease;
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.pf-header.is-scrolled .pf-nav {
  height: 64px;
}

.pf-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--pf-ink);
}

.pf-header a {
  color: inherit;
}

/* iOS/Safari fix: avoid sticky + backdrop-filter text disappearance */
@supports (-webkit-touch-callout: none) {
  .pf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: rgba(255, 255, 255, 0.96);
  }

  .pf-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
  }

  #v2-main {
    padding-top: 78px;
  }

  .pf-header.is-scrolled ~ #v2-main {
    padding-top: 64px;
  }
}

.pf-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(16, 16, 99, 0.18);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.pf-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.pf-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.pf-brand-name strong {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.pf-brand-name span {
  font-size: 12px;
  color: rgba(16, 16, 99, 0.55);
  margin-top: 2px;
}

.pf-nav-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.pf-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pf-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(11, 16, 32, 0.78);
  font-weight: 700;
  font-size: 14px;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.pf-link:hover {
  background: rgba(96, 47, 255, 0.07);
  color: rgba(11, 16, 32, 0.92);
}

.pf-link.is-active {
  color: rgba(11, 16, 32, 0.95);
  background: rgba(96, 47, 255, 0.1);
}

.pf-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
}

.pf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
  user-select: none;
  white-space: nowrap;
  font-size: 13.5px;
}

.pf-btn:focus {
  outline: none;
  box-shadow: var(--pf-ring);
}

.pf-btn-ghost {
  color: rgba(11, 16, 32, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--pf-border);
}

.pf-btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
}

.pf-btn-primary {
  background: linear-gradient(135deg, #4b16ff, #7f09f4);
  color: #fff;
  box-shadow: 0 14px 32px rgba(96, 47, 255, 0.35);
}

.pf-header .pf-btn-primary {
  color: #fff;
}

.pf-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(75, 22, 255, 0.35);
}

.pf-btn-white {
  background: #fff;
  color: #1b1f3a;
  font-weight: 900;
  height: auto;
  min-height: 46px;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.pf-btn-white:hover {
  transform: translateY(-2px);
}

.pf-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--pf-border);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.pf-burger:hover {
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

.pf-burger:focus {
  outline: none;
  box-shadow: var(--pf-ring);
}

.pf-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(11, 16, 32, 0.72);
  border-radius: 2px;
  position: relative;
}

.pf-burger span::before,
.pf-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(11, 16, 32, 0.72);
  border-radius: 2px;
}

.pf-burger span::before {
  top: -6px;
}

.pf-burger span::after {
  top: 6px;
}

.pf-mobile {
  display: none;
  border-top: 1px solid rgba(16, 16, 99, 0.08);
  padding: 12px 0 16px;
}

.pf-mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(11, 16, 32, 0.86);
  font-weight: 800;
}

.pf-mobile a:hover {
  background: rgba(96, 47, 255, 0.07);
}

.pf-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px 0;
}

.pf-mobile-actions .pf-btn {
  width: 100%;
}

.pf-header.is-open .pf-mobile {
  display: block;
}

/* Hero banner */
.pf-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      900px 450px at 20% 10%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      700px 400px at 85% 20%,
      rgba(127, 9, 244, 0.35),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      var(--pf-primary) 0%,
      var(--pf-primary-2) 55%,
      #101063 100%
    );
  padding: 74px 0 0;
}

.pf-hero::before,
.pf-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.35;
  pointer-events: none;
}

.pf-hero::before {
  left: -160px;
  top: -160px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0) 60%
  );
}

.pf-hero::after {
  right: -220px;
  top: -120px;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0) 65%
  );
  opacity: 0.22;
}

.pf-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding-bottom: 56px;
}

.pf-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.pf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.pf-hero h1 {
  font-family: "IBM Plex Serif", serif;
  font-size: 44px;
  line-height: 1.08;
  margin: 14px 0 16px;
  letter-spacing: -0.02em;
}

.pf-hero-italic {
  font-style: italic;
  font-weight: 500;
}

.pf-hero p {
  max-width: 540px;
  color: var(--pf-text);
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.pf-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pf-hero .pf-btn-primary {
  background: rgba(255, 255, 255, 0.92);
  color: #1b1f3a;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.pf-hero .pf-btn-primary:hover {
  transform: translateY(-1px);
}

.pf-hero .pf-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.22);
}

.pf-hero .pf-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.pf-preview {
  position: relative;
  min-height: 360px;
}

.pf-device-laptop {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(0, 0, 0, 0.12)
  );
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 30px 80px rgba(5, 8, 24, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.pf-device-laptop::before {
  content: "";
  display: block;
  height: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.28));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.pf-device-laptop::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow:
    10px 0 0 #ffbd2e,
    20px 0 0 #27c93f;
  opacity: 0.85;
}

.pf-device-laptop .pf-screen {
  aspect-ratio: 16 / 10;
  background: #0f1022;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pf-device-laptop .pf-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-device-phone {
  position: absolute;
  right: -14px;
  bottom: -36px;
  width: 152px;
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(0, 0, 0, 0.2)
  );
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 60px rgba(5, 8, 24, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transform: rotate(2deg);
}

.pf-phone-float {
  animation: pfPhoneFloat 1.4s ease-out 0.35s both;
  animation-fill-mode: both;
}

@keyframes pfPhoneFloat {
  0% {
    transform: rotate(2deg) translateY(8px);
  }
  50% {
    transform: rotate(2deg) translateY(-4px);
  }
  100% {
    transform: rotate(2deg) translateY(0);
  }
}

.pf-device-phone::before {
  content: "";
  display: block;
  height: 26px;
  background: #10111a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-device-phone::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 74px;
  height: 12px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 0 0 10px 10px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.pf-device-phone .pf-screen::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.pf-device-phone .pf-screen {
  aspect-ratio: 9 / 16;
  background: #0f1022;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  position: relative;
}

.pf-device-phone .pf-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Layered waves */
/* ===== Layered waves (final) ===== */
.pf-waves {
  position: relative;
  width: 100%;
  height: 150px; /* more room like the mockup */
  margin-top: 12px;
  overflow: hidden; /* clip everything cleanly */
}

/* Base shared */
.pf-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
  pointer-events: none;
}

/* WHITE wave (front-most edge into the next section) */
.pf-wave-white {
  height: 120px;
  z-index: 3;
}
.pf-wave-white path {
  fill: #ffffff;
}

/* ACCENT wave (soft “light purple” band above the white) */
.pf-wave-accent {
  height: 120px;
  bottom: 28px; /* lift it more so it clearly shows above the white wave */
  z-index: 2;

  /* shift to the right + slightly stretch so it feels less predictable */
  transform: translateX(140px) scaleX(1.22);
  transform-origin: center;

  /* soften / glow like the mockup */
  filter: drop-shadow(0 -12px 26px rgba(255, 255, 255, 0.12));
}

/* Make it visibly “light purple” by using white overlay + blend mode */
.pf-wave-accent {
  mix-blend-mode: soft-light; /* gives the “light purple overlay” feel */
  opacity: 0.95;
}

.pf-wave-accent path {
  fill: rgba(
    255,
    255,
    255,
    0.22
  ); /* stronger than 0.10 so you can actually see it */
}

/* Mobile tuning */
@media (max-width: 560px) {
  .pf-waves {
    height: 130px;
  }
  .pf-wave-white {
    height: 105px;
  }
  .pf-wave-accent {
    height: 105px;
    bottom: 22px;
    transform: translateX(80px) scaleX(1.15);
  }
}

/* Trust strip */
.pf-trust {
  background: #fff;
  padding: 18px 0 26px;
}

.pf-trust-inner {
  margin-top: -38px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(10, 12, 40, 0.08);
  border: 1px solid rgba(16, 16, 99, 0.06);
  padding: 16px 18px;
}

.pf-trust-title {
  font-weight: 800;
  color: rgba(16, 16, 99, 0.85);
  text-align: center;
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.pf-trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pf-stat {
  background: rgba(96, 47, 255, 0.05);
  border: 1px solid rgba(96, 47, 255, 0.1);
  border-radius: 14px;
  padding: 12px 12px;
  text-align: center;
}

.pf-stat strong {
  display: block;
  font-size: 16px;
  color: rgba(16, 16, 99, 0.92);
}

.pf-stat span {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: rgba(16, 16, 99, 0.62);
}

/* Credibility strip (ACN) */
.pf-cred {
  background: #ffffff;
  padding: 18px 0 32px;
}

.pf-cred-inline {
  background: transparent;
  padding: 48px 0 0;
}

.pf-cred-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 16px 38px rgba(10, 12, 40, 0.08);
}

.pf-cred-badge {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  font-size: 14px;
  color: #602fff;
  background: rgba(96, 47, 255, 0.08);
  border: 1px solid rgba(96, 47, 255, 0.16);
  box-shadow: 0 12px 26px rgba(10, 12, 40, 0.08);
  overflow: hidden;
}

.pf-cred-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pf-cred-copy h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.92);
}

.pf-cred-copy p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.65);
}

@media (max-width: 560px) {
  .pf-cred-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pf-cred-badge {
    margin: 0 auto;
  }
}

/* Why choose section (gradient header + white body) */
.pf-why {
  background: #f6f7ff;
  padding: 56px 0 60px;
}

.pf-why-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}

.pf-why-head h2 {
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: rgba(16, 16, 99, 0.92);
}

.pf-why-head p {
  margin: 0;
  color: rgba(16, 16, 99, 0.62);
  font-size: 15.5px;
  line-height: 1.6;
}

.pf-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.pf-why-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 16px 38px rgba(10, 12, 40, 0.1);
  background: #fff;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.pf-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10, 12, 40, 0.14);
}

.pf-why-top {
  position: relative;
  padding: 18px 16px 16px;
  text-align: center;
  color: #fff;
}

.pf-why-top::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto -30%;
  height: 80%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(-10deg);
  opacity: 0.75;
  pointer-events: none;
}

.pf-why-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pf-why-icon svg {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.95);
}

.pf-why-top h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pf-why-body {
  padding: 14px 16px 16px;
  background: #ffffff;
  text-align: center;
}

.pf-why-body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(16, 16, 99, 0.7);
}

.pf-why-purple .pf-why-top {
  background: linear-gradient(135deg, #6a4cff 0%, #7f09f4 55%, #101063 120%);
}

.pf-why-sunset .pf-why-top {
  background: linear-gradient(135deg, #ff6aa7 0%, #ff8a4a 60%, #ffb35c 120%);
}

.pf-why-mint .pf-why-top {
  background: linear-gradient(135deg, #2ac8a5 0%, #52d66f 55%, #a7e55c 120%);
}

.pf-why-aqua .pf-why-top {
  background: linear-gradient(135deg, #2f8bff 0%, #21c7d9 60%, #6fe7bf 120%);
}

/* How it works section */
.pf-how {
  background: #ffffff;
  padding: 64px 0 68px;
}

.pf-how-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.pf-how-head h2 {
  font-size: 30px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.92);
}

.pf-how-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.pf-how-steps {
  position: relative;
  padding-left: 12px;
}

.pf-how-steps::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(96, 47, 255, 0.35),
    rgba(96, 47, 255, 0.05)
  );
}

.pf-step {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  position: relative;
}

.pf-step:last-child {
  margin-bottom: 0;
}

.pf-step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #602fff, #7f09f4);
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(96, 47, 255, 0.28);
  flex-shrink: 0;
}

.pf-step-content h3 {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.92);
}

.pf-step-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(16, 16, 99, 0.62);
}

.pf-how-visuals {
  position: relative;
  display: grid;
  gap: 16px;
}

.pf-how-card {
  border-radius: 18px;
  background: rgba(96, 47, 255, 0.06);
  border: 1px solid rgba(96, 47, 255, 0.12);
  box-shadow: 0 18px 42px rgba(10, 12, 40, 0.12);
  overflow: hidden;
}

.pf-how-card-small {
  width: 68%;
  margin-left: auto;
}

.pf-how-screen {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: rgba(16, 16, 99, 0.55);
  background:
    radial-gradient(
      600px 240px at 40% 30%,
      rgba(255, 255, 255, 0.55),
      transparent 55%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0.25)
    );
  overflow: hidden;
}

.pf-how-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-how-screen-4x3 {
  aspect-ratio: 4 / 3;
}

/* Features hero (new look) */
.pf-fhero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  color: rgba(16, 16, 99, 0.92);
  background:
    radial-gradient(
      900px 520px at 18% 10%,
      rgba(96, 47, 255, 0.22),
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      760px 460px at 82% 18%,
      rgba(127, 9, 244, 0.18),
      rgba(255, 255, 255, 0) 62%
    ),
    radial-gradient(
      520px 320px at 60% 80%,
      rgba(16, 16, 99, 0.06),
      rgba(255, 255, 255, 0) 58%
    ),
    linear-gradient(180deg, #f4f2ff 0%, #f6f7ff 100%);
}

.pf-fhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(96, 47, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(
    closest-side at 50% 25%,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
}

.pf-fhero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 56px;
}

.pf-fhero-grid > * {
  min-width: 0;
}

.pf-fhero-copy {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pf-fhero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(96, 47, 255, 0.14);
  box-shadow: 0 14px 30px rgba(10, 12, 40, 0.08);
  color: rgba(16, 16, 99, 0.78);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.pf-fhero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #602fff, #7f09f4);
  box-shadow: 0 0 0 4px rgba(96, 47, 255, 0.18);
}

.pf-fhero-copy h1 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: rgba(16, 16, 99, 0.95);
}

.pf-fhero-copy p {
  margin: 0 auto 18px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 16, 99, 0.62);
}

.pf-fhero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.pf-fhero-note {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(16, 16, 99, 0.52);
}

.pf-fhero-media {
  width: 100%;
  max-width: 1180px;
  margin: 8px auto 0;
}

.pf-fhero-frame {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 99, 0.1);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 28px 72px rgba(10, 12, 40, 0.16);
}

.pf-fhero-shot {
  aspect-ratio: 16 / 9;
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.5);
  background:
    radial-gradient(
      760px 320px at 35% 25%,
      rgba(255, 255, 255, 0.85),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(96, 47, 255, 0.14), rgba(96, 47, 255, 0.03));
  overflow: hidden;
}

.pf-fhero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-fhero-curve {
  display: block;
  width: 100%;
  height: 170px;
  margin-top: -70px;
}

.pf-fhero-curve path {
  fill: #f6f7ff;
  filter: drop-shadow(0 -12px 22px rgba(10, 12, 40, 0.1));
}

/* Feature section (improved, mockup-like) */
.pf-fsec {
  padding: 78px 0 84px;
}

.pf-fsec-alt {
  background: #f6f7ff;
}

.pf-fsec-grid {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(560px, 1fr);
  gap: 34px;
  align-items: center;
}

.pf-fsec-copy {
  max-width: 520px;
}

.pf-fsec-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(96, 47, 255, 0.14);
  box-shadow: 0 14px 30px rgba(10, 12, 40, 0.08);
  color: rgba(16, 16, 99, 0.78);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.pf-fsec-copy h2 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.95);
}

.pf-fsec-copy p {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(16, 16, 99, 0.62);
}

.pf-fsec-points {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
}

.pf-fsec-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(16, 16, 99, 0.82);
}

.pf-fsec-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #602fff;
  font-weight: 900;
}

/* Feature section: frameworks block */
.pf-frameworks {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 16, 99, 0.08);
}

.pf-frameworks-title {
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(16, 16, 99, 0.68);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pf-frameworks-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Feature section: chips */
.pf-chip {
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(16, 16, 99, 0.7);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 16, 99, 0.08);
}

/* Roles section */
.pf-roles {
  background: #ffffff;
  padding: 72px 0 78px;
}

.pf-roles-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.pf-roles-head h2 {
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: rgba(16, 16, 99, 0.92);
}

.pf-roles-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pf-role-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 99, 0.08);
  background: #fff;
  box-shadow: 0 16px 38px rgba(10, 12, 40, 0.1);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.pf-role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10, 12, 40, 0.14);
}

.pf-role-top {
  padding: 18px 16px 16px;
  text-align: center;
  color: #fff;
  position: relative;
}

.pf-role-top::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto -30%;
  height: 80%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(-10deg);
  opacity: 0.75;
  pointer-events: none;
}

.pf-role-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pf-role-icon svg {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.95);
}

.pf-role-top h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pf-role-body {
  padding: 14px 16px 16px;
  text-align: center;
}

.pf-role-body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(16, 16, 99, 0.7);
}

/* More distinct, non-overlapping gradients (different families) */
.pf-role-purple {
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 55%, #0b102a 120%);
}

.pf-role-sunset {
  background: linear-gradient(135deg, #f59e0b 0%, #f43f5e 60%, #7c2d12 120%);
}

.pf-role-mint {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 55%, #064e3b 120%);
}

.pf-role-aqua {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 60%, #3b0764 120%);
}

/* Devices section */
.pf-devices {
  background: #f6f7ff;
  padding: 72px 0 78px;
}

.pf-devices-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.pf-devices-head h2 {
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: rgba(16, 16, 99, 0.92);
}

.pf-devices-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pf-device-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 99, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(10, 12, 40, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pf-device-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(10, 12, 40, 0.16);
}

.pf-device-top {
  padding: 18px 18px 12px;
  text-align: left;
}

.pf-device-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(96, 47, 255, 0.1);
  border: 1px solid rgba(96, 47, 255, 0.16);
  color: rgba(96, 47, 255, 0.95);
  margin-bottom: 10px;
}

.pf-device-icon svg {
  width: 30px;
  height: 30px;
}

.pf-device-top h3 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.92);
}

.pf-device-top p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(16, 16, 99, 0.62);
}

/* SAME HEIGHT preview box for all cards */
.pf-device-frame {
  margin: 12px 18px 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 99, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 46px rgba(10, 12, 40, 0.1);
  height: clamp(240px, 22vw, 320px);
  position: relative;
}

.pf-device-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 12px;
  overflow: hidden;
  background: #f6f7ff;
  border-radius: 12px;
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 14px 30px rgba(10, 12, 40, 0.12);
}

.pf-device-shot img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(10, 12, 40, 0.16);
}

.pf-phone .pf-device-shot img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pf-phone .pf-device-shot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Security section */
.pf-security {
  background: #ffffff;
  padding: 72px 0 78px;
}

.pf-security-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.pf-security-head h2 {
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: rgba(16, 16, 99, 0.92);
}

.pf-security-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pf-sec-card {
  border-radius: 18px;
  padding: 16px 16px;
  background: rgba(96, 47, 255, 0.04);
  border: 1px solid rgba(96, 47, 255, 0.1);
  box-shadow: 0 16px 38px rgba(10, 12, 40, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pf-sec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(10, 12, 40, 0.12);
}

.pf-sec-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(96, 47, 255, 0.14);
  color: rgba(96, 47, 255, 0.95);
  margin-bottom: 10px;
}

.pf-sec-icon svg {
  width: 30px;
  height: 30px;
}

.pf-sec-card h3 {
  margin: 0 0 6px;
  font-size: 14.5px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.92);
}

.pf-sec-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(16, 16, 99, 0.62);
}

.pf-fsec-white {
  background: #ffffff;
}

.pf-fsec-swap {
  grid-template-columns: minmax(560px, 1fr) minmax(420px, 520px);
}

.pf-fsec-swap .pf-fsec-copy {
  margin-left: auto;
}

.pf-fsec-media {
  position: relative;
}

.pf-shot-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 99, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 72px rgba(10, 12, 40, 0.16);
  transform: translateY(6px) scale(0.99);
  transition:
    transform 0.7s ease,
    box-shadow 0.7s ease;
}

.pf-fsec-media.is-in .pf-shot-frame {
  transform: translateY(0) scale(1);
}

.pf-shot {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.5);
  background:
    radial-gradient(
      760px 320px at 35% 25%,
      rgba(255, 255, 255, 0.88),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(96, 47, 255, 0.16), rgba(96, 47, 255, 0.05));
  overflow: hidden;
}

.pf-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pf-fsec-media,
.pf-shot-frame,
.pf-shot {
  max-width: 100%;
}

/* Pricing teaser */
.pf-pricing-teaser {
  background: #f6f7ff;
  padding: 56px 0;
}

.pf-pricing-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  background: #fff;
  border-radius: 22px;
  padding: 32px 32px;
  box-shadow: 0 22px 50px rgba(10, 12, 40, 0.12);
  border: 1px solid rgba(16, 16, 99, 0.08);
}

.pf-pricing-copy h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.92);
}

.pf-pricing-copy p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-pricing-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.pf-pricing-points li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(16, 16, 99, 0.8);
}

.pf-pricing-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #602fff;
  font-weight: 900;
}

.pf-pricing-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pf-pricing-note {
  font-size: 13px;
  color: rgba(16, 16, 99, 0.55);
}

.pf-pricing-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-pricing-badge {
  background: linear-gradient(135deg, #602fff, #7f09f4);
  color: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 20px 44px rgba(96, 47, 255, 0.35);
}

.pf-pricing-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.pf-pricing-badge span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.9;
}

/* Pricing hero + calculator */
.pf-price-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 84px;
  background:
    radial-gradient(
      900px 520px at 20% 12%,
      rgba(96, 47, 255, 0.2),
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      760px 420px at 85% 18%,
      rgba(127, 9, 244, 0.14),
      rgba(255, 255, 255, 0) 62%
    ),
    linear-gradient(180deg, #f4f2ff 0%, #ffffff 55%, #f6f7ff 100%);
}

.pf-price-grid {
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(520px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pf-price-copy {
  align-self: center;
  transform: translateY(-20px) !important;
  padding-bottom: 10px;
}

.pf-price-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(96, 47, 255, 0.14);
  box-shadow: 0 14px 30px rgba(10, 12, 40, 0.08);
  color: rgba(16, 16, 99, 0.78);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.pf-price-copy h1 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(16, 16, 99, 0.96);
}

.pf-price-sub {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 16, 99, 0.62);
}

.pf-price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
}

.pf-badge {
  font-size: 12.5px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.72);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(16, 16, 99, 0.08);
}

.pf-price-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pf-price-actions .pf-btn-primary {
  background: rgba(96, 47, 255, 0.95);
  color: #fff;
  box-shadow: 0 16px 36px rgba(10, 12, 40, 0.18);
}

.pf-price-actions .pf-btn-primary:hover {
  transform: translateY(-1px);
}

.pf-price-actions .pf-btn-ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(96, 47, 255, 0.18);
  color: rgba(16, 16, 99, 0.86);
}

.pf-price-actions .pf-btn-ghost:hover {
  transform: translateY(-1px);
}

.pf-price-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(16, 16, 99, 0.55);
}

.pf-inc {
  background: #ffffff;
  padding: 72px 0 78px;
}

.pf-inc-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.pf-inc-head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.92);
}

.pf-inc-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pf-inc-card {
  border-radius: 20px;
  padding: 16px 16px 16px;
  background: rgba(96, 47, 255, 0.04);
  border: 1px solid rgba(96, 47, 255, 0.1);
  box-shadow: 0 16px 38px rgba(10, 12, 40, 0.08);
}

.pf-inc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(96, 47, 255, 0.14);
  color: rgba(96, 47, 255, 0.95);
  box-shadow: 0 12px 26px rgba(10, 12, 40, 0.08);
  margin-bottom: 10px;
}

.pf-inc-icon svg {
  width: 30px;
  height: 30px;
}

.pf-inc-card h3 {
  margin: 0 0 6px;
  font-size: 14.5px;
  font-weight: 1000;
  color: rgba(16, 16, 99, 0.92);
}

.pf-inc-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(16, 16, 99, 0.62);
}

/* Billing strip */
.pf-billing {
  background: #f6f7ff;
  padding: 72px 0 78px;
}

.pf-billing-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.pf-billing-head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.92);
}

.pf-billing-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-billing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pf-bill-card {
  border-radius: 20px;
  padding: 16px 16px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 18px 44px rgba(10, 12, 40, 0.1);
}

.pf-bill-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(96, 47, 255, 0.1);
  border: 1px solid rgba(96, 47, 255, 0.16);
  color: rgba(96, 47, 255, 0.95);
  box-shadow: 0 12px 26px rgba(10, 12, 40, 0.08);
  margin-bottom: 10px;
}

.pf-bill-icon svg {
  width: 30px;
  height: 30px;
}

.pf-bill-card h3 {
  margin: 0 0 6px;
  font-size: 14.5px;
  font-weight: 1000;
  color: rgba(16, 16, 99, 0.92);
}

.pf-bill-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(16, 16, 99, 0.62);
}

/* FAQ section */
.pf-faq {
  background: #ffffff;
  padding: 72px 0 78px;
}

.pf-faq-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.pf-faq-head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.92);
}

.pf-faq-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.pf-faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 16, 99, 0.1);
  box-shadow: 0 12px 34px rgba(10, 12, 40, 0.08);
  overflow: hidden;
}

.pf-faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
  font-size: 14.5px;
  color: rgba(16, 16, 99, 0.9);
  list-style: none;
  position: relative;
}

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

.pf-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: rgba(96, 47, 255, 0.9);
}

.pf-faq-item[open] summary::after {
  content: "–";
}

/* FAQ answer text + animation */
.pf-faq-item p {
  margin: 0;
  padding: 0 18px 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease,
    padding-bottom 0.35s ease;
  will-change: max-height, opacity;
}

.pf-faq-item[open] p {
  max-height: 520px;
  opacity: 1;
  padding-bottom: 16px;
}

/* Pricing CTA band */
.pf-price-cta {
  position: relative;
  padding: 74px 0 80px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(
      900px 520px at 18% 10%,
      rgba(255, 255, 255, 0.16),
      transparent 55%
    ),
    radial-gradient(
      760px 420px at 85% 18%,
      rgba(127, 9, 244, 0.34),
      transparent 62%
    ),
    linear-gradient(135deg, #602fff 0%, #7f09f4 55%, #101063 100%);
}

.pf-price-cta::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -200px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0) 60%
  );
  filter: blur(34px);
  opacity: 0.32;
  pointer-events: none;
}

.pf-price-cta::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0) 65%
  );
  filter: blur(34px);
  opacity: 0.22;
  pointer-events: none;
}

.pf-price-cta-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pf-price-cta-copy h2 {
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.pf-price-cta-copy p {
  margin: 0 auto 18px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.pf-price-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pf-price-cta .pf-btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #1b1f3a;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  padding: 14px 26px;
  font-size: 15px;
}

.pf-price-cta .pf-btn-primary:hover {
  transform: translateY(-1px);
}

.pf-price-cta .pf-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.24);
}

.pf-price-cta .pf-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.pf-price-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.pf-price-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 99, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(10, 12, 40, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pf-price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(16, 16, 99, 0.08);
  background:
    radial-gradient(
      600px 220px at 30% 20%,
      rgba(96, 47, 255, 0.16),
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.7));
}

.pf-price-card-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(16, 16, 99, 0.86);
  text-transform: uppercase;
}

.pf-price-card-sub {
  margin-top: 4px;
  font-size: 13.5px;
  color: rgba(16, 16, 99, 0.6);
}

.pf-price-pill {
  font-size: 12.5px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.72);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 16, 99, 0.08);
  white-space: nowrap;
}

.pf-price-input {
  padding: 16px 18px 12px;
}

.pf-price-input label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.78);
  margin: 0 0 10px;
}

.pf-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pf-number {
  width: 120px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 99, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.9);
  outline: none;
  box-shadow: 0 10px 22px rgba(10, 12, 40, 0.06);
}

.pf-number:focus {
  border-color: rgba(96, 47, 255, 0.35);
  box-shadow: 0 0 0 5px rgba(96, 47, 255, 0.14);
}

.pf-minihelp {
  font-size: 12.5px;
  color: rgba(16, 16, 99, 0.55);
}

.pf-range {
  width: 100%;
  accent-color: #602fff;
}

.pf-price-results {
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(16, 16, 99, 0.06);
}

.pf-result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(96, 47, 255, 0.06);
  border: 1px solid rgba(96, 47, 255, 0.12);
}

.pf-result-label {
  font-size: 13px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.72);
}

.pf-result-value {
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.94);
}

.pf-split {
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(16, 16, 99, 0.08);
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.pf-split-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(16, 16, 99, 0.7);
  border-top: 1px solid rgba(16, 16, 99, 0.06);
}

.pf-split-row:first-child {
  border-top: 0;
}

.pf-hint {
  margin-top: 12px;
  font-size: 12.8px;
  color: rgba(16, 16, 99, 0.56);
}

.pf-price-examples {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(16, 16, 99, 0.06);
}

.pf-ex-title {
  font-size: 12.5px;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.pf-ex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pf-ex {
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 16, 99, 0.08);
}

.pf-ex strong {
  display: block;
  font-size: 18px;
  font-weight: 1000;
  color: rgba(16, 16, 99, 0.92);
}

.pf-ex span {
  display: block;
  margin-top: 1px;
  font-size: 12px;
  color: rgba(16, 16, 99, 0.58);
}

.pf-ex em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-weight: 1000;
  color: rgba(96, 47, 255, 0.95);
}

/* CTA band */
.pf-cta {
  padding: 72px 0;
  background:
    radial-gradient(
      900px 380px at 20% 0%,
      rgba(255, 255, 255, 0.22),
      transparent 60%
    ),
    linear-gradient(135deg, #602fff, #7f09f4, #101063);
  color: #fff;
}

.pf-cta-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.pf-cta-box h2 {
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.pf-cta-box p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
  opacity: 0.92;
}

.pf-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pf-cta-bounce {
  display: inline-flex;
  animation: pfCtaBounce 1s ease-out 0.6s both;
  transform-origin: center;
}

.pf-cta-note {
  font-size: 13px;
  opacity: 0.8;
}

@keyframes pfCtaBounce {
  0% {
    transform: scale(0.9);
  }
  45% {
    transform: scale(1.06);
  }
  70% {
    transform: scale(0.985);
  }
  100% {
    transform: scale(1);
  }
}

/* CTA band (features page) */
.pf-cta-feature {
  position: relative;
  padding: 72px 0 78px;
  color: #fff;
  background:
    radial-gradient(
      900px 420px at 20% 10%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      700px 360px at 85% 20%,
      rgba(127, 9, 244, 0.35),
      transparent 60%
    ),
    linear-gradient(135deg, #602fff 0%, #7f09f4 55%, #101063 100%);
  overflow: hidden;
}

.pf-cta-feature::before {
  content: "";
  position: absolute;
  inset: auto;
  width: 520px;
  height: 520px;
  left: -160px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0) 60%
  );
  filter: blur(30px);
  opacity: 0.35;
  pointer-events: none;
}

.pf-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.pf-cta-copy h2 {
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.pf-cta-copy p {
  margin: 0 auto 18px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.pf-cta-feature .pf-cta-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.pf-cta-feature .pf-btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #1b1f3a;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  padding: 14px 26px;
  font-size: 15px;
}

.pf-cta-feature .pf-btn-primary:hover {
  transform: translateY(-1px);
}

.pf-cta-feature .pf-cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

/* Footer */
.pf-footer {
  background: #0f1035;
  color: rgba(255, 255, 255, 0.85);
  padding: 52px 0 32px;
}

.pf-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(5, minmax(120px, 1fr));
  gap: 18px;
}

.pf-footer-brand p {
  margin: 8px 0 0;
  font-size: 14px;
  opacity: 0.75;
}

.pf-footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  box-shadow: 0 12px 26px rgba(16, 16, 99, 0.2);
}

.pf-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.pf-footer-links h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
}

.pf-footer-links a {
  display: block;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.pf-footer-links a:hover {
  color: #fff;
}

.pf-footer-badges {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.pf-footer-badges img {
  width: 140px;
  height: auto;
  display: block;
}

.pf-footer-badges-stacked {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.pf-footer-badges-stacked img {
  width: 140px;
  height: auto;
  display: block;
}

.pf-footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  opacity: 0.6;
  text-align: center;
}

/* V2 homepage sections */

.v2-showcase-item {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  margin-bottom: 32px;
}

.v2-showcase-reverse {
  direction: rtl;
}

.v2-showcase-reverse > * {
  direction: ltr;
}

.v2-showcase-visual {
  background: var(--v2-white);
  border-radius: 22px;
  border: 1px solid var(--v2-border);
  box-shadow: 0 18px 30px rgba(16, 8, 32, 0.12);
  padding: 28px;
  min-height: 220px;
  overflow: hidden;
}

.v2-placeholder {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    rgba(96, 47, 255, 0.18),
    rgba(255, 122, 198, 0.16)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-purple-dark);
  font-weight: 600;
}

.v2-showcase-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 16px 34px rgba(10, 12, 40, 0.14);
}

.v2-showcase-copy h3 {
  margin-top: 0;
}

.v2-love {
  background: #f6f7ff;
  padding-bottom: 56px;
}

.v2-love-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.v2-love-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 16px 32px rgba(16, 16, 99, 0.08);
  font-style: italic;
  color: rgba(16, 16, 99, 0.78);
  margin: 0;
}

.v2-love-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    140px 80px at 20% 0%,
    rgba(96, 47, 255, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

/* START TRIAL PAGE */
.pf-trial-page .pf-trial-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(760px 420px at 85% 18%, rgba(127, 9, 244, 0.18), transparent 62%),
    linear-gradient(135deg, #101063 0%, #602fff 45%, #7f09f4 100%);
  color: #fff;
}

.pf-trial-page .pf-trial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.05) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.pf-trial-page .pf-trial-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.pf-trial-page .pf-trial-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.pf-trial-page .pf-trial-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.98);
}

.pf-trial-page .pf-trial-copy p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
}

.pf-trial-page .pf-trial-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.pf-trial-page .pf-trial-check {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 10px;
  font-weight: 900;
}

.pf-trial-page .pf-trial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pf-trial-page .pf-btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(11, 16, 32, 0.92);
}

.pf-trial-page .pf-btn-ghost:hover {
  background: rgba(255, 255, 255, 1);
}

.pf-trial-page .pf-trial-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
}

.pf-trial-page .pf-trial-trust span {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.pf-trial-page .pf-trial-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.pf-trial-page .pf-trial-preview {
  position: relative;
  min-height: 360px;
}

.pf-trial-page .pf-trial-section {
  padding: 64px 0 70px;
  background: #ffffff;
}

.pf-trial-page .pf-trial-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0)
  );
}

.pf-trial-page .pf-trial-alt {
  background: #f6f7ff;
}

.pf-trial-page .pf-trial-head {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.pf-trial-page .pf-trial-head h2 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.92);
}

.pf-trial-page .pf-trial-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-trial-page .pf-trial-pill-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.pf-trial-page .pf-trial-pill {
  display: flex;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 14px 30px rgba(10, 12, 40, 0.08);
  min-height: 86px;
}

.pf-trial-page .pf-trial-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(96, 47, 255, 0.08);
  border: 1px solid rgba(96, 47, 255, 0.16);
}

.pf-trial-page .pf-trial-pill strong {
  display: block;
  font-size: 14px;
  color: rgba(16, 16, 99, 0.92);
}

.pf-trial-page .pf-trial-pill span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(16, 16, 99, 0.62);
}

.pf-trial-page .pf-trial-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pf-trial-page .pf-trial-path {
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 16, 99, 0.1);
  box-shadow: 0 18px 44px rgba(10, 12, 40, 0.12);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.pf-trial-page .pf-trial-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(96, 47, 255, 0.12);
  border: 1px solid rgba(96, 47, 255, 0.18);
  color: rgba(16, 16, 99, 0.82);
  font-weight: 800;
  font-size: 12.5px;
}

.pf-trial-page .pf-trial-tag-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(16, 16, 99, 0.12);
}

.pf-trial-page .pf-trial-path h3 {
  margin: 10px 0 6px;
  font-size: 18px;
  color: rgba(16, 16, 99, 0.92);
}

.pf-trial-page .pf-trial-path p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.pf-trial-page .pf-trial-path-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pf-trial-page .pf-trial-foot {
  font-size: 12.5px;
  color: rgba(16, 16, 99, 0.6);
  font-weight: 700;
}

.pf-trial-page .pf-trial-steps {
  display: grid;
  gap: 12px;
}

.pf-trial-page .pf-trial-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(96, 47, 255, 0.06);
  border: 1px solid rgba(96, 47, 255, 0.12);
}

.pf-trial-page .pf-trial-step-num {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #602fff, #7f09f4);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(96, 47, 255, 0.28);
}

.pf-trial-page .pf-trial-step strong {
  display: block;
  color: rgba(16, 16, 99, 0.92);
  margin-bottom: 4px;
}

.pf-trial-page .pf-trial-step span {
  color: rgba(16, 16, 99, 0.62);
  font-size: 14px;
}

.pf-trial-page .pf-trial-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pf-trial-page .pf-trial-shot {
  margin: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 14px 30px rgba(10, 12, 40, 0.1);
  overflow: hidden;
}

.pf-trial-page .pf-trial-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.pf-trial-page .pf-trial-shot figcaption {
  padding: 10px 12px;
  font-weight: 700;
  font-size: 13.5px;
  color: rgba(16, 16, 99, 0.7);
}

.pf-trial-page .pf-trial-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pf-trial-page .pf-trial-quote,
.pf-trial-page .pf-trial-trust-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 16px 36px rgba(10, 12, 40, 0.1);
  padding: 18px;
}

.pf-trial-page .pf-trial-quote-mark {
  font-size: 32px;
  line-height: 1;
  color: rgba(96, 47, 255, 0.6);
}

.pf-trial-page .pf-trial-quote p {
  margin: 10px 0 16px;
  font-size: 15px;
  color: rgba(16, 16, 99, 0.72);
}

.pf-trial-page .pf-trial-quote-by {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pf-trial-page .pf-trial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  background: linear-gradient(135deg, rgba(96, 47, 255, 0.22), rgba(127, 9, 244, 0.18));
  color: rgba(16, 16, 99, 0.95);
  border: 1px solid rgba(96, 47, 255, 0.22);
  box-shadow: 0 10px 22px rgba(96, 47, 255, 0.18);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.pf-trial-page .pf-trial-quote-by div span {
  display: block;
  font-size: 12.5px;
  color: rgba(16, 16, 99, 0.6);
}

.pf-trial-page .pf-trial-trust-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: rgba(16, 16, 99, 0.92);
}

.pf-trial-page .pf-trial-trust-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
  color: rgba(16, 16, 99, 0.7);
  font-size: 14px;
}

.pf-trial-page .pf-trial-faq {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto 18px;
}

.pf-trial-page .pf-trial-faq-item {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(16, 16, 99, 0.1);
  box-shadow: 0 12px 30px rgba(10, 12, 40, 0.08);
  padding: 10px 12px;
}

.pf-trial-page .pf-trial-faq-item summary {
  cursor: pointer;
  font-weight: 900;
  color: rgba(16, 16, 99, 0.9);
  list-style: none;
}

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

.pf-trial-page .pf-trial-faq-item p {
  margin: 10px 0 0;
  color: rgba(16, 16, 99, 0.62);
  line-height: 1.6;
  font-size: 14px;
}

.pf-trial-page .pf-trial-bottom {
  padding: 60px 0 74px;
  background:
    radial-gradient(900px 380px at 20% 0%, rgba(255, 255, 255, 0.22), transparent 60%),
    linear-gradient(135deg, #602fff, #7f09f4, #101063);
  color: #fff;
}

.pf-trial-page .pf-trial-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pf-trial-page .pf-trial-bottom-inner h2 {
  margin: 0 0 6px;
  font-size: 28px;
}

.pf-trial-page .pf-trial-bottom-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .pf-trial-page .pf-trial-hero-grid,
  .pf-trial-page .pf-trial-split,
  .pf-trial-page .pf-trial-path-grid {
    grid-template-columns: 1fr;
  }

  .pf-trial-page .pf-trial-pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-trial-page .pf-trial-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pf-trial-page .pf-trial-hero {
    padding: 56px 0 46px;
  }

  .pf-trial-page .pf-trial-copy h1 {
    font-size: 30px;
  }

  .pf-trial-page .pf-trial-pill-grid {
    grid-template-columns: 1fr;
  }

  .pf-trial-page .pf-trial-actions {
    width: 100%;
  }

  .pf-trial-page .pf-trial-actions .pf-btn {
    width: 100%;
  }
}

/* =========================
   CONTACT (v2)
   ========================= */
.v2-contact-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      900px 520px at 18% 12%,
      rgba(255, 255, 255, 0.16),
      transparent 55%
    ),
    radial-gradient(
      760px 420px at 85% 18%,
      rgba(127, 9, 244, 0.18),
      transparent 62%
    ),
    linear-gradient(135deg, #101063 0%, #602fff 45%, #7f09f4 100%);
  color: #fff;
  padding-bottom: 92px;
}

.v2-contact-hero-inner {
  padding-bottom: 28px;
}

.v2-contact-hero .v2-pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}

.v2-contact-hero h1 {
  color: rgba(255, 255, 255, 0.98);
}

.v2-contact-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.v2-contact-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 140px;
  margin: 0;
  display: block;
  pointer-events: none;
}

.v2-contact {
  background: #f6f7ff;
  padding: 8px 0 78px;
  margin-top: -28px;
  position: relative;
  z-index: 1;
}

.v2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 18px;
  align-items: start;
}

.v2-contact-card,
.v2-contact-formcard {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 16, 99, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(10, 12, 40, 0.1);
}

.v2-contact-card {
  padding: 16px 16px;
  margin-bottom: 12px;
}

.v2-contact-card-soft {
  background:
    radial-gradient(
      600px 280px at 20% 10%,
      rgba(255, 255, 255, 0.9),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(96, 47, 255, 0.08), rgba(255, 255, 255, 0.92));
}

.v2-contact-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.92);
}

.v2-contact-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 1000;
  color: rgba(16, 16, 99, 0.92);
}

.v2-contact-lead {
  margin: 0 0 12px;
  color: rgba(16, 16, 99, 0.62);
  font-size: 14.5px;
  line-height: 1.65;
}

.v2-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.v2-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12.5px;
  color: rgba(16, 16, 99, 0.7);
  background: rgba(96, 47, 255, 0.08);
  border: 1px solid rgba(96, 47, 255, 0.14);
}

.v2-contact-actions {
  display: grid;
  gap: 10px;
}

.v2-muted {
  opacity: 0.75;
  font-weight: 800;
  margin-left: 6px;
}

.v2-contact-mini {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(96, 47, 255, 0.07);
  border: 1px solid rgba(96, 47, 255, 0.14);
}

.v2-contact-mini-title {
  font-weight: 1000;
  color: rgba(16, 16, 99, 0.88);
  margin-bottom: 4px;
  font-size: 13px;
}

.v2-contact-mini-text {
  color: rgba(16, 16, 99, 0.62);
  font-size: 13.5px;
  line-height: 1.55;
}

.v2-contact-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(16, 16, 99, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.v2-contact-list li {
  margin-bottom: 10px;
}

.v2-contact-formcard {
  overflow: hidden;
}

.v2-contact-formhead {
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(16, 16, 99, 0.08);
  background:
    radial-gradient(
      700px 260px at 15% 0%,
      rgba(255, 255, 255, 0.92),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(96, 47, 255, 0.08), rgba(255, 255, 255, 0.92));
}

.v2-contact-formhead h2 {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.92);
}

.v2-contact-formhead p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.v2-form {
  padding: 16px 18px 18px;
}

.v2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.v2-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.v2-field label {
  font-weight: 900;
  font-size: 13px;
  color: rgba(16, 16, 99, 0.82);
}

.v2-field input,
.v2-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 99, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  font-size: 14.5px;
  color: rgba(16, 16, 99, 0.82);
  outline: none;
}

.v2-field textarea {
  resize: vertical;
  min-height: 140px;
}

.v2-field input:focus,
.v2-field textarea:focus {
  border-color: rgba(96, 47, 255, 0.35);
  box-shadow: 0 0 0 4px rgba(96, 47, 255, 0.12);
}

.v2-field.is-error input,
.v2-field.is-error textarea {
  border-color: rgba(201, 58, 58, 0.7);
  box-shadow: 0 0 0 3px rgba(201, 58, 58, 0.12);
}

.v2-field-hint {
  font-size: 12.5px;
  color: rgba(16, 16, 99, 0.55);
  margin-top: 2px;
}

.v2-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 14px;
  font-weight: 800;
  color: rgba(16, 16, 99, 0.7);
  font-size: 13.5px;
}

.v2-check input {
  width: 18px;
  height: 18px;
  accent-color: rgba(96, 47, 255, 0.95);
}

.v2-btn-lg {
  padding: 13px 16px;
  font-size: 14px;
}

.v2-btn-block {
  width: 100%;
}

.v2-form-foot {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(16, 16, 99, 0.55);
  line-height: 1.5;
}

.v2-form-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 4px 0 6px;
}

.v2-form-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 4px 0 10px;
}

.v2-form-inline .v2-check {
  margin: 0;
}

.v2-form-inline .v2-form-status {
  margin: 0;
  justify-content: flex-end;
  text-align: right;
}

.v2-form-loading {
  display: none;
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(16, 16, 99, 0.65);
}

.v2-form-success {
  font-size: 12.5px;
  font-weight: 900;
  color: #1f7a3b;
}

.v2-form-error {
  font-size: 12.5px;
  font-weight: 800;
  color: #c93a3a;
  margin-top: 4px;
}

.v2-form-errors {
  margin-bottom: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(201, 58, 58, 0.22);
  background: rgba(201, 58, 58, 0.08);
  font-size: 12.5px;
  font-weight: 800;
  color: #c93a3a;
}

.v2-form-errors:empty {
  padding: 0;
  border: 0;
  background: transparent;
}

.v2-form-errors ul {
  margin: 0;
  padding-left: 18px;
}

.v2-form-errors li {
  margin: 4px 0;
}

@media (max-width: 980px) {
  .v2-contact-grid {
    grid-template-columns: 1fr;
  }

  .v2-contact-right {
    order: -1;
  }
}

@media (max-width: 560px) {
  .v2-form-row {
    grid-template-columns: 1fr;
  }

  .v2-contact {
    padding-bottom: 58px;
  }
}

.grecaptcha-badge {
  position: fixed !important;
  bottom: 110px !important;
  right: 16px !important;
  z-index: 2147483647 !important;
  width: 70px !important;
  height: 60px !important;
  overflow: hidden !important;
  transition:
    width 0.25s ease,
    height 0.25s ease;
  transform: scale(0.9);
  transform-origin: bottom right;
}

.grecaptcha-badge:hover {
  width: 256px !important;
  height: 60px !important;
}

/* Prevent transformed ancestors from breaking recaptcha fixed positioning */
.v2-contact-page .v2-reveal,
.v2-contact-page .v2-reveal.is-visible {
  transform: none;
}

/* =========================
   LEGAL PAGES (v2)
   ========================= */
.v2-legal-page {
  background: #f6f7ff;
}

.v2-legal-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 0;
  margin-bottom: 96px;
  text-align: center;
  background:
    radial-gradient(
      900px 520px at 16% 12%,
      rgba(255, 255, 255, 0.18),
      transparent 56%
    ),
    radial-gradient(
      760px 420px at 86% 18%,
      rgba(127, 9, 244, 0.18),
      transparent 62%
    ),
    linear-gradient(135deg, #101063 0%, #602fff 48%, #7f09f4 100%);
  color: #fff;
}

.v2-legal-hero h1 {
  margin: 10px 0 6px;
  font-size: 36px;
  letter-spacing: -0.02em;
}

.v2-legal-meta {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.v2-legal-wave {
  display: block;
  width: 100%;
  height: 110px;
  margin-top: 14px;
}

.v2-section.v2-legal {
  background: #f6f7ff;
  padding: 0 0 76px;
}

.v2-legal-card {
  max-width: 920px;
  margin: -28px auto 0;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 28px 28px 32px;
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 18px 44px rgba(10, 12, 40, 0.1);
}

.v2-legal-lead {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.68;
  color: rgba(16, 16, 99, 0.78);
}

.v2-legal-callout {
  margin: 16px 0 22px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(96, 47, 255, 0.18);
  background: rgba(96, 47, 255, 0.06);
  color: rgba(16, 16, 99, 0.82);
  line-height: 1.62;
}

.v2-legal-callout strong {
  font-weight: 1000;
  color: #101063;
}

.v2-legal-card h2 {
  margin: 26px 0 10px;
  font-size: 18px;
  font-weight: 1000;
  color: #101063;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 16, 99, 0.08);
}

.v2-legal-card h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.v2-legal-subheading {
  margin: 14px 0 8px;
  font-size: 15.5px;
  font-weight: 950;
  color: rgba(16, 16, 99, 0.88);
}

.v2-legal-card p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(16, 16, 99, 0.74);
}

.v2-legal-card ul {
  margin: 10px 0 16px 18px;
  padding: 0;
  color: rgba(16, 16, 99, 0.74);
  line-height: 1.7;
  font-size: 14.5px;
}

.v2-legal-card li {
  margin-bottom: 8px;
}

.v2-legal-muted {
  color: rgba(16, 16, 99, 0.55);
  font-size: 13.5px;
}

.v2-legal-footer-note {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 16, 99, 0.08);
  color: rgba(16, 16, 99, 0.55);
  font-size: 13.5px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .v2-legal-hero {
    padding: 64px 0 0;
    margin-bottom: 20px;
  }

  .v2-legal-hero h1 {
    font-size: 28px;
  }

  .v2-legal-card {
    padding: 20px;
    margin-top: -22px;
  }
}

/* =========================
   NEWS INDEX (v2) — FIXED
   Scope: .v2-news-page
   ========================= */
.v2-news-page .v2-section.v2-news {
  background: #f6f7ff;
  padding: 46px 0 72px;
}

.v2-news-page .v2-news-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 22px;
}

.v2-news-page .v2-news-head h2 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: rgba(16, 16, 99, 0.92);
}

.v2-news-page .v2-news-head p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(16, 16, 99, 0.62);
}

.v2-news-page .v2-news-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.v2-news-page .v2-news-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 16, 99, 0.1);
  box-shadow: 0 18px 44px rgba(10, 12, 40, 0.1);
  transform: translateY(0);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.v2-news-page .v2-news-card a {
  text-decoration: none;
}

.v2-news-page .v2-news-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.v2-news-page .v2-news-card-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.v2-news-page .v2-news-card-inner a {
  pointer-events: auto;
}

.v2-news-page .v2-news-card-inner > * {
  min-width: 0;
}

.v2-news-page .v2-news-media {
  display: grid !important;
  place-items: center;
  width: 100% !important;
  max-width: 100% !important;
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(96, 47, 255, 0.06);
  border: 1px solid rgba(16, 16, 99, 0.08);
  position: relative;
  box-sizing: border-box;
}

.v2-news-page .v2-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.v2-news-page .v2-news-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02));
  pointer-events: none;
}

.v2-news-page .v2-news-body {
  min-width: 0;
  padding: 2px 6px 2px 0;
  display: grid;
  align-content: center;
}

.v2-news-page .v2-news-title {
  margin: 0 0 6px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(16, 16, 99, 0.92);
}

.v2-news-page .v2-news-title a {
  color: inherit;
}

.v2-news-page .v2-news-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(16, 16, 99, 0.6);
  font-size: 13px;
  font-weight: 800;
}

.v2-news-page .v2-news-cal {
  margin-right: 6px;
  opacity: 0.9;
}

.v2-news-page .v2-news-intro {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(16, 16, 99, 0.62);
  max-width: 740px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-news-page .v2-news-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.v2-news-page .v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 13.5px;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.v2-news-page .v2-btn-primary {
  background: rgba(96, 47, 255, 0.95);
  color: #fff;
  box-shadow: 0 14px 30px rgba(10, 12, 40, 0.14);
  border-color: rgba(96, 47, 255, 0.25);
}

.v2-news-page .v2-btn-primary:hover {
  transform: translateY(-1px);
}

.v2-news-page .v2-news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(10, 12, 40, 0.14);
  border-color: rgba(96, 47, 255, 0.18);
}

.v2-news-page .v2-news-card:hover .v2-news-title {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.v2-news-page .v2-news-pagination {
  max-width: 980px;
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
}

.v2-news-page .v2-news-pagination ul,
.v2-news-page .v2-news-pagination .pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2-news-page .v2-news-pagination li {
  display: inline-flex;
}

.v2-news-page .v2-news-pagination a,
.v2-news-page .v2-news-pagination span {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(16, 16, 99, 0.12);
  color: rgba(16, 16, 99, 0.78);
  background: #fff;
}

.v2-news-page .v2-news-pagination li.active span,
.v2-news-page .v2-news-pagination li.active a {
  background: rgba(96, 47, 255, 0.95);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(96, 47, 255, 0.25);
}

.v2-news-page .v2-news-pagination li.disabled span {
  opacity: 0.5;
}

@media (max-width: 900px) {
  .v2-news-page .v2-news-card-inner {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .v2-news-page .v2-news-media {
    height: 220px;
  }

  .v2-news-page .v2-news-body {
    padding: 6px 2px 2px;
    align-content: start;
  }
}

@media (max-width: 560px) {
  .v2-news-page .v2-section.v2-news {
    padding: 34px 0 56px;
  }

  .v2-news-page .v2-news-head h2 {
    font-size: 26px;
  }

  .v2-news-page .v2-news-title {
    font-size: 18px;
  }
}

/* =========================
   NEWS ENTRY (v2)
   ========================= */
.v2-news-entry {
  background: #f6f7ff;
}

.v2-ne-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 0;
  background:
    radial-gradient(
      900px 520px at 18% 12%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      760px 420px at 85% 18%,
      rgba(127, 9, 244, 0.18),
      transparent 62%
    ),
    linear-gradient(135deg, #101063 0%, #602fff 45%, #7f09f4 100%);
  color: #fff;
}

.v2-ne-hero-inner {
  padding-bottom: 34px;
}

.v2-ne-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.v2-ne-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.v2-ne-breadcrumb a:hover {
  text-decoration: underline;
}

.v2-ne-sep {
  opacity: 0.65;
}

.v2-ne-crumb-current {
  opacity: 0.85;
  max-width: min(680px, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-ne-title {
  margin: 10px 0 10px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.v2-ne-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}

.v2-ne-dot {
  opacity: 0.6;
}

.v2-ne-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.v2-ne-wave {
  display: block;
  width: 100%;
  height: 110px;
  margin-top: 10px;
}

.v2-ne-section {
  padding: 12px 0 76px;
}

.v2-ne-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.v2-ne-article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 16, 99, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(10, 12, 40, 0.1);
  overflow: hidden;
}

.v2-ne-figure {
  margin: 0;
  padding: 16px 16px 0;
}

.v2-ne-figure img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 14px;
  background: rgba(96, 47, 255, 0.05);
  border: 1px solid rgba(16, 16, 99, 0.08);
}

.v2-ne-body {
  padding: 18px 18px 10px;
  color: rgba(16, 16, 99, 0.74);
  font-size: 15.5px;
  line-height: 1.75;
}

.v2-ne-body p {
  margin: 0 0 14px;
}

.v2-ne-body ul {
  margin: 0 0 14px 18px;
}

.v2-ne-body li {
  margin: 0 0 10px;
}

.v2-ne-body h2,
.v2-ne-body h3 {
  margin: 22px 0 10px;
  color: rgba(16, 16, 99, 0.92);
  letter-spacing: -0.01em;
}

.v2-ne-body h2 {
  font-size: 22px;
}

.v2-ne-body h3 {
  font-size: 18px;
}

.v2-ne-body a {
  color: rgba(96, 47, 255, 0.95);
  font-weight: 800;
  text-decoration: none;
}

.v2-ne-body a:hover {
  text-decoration: underline;
}

.v2-ne-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(16, 16, 99, 0.08);
  background: rgba(96, 47, 255, 0.03);
}

.v2-ne-share-label {
  font-weight: 1000;
  font-size: 12.5px;
  color: rgba(16, 16, 99, 0.7);
  margin-right: 2px;
}

.v2-ne-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 99, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(16, 16, 99, 0.78);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}

.v2-ne-share-btn:hover {
  transform: translateY(-1px);
}

.v2-ne-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
}

.v2-ne-aside-card,
.v2-ne-aside-mini {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 16, 99, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(10, 12, 40, 0.08);
  padding: 14px 14px;
}

.v2-ne-aside-title,
.v2-ne-mini-title {
  font-weight: 1000;
  color: rgba(16, 16, 99, 0.92);
  margin: 0 0 6px;
  font-size: 14px;
}

.v2-ne-aside-desc,
.v2-ne-mini-desc {
  margin: 0 0 10px;
  color: rgba(16, 16, 99, 0.62);
  font-size: 13.5px;
  line-height: 1.55;
}

.v2-ne-aside-link,
.v2-ne-mini-link {
  display: inline-flex;
  font-weight: 1000;
  text-decoration: none;
  color: rgba(96, 47, 255, 0.95);
}

.v2-ne-aside-link:hover,
.v2-ne-mini-link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .v2-ne-grid {
    grid-template-columns: 1fr;
  }

  .v2-ne-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .v2-ne-title {
    font-size: 30px;
  }

  .v2-ne-hero {
    padding-top: 40px;
  }

  .v2-ne-section {
    padding-bottom: 58px;
  }
}

/* Scroll reveals */
.v2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.v2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-reveal-left {
  transform: translateX(-28px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.v2-reveal-right {
  transform: translateX(28px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.v2-reveal-left.is-visible,
.v2-reveal-right.is-visible {
  transform: translateX(0);
}

.pf-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.pf-reveal-up {
  transform: translate3d(0, 22px, 0);
}

.pf-reveal-left {
  transform: translate3d(-24px, 0, 0);
}

.pf-reveal-right {
  transform: translate3d(24px, 0, 0);
}

.pf-reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Feature list stagger (used in Features page) */
.pf-list-stagger li {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.pf-list-stagger.is-in li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pf-list-stagger.is-in li:nth-child(1) {
  transition-delay: 0.08s;
}
.pf-list-stagger.is-in li:nth-child(2) {
  transition-delay: 0.16s;
}
.pf-list-stagger.is-in li:nth-child(3) {
  transition-delay: 0.24s;
}
.pf-list-stagger.is-in li:nth-child(4) {
  transition-delay: 0.32s;
}
.pf-list-stagger.is-in li:nth-child(5) {
  transition-delay: 0.4s;
}

.pf-delay-1 {
  transition-delay: 0.16s;
}

.pf-delay-2 {
  transition-delay: 0.32s;
}

.pf-delay-3 {
  transition-delay: 0.48s;
}

/* Responsive */
@media (max-width: 980px) {
  .pf-links,
  .pf-nav-actions {
    display: none;
  }

  .pf-burger {
    display: flex;
  }

  .pf-hero {
    padding-top: 62px;
  }

  .pf-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pf-preview {
    min-height: 320px;
  }

  .pf-device-phone {
    right: 6px;
    width: 156px;
  }

  .pf-hero h1 {
    font-size: 38px;
  }

  .pf-fhero-copy h1 {
    font-size: 34px;
  }

  .pf-fhero-shot {
    min-height: 420px;
  }

  .pf-fsec-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pf-fsec-copy {
    max-width: 760px;
  }

  .pf-fsec-swap {
    grid-template-columns: 1fr;
  }

  .pf-fsec-swap .pf-fsec-copy {
    margin-left: 0;
  }

  .pf-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-how-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pf-how-card-small {
    width: 100%;
    margin-left: 0;
  }

  .pf-pricing-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pf-pricing-points li {
    text-align: left;
  }

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

@media (max-width: 560px) {
  .pf-wrap {
    padding: 0 16px;
  }

  .pf-hero {
    padding-top: 54px;
  }

  .pf-hero h1 {
    font-size: 32px;
  }

  .pf-hero p {
    font-size: 15.5px;
  }

  .pf-fhero {
    padding: 46px 0 34px;
  }

  .pf-fhero-copy h1 {
    font-size: 28px;
  }

  .pf-fhero-copy p {
    font-size: 15px;
  }

  .pf-fhero-shot {
    min-height: 300px;
  }

  .pf-fhero-curve {
    height: 140px;
    margin-top: -60px;
  }

  .pf-fsec {
    padding: 54px 0 58px;
  }

  .pf-fsec-copy h2 {
    font-size: 26px;
  }

  .pf-btn {
    width: 100%;
  }

  .pf-trust-stats {
    grid-template-columns: 1fr;
  }

  .pf-device-phone {
    display: none;
  }

  .pf-wave {
    height: 90px;
  }

  .pf-why {
    padding: 46px 0 48px;
  }

  .pf-why-head h2 {
    font-size: 26px;
  }

  .pf-why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pf-how {
    padding: 48px 0 52px;
  }

  .pf-how-head h2 {
    font-size: 26px;
  }

  .pf-how-steps::before {
    left: 19px;
  }

  .pf-pricing-teaser {
    padding: 48px 0;
  }

  .pf-cta {
    padding: 56px 0;
  }

  .pf-cta-feature {
    padding: 56px 0 60px;
  }

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

  .pf-cta-copy p {
    font-size: 15px;
  }

  .pf-footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    text-align: center;
  }

  .pf-footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .pf-footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .pf-footer-links:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .pf-footer-badges-stacked {
    grid-auto-flow: column;
    justify-content: center;
    gap: 10px;
  }

  .pf-footer-links {
    align-self: stretch;
  }

  .pf-footer-badges-stacked {
    justify-items: center;
  }
}

@media (max-width: 1100px) {
  .pf-roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-devices-grid {
    grid-template-columns: 1fr;
  }

  .pf-device-frame {
    height: clamp(240px, 55vw, 360px);
  }

  .pf-price-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pf-price-copy h1 {
    font-size: 36px;
  }

  .pf-ex-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-inc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-billing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pf-roles {
    padding: 54px 0 58px;
  }

  .pf-roles-head h2 {
    font-size: 26px;
  }

  .pf-roles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pf-devices {
    padding: 54px 0 58px;
  }

  .pf-devices-head h2 {
    font-size: 26px;
  }

  .pf-price-hero {
    padding: 56px 0 60px;
  }

  .pf-price-copy h1 {
    font-size: 30px;
  }

  .pf-number {
    width: 110px;
  }

  .pf-inc {
    padding: 54px 0 58px;
  }

  .pf-inc-head h2 {
    font-size: 26px;
  }

  .pf-inc-grid {
    grid-template-columns: 1fr;
  }

  .pf-billing {
    padding: 54px 0 58px;
  }

  .pf-billing-head h2 {
    font-size: 26px;
  }

  .pf-billing-grid {
    grid-template-columns: 1fr;
  }

  .pf-faq {
    padding: 54px 0 58px;
  }

  .pf-faq-head h2 {
    font-size: 26px;
  }

  .pf-price-cta {
    padding: 56px 0 60px;
  }

  .pf-price-cta-copy h2 {
    font-size: 28px;
  }

  .pf-price-cta-copy p {
    font-size: 15px;
  }

  .pf-security {
    padding: 54px 0 58px;
  }

  .pf-security-head h2 {
    font-size: 26px;
  }

  .pf-security-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   UNSUBSCRIBE (v2)
   ========================= */
.v2-unsub-page {
  background: #f6f7ff;
}

.v2-unsub-hero {
  padding: 64px 0 26px;
  text-align: center;
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(760px 420px at 85% 18%, rgba(127, 9, 244, 0.18), transparent 62%),
    linear-gradient(135deg, #101063 0%, #602fff 45%, #7f09f4 100%);
  color: #fff;
}

.v2-unsub-hero h1 {
  margin: 10px 0 6px;
  font-size: 32px;
  letter-spacing: -0.02em;
}

.v2-unsub-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.v2-section.v2-unsub {
  padding: 0 0 70px;
}

.v2-unsub-card {
  max-width: 720px;
  margin: -24px auto 0;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  padding: 20px 20px 22px;
  border: 1px solid rgba(16, 16, 99, 0.08);
  box-shadow: 0 18px 44px rgba(10, 12, 40, 0.1);
}

.v2-unsub-alert {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 12px;
}

.v2-unsub-alert-error {
  background: rgba(220, 38, 38, 0.08);
  color: rgba(185, 28, 28, 0.95);
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.v2-unsub-alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: rgba(6, 95, 70, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.v2-unsub-form {
  display: grid;
  gap: 16px;
}

.v2-unsub-field {
  display: grid;
  gap: 6px;
}

.v2-unsub-field label {
  font-weight: 900;
  font-size: 13px;
  color: rgba(16, 16, 99, 0.82);
}

.v2-unsub-field input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 99, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  font-size: 14.5px;
  color: rgba(16, 16, 99, 0.82);
  outline: none;
}

.v2-unsub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.v2-unsub-group {
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 99, 0.1);
  background: rgba(96, 47, 255, 0.04);
  padding: 12px;
}

.v2-unsub-label {
  font-weight: 900;
  font-size: 13px;
  color: rgba(16, 16, 99, 0.82);
  margin-bottom: 8px;
}

.v2-unsub-toggle {
  display: grid;
  gap: 6px;
}

.v2-unsub-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13.5px;
  color: rgba(16, 16, 99, 0.7);
}

.v2-unsub-toggle input {
  accent-color: rgba(96, 47, 255, 0.95);
}

.v2-unsub-actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .v2-unsub-hero {
    padding: 56px 0 22px;
  }

  .v2-unsub-hero h1 {
    font-size: 26px;
  }

  .v2-unsub-card {
    margin-top: -18px;
    padding: 18px;
  }

  .v2-unsub-row {
    grid-template-columns: 1fr;
  }

  .v2-unsub-actions {
    justify-content: stretch;
  }

  .v2-unsub-actions .v2-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-btn {
    transition: none;
  }

  .v2-reveal,
  .pf-reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
