/* Checkivo product pages (Checkout / Subscriptions / Portal / Shopify app) */

/* Locked hero: hide product pills (must beat checkivo-hero-mobile.css !important). */
html.cv-hero-locked [aria-label="Product areas"],
html.cv-hero-locked [data-testid*="showcase-component"] [aria-label="Product areas"],
html.cv-hero-locked [data-testid*="showcase-component"].cv-hero-showcase-mobile [aria-label="Product areas"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  border: 0 !important;
}

/* Collapse the empty band where tabs sat — pull dashboard (and globe video) up.
   Also keep the showcase ABOVE .cv-hero-globe-transition (z-index:2), otherwise
   the white fade paints over the hero demo and the page looks endlessly blank. */
html.cv-hero-locked [data-testid*="showcase-component"] {
  position: relative !important;
  z-index: 20 !important;
  margin-top: 0.25rem !important;
  margin-bottom: 1.5rem !important;
}

html.cv-hero-locked [data-testid*="showcase-component"] .relative.z-\[1\].mt-5,
html.cv-hero-locked [data-testid*="showcase-component"] .relative.z-\[1\].md\:mt-6 {
  margin-top: 0.35rem !important;
}

/* Full-bleed globe video on product pages (escape any padded ancestors). */
html.cv-hero-locked .cv-hero-globe-video-wrap {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  margin-left: -50vw !important;
  max-width: 100vw !important;
}

html.cv-hero-locked .cv-hero-globe-transition {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  margin-left: -50vw !important;
}

html.cv-hero-locked .cv-rl-pillars,
html.cv-hero-locked .cv-ps-widget-section,
html.cv-hero-locked [data-cv-extra] {
  position: relative;
  z-index: 5;
}


.cv-product-page {
  --cv-prod-ink: #141414;
  --cv-prod-muted: #5c5c5c;
  --cv-prod-line: rgba(0, 0, 0, 0.08);
  --cv-prod-lavender: #6a2183;
  --cv-prod-soft: #f8f0fb;
  --cv-prod-max: 1152px;
  color: var(--cv-prod-ink);
}

.cv-product-hero-band {
  background:
    radial-gradient(circle at 50% -20%, rgba(214, 156, 234, 0.45) 0%, transparent 55%),
    linear-gradient(180deg, #fbf7fd 0%, #ffffff 72%);
  padding: 0 1.25rem 3.5rem;
}

.cv-product-hero {
  max-width: 46rem;
  margin: 0 auto;
  padding: calc(var(--header-height, 5rem) + 3.5rem) 0 1rem;
  text-align: center;
}

.cv-product-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.cv-product-h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.cv-product-h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.cv-product-lead,
.cv-product-copy {
  margin: 0 auto 1.75rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--cv-prod-muted);
}

.cv-product-form {
  margin: 0 auto;
  max-width: 28rem;
}

.cv-product-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.35rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0.5px 2px rgba(0, 0, 0, 0.08),
    0 2px 16px -4px rgba(0, 0, 0, 0.1),
    0 0 24px rgba(219, 173, 235, 0.35);
  backdrop-filter: blur(8px);
}

@media (min-width: 640px) {
  .cv-product-form__field {
    flex-direction: row;
    align-items: stretch;
    padding: 0.3rem 0.3rem 0.3rem 0.85rem;
  }
}

.cv-product-form__field input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.85rem 0.75rem;
  font-size: 1rem;
  outline: none;
}

.cv-product-form__field button {
  border: 0;
  border-radius: 0.55rem;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.15rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cv-product-form__field button:hover {
  background: #2a2a2a;
}

.cv-product-form__demo {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--cv-prod-muted);
}

.cv-product-form__demo span {
  margin-right: 0.35rem;
}

.cv-product-form__demo a {
  color: var(--cv-prod-lavender);
  font-weight: 650;
  text-decoration: none;
}

.cv-product-form__demo a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cv-product-section {
  padding: 4.5rem 1.25rem;
}

.cv-product-section--muted {
  background: linear-gradient(180deg, #faf7fc 0%, #fff 100%);
}

.cv-product-section__inner {
  max-width: var(--cv-prod-max);
  margin: 0 auto;
}

.cv-product-section__inner > .cv-product-eyebrow,
.cv-product-section__inner > .cv-product-h2 {
  text-align: center;
}

.cv-product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}

@media (min-width: 720px) {
  .cv-product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cv-product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }
}

.cv-product-card {
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid var(--cv-prod-line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 30px -22px rgba(106, 33, 131, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cv-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -20px rgba(106, 33, 131, 0.4);
}

.cv-product-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.cv-product-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--cv-prod-muted);
}

.cv-product-highlight {
  display: grid;
  gap: 2rem;
  align-items: start;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(237, 214, 245, 0.55), rgba(255, 255, 255, 0.9)),
    #fff;
  border: 1px solid rgba(106, 33, 131, 0.1);
}

@media (min-width: 900px) {
  .cv-product-highlight {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    padding: 2.75rem 2.5rem;
  }

  .cv-product-highlight .cv-product-h2,
  .cv-product-highlight .cv-product-copy {
    text-align: left;
    margin-left: 0;
  }
}

.cv-product-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.cv-product-checklist li {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.4rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--cv-prod-line);
  font-weight: 550;
  font-size: 0.95rem;
}

.cv-product-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cv-prod-lavender);
  font-weight: 700;
}

.cv-product-steps {
  list-style: none;
  margin: 2rem auto 0;
  padding: 0;
  max-width: 44rem;
  display: grid;
  gap: 1rem;
}

.cv-product-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--cv-prod-line);
}

.cv-product-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cv-product-step h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.cv-product-step p {
  margin: 0;
  color: var(--cv-prod-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cv-product-cta {
  padding: 4rem 1.25rem 5rem;
  background:
    linear-gradient(180deg, #2a0f36 0%, #4a1760 48%, #6a2183 100%);
  color: #fff;
}

.cv-product-cta__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.cv-product-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.cv-product-cta p {
  margin: 0 0 1.5rem;
  opacity: 0.88;
  font-size: 1.05rem;
  line-height: 1.5;
}

.cv-product-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cv-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.55rem;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.cv-product-btn:hover {
  transform: translateY(-1px);
}

.cv-product-btn--primary {
  background: #fff;
  color: #2a0f36;
}

.cv-product-btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.45);
}

.cv-product-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Product below-fold (Sell pages) */
.cv-prod-point {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cv-prod-point__title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: #141414;
}
.cv-prod-point__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5c5c5c;
}
@media (min-width: 768px) {
  .cv-prod-point {
    border-top: none;
    padding: 0 1rem;
    border-left: 1px solid rgba(0,0,0,0.08);
  }
  .cv-prod-point:first-child {
    border-left: none;
    padding-left: 0;
  }
}

/* Product mid / demo (Sell pages) */
.cv-prod-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(106, 33, 131, 0.12);
}
.cv-prod-feature__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #6a2183;
  min-width: 1.75rem;
  padding-top: 0.2rem;
}
.cv-prod-feature__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #141414;
}
.cv-prod-feature__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5c5c5c;
}
.cv-prod-demo {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(40, 10, 55, 0.12);
  border: 1px solid rgba(0,0,0,0.06);
}
.cv-prod-demo__frame {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: min(62vh, 640px);
}

/* ── Product feature splits (checkout + subscriptions + portal + app) ── */
[data-cv-extra="checkout-lottie-sections"].flex.flex-col,
div[data-cv-extra="checkout-lottie-sections"],
[data-cv-extra="subscriptions-sections"].flex.flex-col,
div[data-cv-extra="subscriptions-sections"],
[data-cv-extra="portal-sections"].flex.flex-col,
div[data-cv-extra="portal-sections"],
[data-cv-extra="app-sections"].flex.flex-col,
div[data-cv-extra="app-sections"] {
  gap: 7.5rem !important;
  row-gap: 7.5rem !important;
  padding-top: 5rem !important;
  padding-bottom: 4rem !important;
}

[data-cv-extra="checkout-lottie-sections"] > .cv-co-split + .cv-co-split,
[data-cv-extra="checkout-lottie-sections"] > .cv-co-split + .cv-co-case-cta-wrap,
[data-cv-extra="checkout-lottie-sections"] > .cv-co-split + section,
[data-cv-extra="subscriptions-sections"] > .cv-co-split + .cv-co-split,
[data-cv-extra="subscriptions-sections"] > .cv-co-split + .cv-co-case-cta-wrap,
[data-cv-extra="subscriptions-sections"] > .cv-co-split + section,
[data-cv-extra="portal-sections"] > .cv-co-split + .cv-co-split,
[data-cv-extra="portal-sections"] > .cv-co-split + .cv-co-case-cta-wrap,
[data-cv-extra="portal-sections"] > .cv-co-split + section,
[data-cv-extra="app-sections"] > .cv-co-split + .cv-co-split,
[data-cv-extra="app-sections"] > .cv-co-split + .cv-co-case-cta-wrap,
[data-cv-extra="app-sections"] > .cv-co-split + section {
  margin-top: 7.5rem !important;
}

@media (min-width: 900px) {
  [data-cv-extra="checkout-lottie-sections"].flex.flex-col,
  div[data-cv-extra="checkout-lottie-sections"],
  [data-cv-extra="subscriptions-sections"].flex.flex-col,
  div[data-cv-extra="subscriptions-sections"],
  [data-cv-extra="portal-sections"].flex.flex-col,
  div[data-cv-extra="portal-sections"],
  [data-cv-extra="app-sections"].flex.flex-col,
  div[data-cv-extra="app-sections"] {
    gap: 9rem !important;
    row-gap: 9rem !important;
  }

  [data-cv-extra="checkout-lottie-sections"] > .cv-co-split + .cv-co-split,
  [data-cv-extra="checkout-lottie-sections"] > .cv-co-split + .cv-co-case-cta-wrap,
  [data-cv-extra="checkout-lottie-sections"] > .cv-co-split + section,
  [data-cv-extra="subscriptions-sections"] > .cv-co-split + .cv-co-split,
  [data-cv-extra="subscriptions-sections"] > .cv-co-split + .cv-co-case-cta-wrap,
  [data-cv-extra="subscriptions-sections"] > .cv-co-split + section,
  [data-cv-extra="portal-sections"] > .cv-co-split + .cv-co-split,
  [data-cv-extra="portal-sections"] > .cv-co-split + .cv-co-case-cta-wrap,
  [data-cv-extra="portal-sections"] > .cv-co-split + section,
  [data-cv-extra="app-sections"] > .cv-co-split + .cv-co-split,
  [data-cv-extra="app-sections"] > .cv-co-split + .cv-co-case-cta-wrap,
  [data-cv-extra="app-sections"] > .cv-co-split + section {
    margin-top: 10rem !important;
  }
}

.cv-co-split {
  display: grid;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 900px) {
  .cv-co-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    padding: 0 2rem;
  }
  .cv-co-split--reverse .cv-co-split__copy { order: 2; }
  .cv-co-split--reverse .cv-co-split__visual { order: 1; }
}

.cv-co-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a2183;
}

.cv-co-h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #141414;
}

.cv-co-h2--center { text-align: center; }

.cv-co-lead {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #5c5c5c;
  max-width: 34rem;
}

.cv-co-lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cv-co-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.cv-co-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #2a2a2a;
}

.cv-co-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #6a2183;
}

.cv-co-split__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(237, 214, 245, 0.95) 0%, transparent 55%),
    linear-gradient(160deg, #fbf7fd 0%, #f3e8f8 100%);
  border: 1px solid rgba(106, 33, 131, 0.08);
  overflow: hidden;
  padding: 1.75rem;
}

/* Custom on-brand section animations (replacing mismatched stock Lotties) */
.cv-co-anim {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.cv-co-anim__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.cv-co-anim__caption {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6a2183;
}

.cv-co-anim__stage {
  position: relative;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-co-anim__two,
.cv-co-anim__zero {
  position: absolute;
  font-size: 4.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cv-co-anim__two {
  color: #c43b3b;
  animation: cvCoStrike 4.5s ease-in-out infinite;
}

.cv-co-anim__two::after {
  content: "";
  position: absolute;
  left: -8%;
  top: 52%;
  width: 116%;
  height: 0.28rem;
  background: #c43b3b;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: cvCoLine 4.5s ease-in-out infinite;
}

.cv-co-anim__zero {
  color: #6a2183;
  opacity: 0;
  transform: scale(0.7);
  animation: cvCoZero 4.5s ease-in-out infinite;
}

@keyframes cvCoStrike {
  0%, 18% { opacity: 0; transform: scale(0.85); }
  28%, 48% { opacity: 1; transform: scale(1); }
  58%, 100% { opacity: 0; transform: scale(0.9); }
}
@keyframes cvCoLine {
  0%, 30% { transform: scaleX(0); }
  40%, 48% { transform: scaleX(1); }
  58%, 100% { transform: scaleX(1); opacity: 0; }
}
@keyframes cvCoZero {
  0%, 55% { opacity: 0; transform: scale(0.7); }
  68%, 88% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

/* Mini checkout mock */
.cv-co-mini {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 36px rgba(40, 10, 55, 0.1);
  padding: 0.85rem 0.85rem 1rem;
  overflow: hidden;
  text-align: left;
}

.cv-co-mini__express {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.cv-co-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 34px;
  border-radius: 6px;
  background: #000;
  overflow: hidden;
}
.cv-co-pay-btn img {
  display: block;
  height: 18px;
  width: auto;
  max-width: 70%;
  object-fit: contain;
}

.cv-co-mini__divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.55rem 0 0.35rem;
  color: #9a9a9a;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.06em;
}
.cv-co-mini__divider::before,
.cv-co-mini__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.cv-co-mini__row {
  height: 0.85rem;
  margin: 0.55rem 0 0;
  border-radius: 6px;
  background: #f3e8f8;
  transform-origin: left center;
  animation: cvCoRow 3.8s ease-in-out infinite;
}
.cv-co-mini__row--1 { width: 88%; animation-delay: 0.1s; }
.cv-co-mini__row--2 { width: 72%; animation-delay: 0.35s; }
.cv-co-mini__row--3 { width: 80%; animation-delay: 0.55s; }

.cv-co-mini__btn {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 650;
  color: #fff;
  background: #6a2183;
  border-radius: 8px;
  padding: 0.7rem;
  opacity: 0;
  animation: cvCoFadeUp 3.8s ease-in-out infinite;
  animation-delay: 0.35s;
}

@keyframes cvCoRow {
  0%, 8% { transform: scaleX(0.4); opacity: 0.35; }
  22%, 78% { transform: scaleX(1); opacity: 1; }
  92%, 100% { transform: scaleX(0.4); opacity: 0.35; }
}
@keyframes cvCoFadeUp {
  0%, 20% { opacity: 0; transform: translateY(6px); }
  35%, 78% { opacity: 1; transform: translateY(0); }
  92%, 100% { opacity: 0; transform: translateY(6px); }
}

/* Payment pills with real logos */
.cv-co-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.cv-co-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.6rem;
  padding: 0.7rem 0.55rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(106, 33, 131, 0.12);
  color: #6a2183;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: cvCoPill 4.2s ease-in-out infinite;
}
.cv-co-pill img {
  display: block;
  max-height: 1.55rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.cv-co-pill__logo--sepa {
  max-height: none !important;
  height: 1.05rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.cv-co-pill__logo--wallet {
  max-height: none !important;
  height: 1.4rem;
  width: auto;
  max-width: 4.25rem;
}
.cv-co-pill--4,
.cv-co-pill--5,
.cv-co-pill--6 {
  min-height: 3.25rem;
  padding: 0.55rem 0.45rem;
}
.cv-co-pill--1 { animation-delay: 0.05s; }
.cv-co-pill--2 { animation-delay: 0.2s; }
.cv-co-pill--3 { animation-delay: 0.35s; }
.cv-co-pill--4 { animation-delay: 0.5s; }
.cv-co-pill--5 { animation-delay: 0.65s; }
.cv-co-pill--6 { animation-delay: 0.8s; }

@keyframes cvCoPill {
  0%, 5% { opacity: 0; transform: translateY(8px) scale(0.96); }
  18%, 78% { opacity: 1; transform: translateY(0) scale(1); }
  92%, 100% { opacity: 0.35; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .cv-co-anim__two,
  .cv-co-anim__two::after,
  .cv-co-anim__zero,
  .cv-co-mini__row,
  .cv-co-mini__btn,
  .cv-co-pill {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cv-co-anim__two { display: none; }
}

@media (max-width: 899px) {
  .cv-co-split__visual { min-height: 220px; }
  .cv-co-lottie { height: 220px; }
}

/* Checkout end CTA — same pattern as case-study / blog pages */
.cv-co-case-cta-wrap {
  width: 100%;
  max-width: 1152px;
  margin: 1rem auto 0;
  padding: 0 1.25rem 2rem;
}

.cv-co-case-cta-wrap .cv-case-cta-grid {
  display: grid;
  gap: 2rem;
  max-width: 1152px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

@media (min-width: 900px) {
  .cv-co-case-cta-wrap .cv-case-cta-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
  }
}

.cv-co-case-cta-wrap .cv-case-cta {
  border-radius: 1rem;
  background: #f7f7f8;
  padding: 2rem 1.5rem;
}

@media (min-width: 1024px) {
  .cv-co-case-cta-wrap .cv-case-cta {
    padding: 2.5rem;
  }
}

.cv-co-case-cta-wrap .cv-case-section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #141414;
}

.cv-co-case-cta-wrap .cv-case-cta-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.cv-co-case-cta-wrap .cv-case-cta-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #141414;
}

.cv-co-case-cta-wrap .cv-case-cta-list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #6a2183;
}

.cv-co-case-cta-wrap .cv-case-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 0.5rem;
  background: #141414;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
}

.cv-co-case-cta-wrap .cv-case-cta-btn:hover {
  background: #2a2a2a;
}


/* ── Subscriptions page animations ── */
.cv-sub-anim {
  width: min(100%, 22rem);
}

.cv-sub-plans {
  display: grid;
  gap: 0.65rem;
  width: 100%;
}

.cv-sub-plan {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid rgba(106, 33, 131, 0.14);
  color: #141414;
  opacity: 0.72;
  transform: translateY(4px);
  animation: cvSubPlanIdle 5.5s ease-in-out infinite;
}

.cv-sub-plan > div {
  flex: 1 1 auto;
  min-width: 0;
}

.cv-sub-plan:has(.cv-sub-plan__badge) > div {
  padding-right: 5.25rem;
}

.cv-sub-plan strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cv-sub-plan span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: #5c5c5c;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cv-sub-plan s {
  color: #9a9a9a;
  margin-right: 0.2rem;
}

.cv-sub-plan__radio {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  border-radius: 999px;
  border: 2px solid #c4b0ce;
  background: #fff;
  box-shadow: inset 0 0 0 0 #6a2183;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.cv-sub-plan__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  max-width: min(46%, 7.5rem);
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6a2183;
  background: rgba(106, 33, 131, 0.1);
  padding: 0.22rem 0.42rem;
  border-radius: 999px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.cv-sub-plan--1 { animation-delay: 0s; }
.cv-sub-plan--2 { animation-delay: 0s; }
.cv-sub-plan--3 { animation-delay: 0s; }

@keyframes cvSubPlanIdle {
  0%, 12% {
    opacity: 0.7;
    border-color: rgba(106, 33, 131, 0.14);
    transform: translateY(2px);
  }
  22%, 55% {
    opacity: 1;
    transform: translateY(0);
  }
  65%, 100% {
    opacity: 0.72;
    transform: translateY(0);
  }
}

.cv-sub-plan--2 {
  animation-name: cvSubPlanActive;
}

@keyframes cvSubPlanActive {
  0%, 14% {
    opacity: 0.75;
    border-color: rgba(106, 33, 131, 0.14);
    box-shadow: none;
  }
  24%, 70% {
    opacity: 1;
    border-color: #6a2183;
    box-shadow: 0 0 0 3px rgba(106, 33, 131, 0.12);
  }
  82%, 100% {
    opacity: 0.8;
    border-color: rgba(106, 33, 131, 0.18);
    box-shadow: none;
  }
}

.cv-sub-plan--2 .cv-sub-plan__radio {
  animation: cvSubRadio 5.5s ease-in-out infinite;
}

@keyframes cvSubRadio {
  0%, 14% {
    border-color: #c4b0ce;
    box-shadow: inset 0 0 0 0 #6a2183;
  }
  24%, 70% {
    border-color: #6a2183;
    box-shadow: inset 0 0 0 0.28rem #6a2183;
  }
  82%, 100% {
    border-color: #c4b0ce;
    box-shadow: inset 0 0 0 0 #6a2183;
  }
}

.cv-sub-bill {
  width: 100%;
  padding: 1.35rem 1.25rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(106, 33, 131, 0.12);
  box-shadow: 0 10px 28px rgba(106, 33, 131, 0.08);
}

.cv-sub-bill__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #5c5c5c;
}

.cv-sub-bill__row strong {
  color: #6a2183;
  font-weight: 700;
}

.cv-sub-bill__amount {
  margin: 0.85rem 0 1rem;
  font-size: 2rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #141414;
  animation: cvSubAmount 4.8s ease-in-out infinite;
}

@keyframes cvSubAmount {
  0%, 20% { opacity: 0.55; transform: translateY(4px); }
  35%, 75% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0.7; transform: none; }
}

.cv-sub-bill__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.25;
  animation: cvSubStatus 4.8s ease-in-out infinite;
}

.cv-sub-bill__label {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cv-sub-bill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45);
  animation: cvSubDot 4.8s ease-in-out infinite;
}

@keyframes cvSubStatus {
  0%, 25% { opacity: 0; transform: translateY(6px); }
  40%, 80% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0.55; }
}

@keyframes cvSubDot {
  0%, 35% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.35); }
  55% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.cv-sub-bill__meta {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: #7a7a7a;
}

.cv-sub-portal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
}

.cv-sub-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.65rem 0.4rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(106, 33, 131, 0.12);
  color: #6a2183;
  font-size: clamp(0.68rem, 2.1vw, 0.82rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: cvSubAction 4.4s ease-in-out infinite;
}

.cv-sub-action--1 { animation-delay: 0.05s; }
.cv-sub-action--2 { animation-delay: 0.2s; }
.cv-sub-action--3 { animation-delay: 0.35s; }
.cv-sub-action--4 { animation-delay: 0.5s; }

@keyframes cvSubAction {
  0%, 5% { opacity: 0; transform: translateY(8px) scale(0.96); }
  18%, 78% { opacity: 1; transform: translateY(0) scale(1); }
  92%, 100% { opacity: 0.4; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .cv-sub-plan,
  .cv-sub-plan--2 .cv-sub-plan__radio,
  .cv-sub-bill__amount,
  .cv-sub-bill__status,
  .cv-sub-bill__dot,
  .cv-sub-action {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cv-sub-plan--2 {
    border-color: #6a2183;
    box-shadow: 0 0 0 3px rgba(106, 33, 131, 0.12);
  }
  .cv-sub-plan--2 .cv-sub-plan__radio {
    border-color: #6a2183;
    box-shadow: inset 0 0 0 0.28rem #6a2183;
  }
}


/* ── Customer portal page animations ── */
.cv-portal-anim {
  width: min(100%, 22rem);
}

.cv-portal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
}

.cv-portal-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.7rem 0.55rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(106, 33, 131, 0.12);
  color: #6a2183;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: cvPortalChip 4.4s ease-in-out infinite;
}

.cv-portal-chip--1 { animation-delay: 0.05s; }
.cv-portal-chip--2 { animation-delay: 0.2s; }
.cv-portal-chip--3 { animation-delay: 0.35s; }
.cv-portal-chip--4 { animation-delay: 0.5s; }

@keyframes cvPortalChip {
  0%, 5% { opacity: 0; transform: translateY(8px) scale(0.96); }
  18%, 78% { opacity: 1; transform: translateY(0) scale(1); }
  92%, 100% { opacity: 0.4; transform: translateY(0) scale(1); }
}

.cv-portal-pay {
  display: grid;
  gap: 0.7rem;
  width: 100%;
}

.cv-portal-pay__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #fff;
  animation: cvPortalCard 5s ease-in-out infinite;
}

.cv-portal-pay__brand {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.cv-portal-pay__digits {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.cv-portal-pay__new {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1.5px dashed rgba(106, 33, 131, 0.35);
  color: #6a2183;
  font-size: 0.88rem;
  font-weight: 650;
  animation: cvPortalNew 5s ease-in-out infinite;
}

.cv-portal-pay__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(106, 33, 131, 0.12);
  font-weight: 700;
}

.cv-portal-pay__ok {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: start;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 0.8rem;
  font-weight: 650;
  opacity: 0;
  animation: cvPortalOk 5s ease-in-out infinite;
}

.cv-portal-pay__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #10b981;
}

@keyframes cvPortalCard {
  0%, 18% { opacity: 0.85; transform: translateY(0); }
  30%, 55% { opacity: 0.55; transform: translateY(-2px) scale(0.98); }
  70%, 100% { opacity: 0.9; transform: none; }
}

@keyframes cvPortalNew {
  0%, 22% {
    border-color: rgba(106, 33, 131, 0.25);
    box-shadow: none;
  }
  35%, 65% {
    border-color: #6a2183;
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(106, 33, 131, 0.12);
  }
  80%, 100% {
    border-color: rgba(106, 33, 131, 0.35);
    border-style: dashed;
    box-shadow: none;
  }
}

@keyframes cvPortalOk {
  0%, 40% { opacity: 0; transform: translateY(6px); }
  55%, 85% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0.45; }
}

.cv-portal-stats {
  display: grid;
  gap: 0.65rem;
  width: 100%;
}

.cv-portal-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 1.05rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(106, 33, 131, 0.12);
  opacity: 0;
  transform: translateY(8px);
  animation: cvPortalStat 4.8s ease-in-out infinite;
}

.cv-portal-stat strong {
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #6a2183;
  line-height: 1.1;
}

.cv-portal-stat span {
  font-size: 0.8rem;
  color: #5c5c5c;
  font-weight: 550;
}

.cv-portal-stat--1 { animation-delay: 0.05s; }
.cv-portal-stat--2 { animation-delay: 0.2s; }
.cv-portal-stat--3 { animation-delay: 0.35s; }

@keyframes cvPortalStat {
  0%, 8% { opacity: 0; transform: translateY(8px); }
  22%, 75% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0.4; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .cv-portal-chip,
  .cv-portal-pay__card,
  .cv-portal-pay__new,
  .cv-portal-pay__ok,
  .cv-portal-stat {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ── Shopify app page animations ── */
.cv-app-anim {
  width: min(100%, 22rem);
}

.cv-app-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  width: 100%;
}

.cv-app-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(106, 33, 131, 0.12);
  opacity: 0;
  transform: translateX(-8px);
  animation: cvAppStep 4.8s ease-in-out infinite;
}

.cv-app-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: rgba(106, 33, 131, 0.12);
  color: #6a2183;
  font-size: 0.8rem;
  font-weight: 750;
}

.cv-app-step strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #141414;
}

.cv-app-step--1 { animation-delay: 0.05s; }
.cv-app-step--2 { animation-delay: 0.25s; }
.cv-app-step--3 { animation-delay: 0.45s; }

@keyframes cvAppStep {
  0%, 8% { opacity: 0; transform: translateX(-8px); }
  22%, 75% { opacity: 1; transform: translateX(0); }
  90%, 100% { opacity: 0.4; transform: translateX(0); }
}

.cv-app-stack {
  display: grid;
  gap: 0.55rem;
  width: 100%;
}

.cv-app-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 0.75rem;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid rgba(106, 33, 131, 0.14);
  color: #6a2183;
  font-size: 0.95rem;
  font-weight: 750;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: cvAppTile 4.6s ease-in-out infinite;
}

.cv-app-tile--1 { animation-delay: 0.05s; }
.cv-app-tile--2 { animation-delay: 0.2s; }
.cv-app-tile--3 { animation-delay: 0.35s; }

@keyframes cvAppTile {
  0%, 5% { opacity: 0; transform: translateY(8px) scale(0.96); }
  18%, 70% { opacity: 1; transform: translateY(0) scale(1); border-color: #6a2183; box-shadow: 0 0 0 3px rgba(106, 33, 131, 0.1); }
  85%, 100% { opacity: 0.45; transform: translateY(0) scale(1); border-color: rgba(106, 33, 131, 0.14); box-shadow: none; }
}

.cv-app-stripe {
  width: 100%;
  padding: 1.25rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(106, 33, 131, 0.12);
  box-shadow: 0 10px 28px rgba(106, 33, 131, 0.08);
}

.cv-app-stripe__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: #5c5c5c;
  animation: cvAppStripeRow 5s ease-in-out infinite;
}

.cv-app-stripe__row strong {
  color: #635bff;
  font-weight: 750;
}

.cv-app-stripe__arrow {
  color: #6a2183;
  font-weight: 700;
}

.cv-app-stripe__ok {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-size: 0.8rem;
  font-weight: 650;
  opacity: 0;
  animation: cvAppStripeOk 5s ease-in-out infinite;
}

.cv-app-stripe__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #10b981;
}

@keyframes cvAppStripeRow {
  0%, 20% { opacity: 0.55; }
  35%, 80% { opacity: 1; }
  95%, 100% { opacity: 0.7; }
}

@keyframes cvAppStripeOk {
  0%, 35% { opacity: 0; transform: translateY(6px); }
  50%, 85% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  .cv-app-step,
  .cv-app-tile,
  .cv-app-stripe__row,
  .cv-app-stripe__ok {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Localized checkout Lottie mounts (fees / payments) */
.cv-co-lottie {
  width: 100%;
  max-width: 400px;
  height: 280px;
  margin: 0 auto;
}
.cv-co-lottie svg {
  width: 100% !important;
  height: 100% !important;
}
.cv-co-anim--fees .cv-co-lottie,
.cv-co-anim--pay .cv-co-lottie {
  margin-bottom: 0.75rem;
}


/* —— Rent & lease solution page —— */
.cv-rl-hero-media {
  margin-top: 1.5rem;
  padding: 0 0 2rem;
}
.cv-rl-hero-media__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #140f18;
  box-shadow:
    0 0 0 1px rgba(106, 33, 131, 0.12),
    0 24px 60px rgba(20, 16, 28, 0.18);
  aspect-ratio: 16 / 9;
}
.cv-rl-hero-media__video,
.cv-rl-hero-media__fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cv-rl-hero-media__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cv-rl-hero-media__video {
  position: relative;
  z-index: 1;
}

.cv-rl-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.cv-rl-pillar {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(106, 33, 131, 0.1);
  padding: 1.35rem 1.25rem;
  backdrop-filter: blur(8px);
}
.cv-rl-pillar__title {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #141414;
  letter-spacing: -0.02em;
}
.cv-rl-pillar__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5c5c5c;
}

.cv-rl-section-head {
  margin: 0 auto 2.5rem;
  max-width: 40rem;
  text-align: center;
}

.cv-rl-media {
  border-radius: 16px;
  overflow: hidden;
  background: #f7f2fa;
  border: 1px solid rgba(106, 33, 131, 0.08);
  box-shadow: 0 16px 40px rgba(20, 16, 28, 0.08);
}
.cv-rl-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cv-rl-media--tall img {
  min-height: 320px;
  object-fit: cover;
}

.cv-rl-band {
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
  padding: 4rem 0;
}
.cv-rl-band__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.cv-rl-stats {
  display: grid;
  gap: 1rem;
}
.cv-rl-stat {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(106, 33, 131, 0.1);
  padding: 1.15rem 1.25rem;
}
.cv-rl-stat__value {
  margin: 0 0 0.25rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #6a2183;
}
.cv-rl-stat__label {
  margin: 0;
  font-size: 0.92rem;
  color: #5c5c5c;
  line-height: 1.4;
}

.cv-rl-showcase__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
.cv-rl-link {
  display: inline-flex;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #6a2183;
  text-decoration: none;
}
.cv-rl-link:hover { text-decoration: underline; }

.cv-rl-faq__list {
  display: grid;
  gap: 0.65rem;
}
.cv-rl-faq__item {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 0.85rem 1rem;
}
.cv-rl-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: #141414;
  list-style: none;
}
.cv-rl-faq__item summary::-webkit-details-marker { display: none; }
.cv-rl-faq__item p {
  margin: 0.75rem 0 0;
  color: #5c5c5c;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .cv-rl-pillars__grid,
  .cv-rl-band__inner,
  .cv-rl-showcase__grid {
    grid-template-columns: 1fr;
  }
  .cv-rl-hero-media__frame {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }
}

/* —— Solutions product-subscriptions widget —— */
.cv-ps-widget-section {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #faf7fc 0%, #fff 100%);
}
.cv-ps-widget-section__inner {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cv-ps-widget-frame {
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(106, 33, 131, 0.12);
  background: #f4f4f5;
  box-shadow: 0 12px 40px -18px rgba(106, 33, 131, 0.35);
  min-height: 520px;
  aspect-ratio: 1 / 1;
}
.cv-ps-subdemo-wrap {
  min-height: 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}
/* Larger widget preview inside the narrower frame */
.cv-ps-widget-section .cv-timeline-subdemo__widget-scale {
  width: 420px;
  max-width: none;
  transform: translate(-50%, -50%) scale(0.62);
}
@media (min-width: 900px) {
  .cv-ps-widget-section .cv-timeline-subdemo__widget-scale {
    width: 440px;
    transform: translate(-50%, -50%) scale(0.68);
  }
}
.cv-ps-widget-caption {
  margin: 1rem 0 0;
  text-align: center;
  color: #6b6b6b;
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .cv-ps-widget-frame { min-height: 380px; max-width: 420px; }
  .cv-ps-widget-section .cv-timeline-subdemo__widget-scale {
    width: 380px;
    transform: translate(-50%, -50%) scale(0.55);
  }
}

/* Solution pages: same split spacing as /subscriptions/ */
[data-cv-extra="product-subscriptions"],
[data-cv-extra="try-buy"],
[data-cv-extra="memberships"],
[data-cv-extra="digital-subscriptions"],
div[data-cv-extra="product-subscriptions"],
div[data-cv-extra="try-buy"],
div[data-cv-extra="memberships"],
div[data-cv-extra="digital-subscriptions"] {
  display: flex !important;
  flex-direction: column !important;
  gap: 7.5rem !important;
  row-gap: 7.5rem !important;
  padding-top: 5rem !important;
  padding-bottom: 4rem !important;
}
[data-cv-extra="product-subscriptions"] > .cv-co-split + .cv-co-split,
[data-cv-extra="product-subscriptions"] > .cv-rl-section-head + .cv-co-split,
[data-cv-extra="try-buy"] > .cv-co-split + .cv-co-split,
[data-cv-extra="try-buy"] > .cv-rl-section-head + .cv-co-split,
[data-cv-extra="memberships"] > .cv-co-split + .cv-co-split,
[data-cv-extra="memberships"] > .cv-rl-section-head + .cv-co-split,
[data-cv-extra="digital-subscriptions"] > .cv-co-split + .cv-co-split,
[data-cv-extra="digital-subscriptions"] > .cv-rl-section-head + .cv-co-split {
  margin-top: 0 !important;
}
@media (min-width: 900px) {
  [data-cv-extra="product-subscriptions"],
  [data-cv-extra="try-buy"],
  [data-cv-extra="memberships"],
  [data-cv-extra="digital-subscriptions"],
  div[data-cv-extra="product-subscriptions"],
  div[data-cv-extra="try-buy"],
  div[data-cv-extra="memberships"],
  div[data-cv-extra="digital-subscriptions"] {
    gap: 9rem !important;
    row-gap: 9rem !important;
  }
}

/* Unique micro-demos per solution page */
.cv-sol-trial, .cv-sol-buyout, .cv-sol-steps, .cv-sol-tiers, .cv-sol-access {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 1.25rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(106, 33, 131, 0.12);
  box-shadow: 0 10px 28px rgba(106, 33, 131, 0.08);
}
.cv-sol-trial__badge {
  display: inline-flex;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(106, 33, 131, 0.1);
  color: #6a2183;
  font-size: 0.72rem;
  font-weight: 700;
}
.cv-sol-trial__timer {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin: 0.85rem 0 0.4rem;
  font-size: 1.85rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #141414;
  font-variant-numeric: tabular-nums;
}
.cv-sol-trial__timer i { font-style: normal; opacity: 0.35; }
.cv-sol-trial__label { margin: 0; color: #5c5c5c; font-size: 0.85rem; }
.cv-sol-trial__bar {
  margin-top: 0.9rem;
  height: 6px;
  border-radius: 999px;
  background: #efe6f4;
  overflow: hidden;
}
.cv-sol-trial__bar i {
  display: block;
  height: 100%;
  width: 62%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6a2183, #c28ed4);
  animation: cvSolBar 3.6s ease-in-out infinite;
}
@keyframes cvSolBar {
  0%, 100% { width: 58%; }
  50% { width: 72%; }
}
.cv-sol-buyout__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #5c5c5c;
  margin-bottom: 0.45rem;
}
.cv-sol-buyout__row strong { color: #141414; }
.cv-sol-buyout__total {
  margin: 0.75rem 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 750;
  color: #6a2183;
}
.cv-sol-buyout__btn {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  background: #141414;
  color: #fff;
  font-weight: 650;
  font-size: 0.9rem;
  animation: cvSolPulse 2.8s ease-in-out infinite;
}
.cv-sol-buyout__note {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: #6b6b6b;
  text-align: center;
}
@keyframes cvSolPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.cv-sol-steps { display: grid; gap: 0.65rem; }
.cv-sol-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: #f7f4f9;
  color: #5c5c5c;
  font-size: 0.88rem;
}
.cv-sol-step span {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e7d8ef;
  color: #6a2183;
  font-size: 0.72rem;
  font-weight: 700;
}
.cv-sol-step.is-done { opacity: 0.7; }
.cv-sol-step.is-active {
  background: rgba(106, 33, 131, 0.1);
  color: #141414;
  font-weight: 650;
  animation: cvSolPulse 2.8s ease-in-out infinite;
}
.cv-sol-step.is-active span { background: #6a2183; color: #fff; }
.cv-sol-tiers { display: grid; gap: 0.55rem; }
.cv-sol-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fafafa;
  position: relative;
}
.cv-sol-tier:has(em) {
  padding-top: 0.95rem;
}
.cv-sol-tier strong {
  font-size: 0.92rem;
  min-width: 0;
  overflow-wrap: anywhere;
}
.cv-sol-tier span {
  color: #5c5c5c;
  font-size: 0.85rem;
  flex: 0 0 auto;
  white-space: nowrap;
}
.cv-sol-tier.is-active {
  border-color: #6a2183;
  background: #fff;
  box-shadow: 0 0 0 1px #6a2183;
}
.cv-sol-tier em {
  position: absolute;
  top: -0.45rem;
  right: 0.55rem;
  max-width: min(48%, 7rem);
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: #6a2183;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cv-sol-access { text-align: center; }
.cv-sol-access__lock {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  background: #efe6f4;
  position: relative;
}
.cv-sol-access__lock::before {
  content: '';
  position: absolute;
  inset: 0.55rem;
  border-radius: 6px;
  border: 2px solid #6a2183;
  border-top-width: 0;
}
.cv-sol-access__lock.is-open::after {
  content: '';
  position: absolute;
  top: 0.35rem;
  left: 50%;
  width: 0.85rem;
  height: 0.7rem;
  margin-left: -0.15rem;
  border: 2px solid #6a2183;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: rotate(25deg);
  transform-origin: left bottom;
}
.cv-sol-access strong { display: block; font-size: 1rem; }
.cv-sol-access > span { display: block; margin: 0.25rem 0 0.85rem; color: #5c5c5c; font-size: 0.82rem; }
.cv-sol-access ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.cv-sol-access li {
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  background: #f7f4f9;
  font-size: 0.82rem;
  color: #5c5c5c;
}
.cv-sol-access li.is-on {
  background: rgba(106, 33, 131, 0.12);
  color: #6a2183;
  font-weight: 650;
}

/* —— Locale-safe micro-demo / widget badges —— */
.cv-ps-subdemo-wrap .ax-shadow-badge,
.cv-timeline-subdemo .ax-shadow-badge {
  white-space: normal;
  max-width: min(92%, 11rem);
  line-height: 1.2;
  text-align: center;
  padding: 0.2rem 0.55rem;
  top: -1.05rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.cv-ps-subdemo-wrap .ax-shadow-option--has-badge,
.cv-ps-subdemo-wrap .ax-shadow-option:has(.ax-shadow-badge),
.cv-timeline-subdemo .ax-shadow-option--has-badge,
.cv-timeline-subdemo .ax-shadow-option:has(.ax-shadow-badge) {
  margin-top: 1.35rem;
}
.cv-ps-subdemo-wrap .ax-shadow-header,
.cv-timeline-subdemo .ax-shadow-header {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.45rem 0.75rem;
}
.cv-ps-subdemo-wrap .ax-shadow-label,
.cv-timeline-subdemo .ax-shadow-label {
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.25;
}
.cv-ps-subdemo-wrap .ax-shadow-price-wrap,
.cv-timeline-subdemo .ax-shadow-price-wrap {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cv-ps-subdemo-wrap .gruns-best-value,
.cv-timeline-subdemo .gruns-best-value {
  white-space: normal;
  max-width: calc(100% - 8px);
  text-align: center;
  line-height: 1.15;
  padding: 3px 6px;
  font-size: 11px;
  overflow-wrap: anywhere;
}
.cv-ps-subdemo-wrap .checkivo-letterham-card__corner-badge,
.cv-timeline-subdemo .checkivo-letterham-card__corner-badge {
  white-space: normal;
  max-width: 6.5rem;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.cv-sol-trial__badge {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
  text-align: center;
}
.cv-sol-trial__label,
.cv-sol-buyout__total,
.cv-sol-access strong,
.cv-sol-access > span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* —— Compare pages —— */
.cv-cmp-hero-wrap {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: calc(var(--cv-header-height, var(--header-height, 5rem)) + 4.5rem) 0 1.5rem;
}
@media (min-width: 768px) {
  .cv-cmp-hero-wrap {
    padding-top: calc(var(--cv-header-height, var(--header-height, 5rem)) + 5.5rem);
  }
}
@media (min-width: 1024px) {
  .cv-cmp-hero-wrap {
    padding-top: calc(var(--cv-header-height, var(--header-height, 5rem)) + 6.5rem);
  }
}
.cv-cmp-hero {
  width: min(100% - 2.5rem, 52rem);
  margin: 0 auto 2rem;
  text-align: center;
  position: relative;
  z-index: 20;
}
.cv-cmp-duel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin: 1.25rem 0 1.75rem;
  flex-wrap: wrap;
}
.cv-cmp-duel__side {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(106, 33, 131, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  animation: cvCmpDuelIn 0.7s ease both;
}
.cv-cmp-duel__side:last-child { animation-delay: 0.12s; }
@keyframes cvCmpDuelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.cv-cmp-duel__logo { display: block; height: 1.55rem; width: auto; max-width: 9.5rem; object-fit: contain; }
.cv-cmp-duel__logo--checkivo { height: 1.35rem; }
.cv-cmp-duel__logo--recharge { height: 1.4rem; }
.cv-cmp-duel__logo--firmhouse { height: 1.55rem; }
.cv-cmp-duel__logo--shopify { height: 1.7rem; }
.cv-cmp-duel__vs {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.45);
}
.cv-cmp-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 750;
  color: #141414;
}
.cv-cmp-hero__lead {
  margin: 0 auto 1.6rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #3f3f3f;
}
.cv-cmp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.cv-cmp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cv-cmp-btn--primary { background: #6a2183; color: #fff; }
.cv-cmp-btn--primary:hover { background: #571b6c; }
.cv-cmp-btn--ghost {
  background: transparent;
  color: #141414;
  border: 1.5px solid rgba(20,20,20,0.18);
}
.cv-cmp-btn--ghost:hover { border-color: #6a2183; color: #6a2183; }

.cv-cmp-section-head {
  width: min(100% - 2.5rem, 44rem);
  margin: 0 auto 2rem;
  text-align: center;
}
.cv-cmp-fees,
.cv-cmp-matrix,
.cv-cmp-fit,
.cv-cmp-photo,
.cv-cmp-calc {
  width: min(100% - 2.5rem, 68rem);
  margin: 0 auto;
}

.cv-cmp-fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 760px) {
  .cv-cmp-fee-grid { grid-template-columns: 1fr; }
}
.cv-cmp-fee {
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fafafa;
}
.cv-cmp-fee.is-highlight {
  background: #fff;
  border-color: rgba(106, 33, 131, 0.35);
  box-shadow: 0 18px 40px -24px rgba(106, 33, 131, 0.55);
  animation: cvCmpGlow 4.5s ease-in-out infinite;
}
@keyframes cvCmpGlow {
  0%, 100% { box-shadow: 0 18px 40px -24px rgba(106, 33, 131, 0.45); }
  50% { box-shadow: 0 22px 48px -20px rgba(106, 33, 131, 0.7); }
}
.cv-cmp-fee__logo { display: block; height: 1.45rem; width: auto; max-width: 9rem; object-fit: contain; margin-bottom: 1rem; }
.cv-cmp-fee__brands { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 1rem; flex-wrap: wrap; }
.cv-cmp-fee__plus { color: #9a9a9a; font-weight: 600; }
.cv-cmp-fee__logo--cv { height: 1.2rem; }
.cv-cmp-fee__logo--stripe { height: 1.15rem; }
.cv-cmp-fee__label { margin: 0; font-size: 0.82rem; color: #5c5c5c; }
.cv-cmp-fee__value {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #141414;
  line-height: 1;
}
.cv-cmp-fee__value--zero { color: #6a2183; }
.cv-cmp-fee__note { margin: 0; font-size: 0.88rem; line-height: 1.45; color: #5c5c5c; }

/* Xodil-style compare chart */
.cv-cmp-chart.compare-chart {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
}
.compare-chart__overflow {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-top: 16px;
  padding-bottom: 16px;
}
.compare-chart__grid {
  margin-top: 0.5rem;
  min-width: 860px;
}
.compare-chart__grid > div {
  display: grid;
  text-align: center;
  align-items: center;
  grid-template-columns: 220px repeat(4, minmax(100px, 1fr));
  padding: 0;
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  font-weight: 600;
  color: #141414;
}
@media (min-width: 1230px) {
  .compare-chart__grid > div {
    grid-template-columns: 300px repeat(4, minmax(110px, 1fr));
  }
}
.compare-chart__grid .box {
  min-height: 92px;
  align-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 0.88rem;
  line-height: 1.35;
  padding: 0.75rem 0.45rem;
  overflow-wrap: anywhere;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-chart__grid .box--yes {
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}
.compare-chart__grid .box--yes svg {
  display: block;
  margin: 0 auto;
}
.compare-chart__grid > div.compare-chart__grid-bottom {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.compare-chart__grid > div.compare-chart__grid-bottom:last-of-type {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.compare-chart__grid > div p.box {
  padding: 15px 18px;
  margin: 0;
  font-weight: 400;
  color: #141414;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: left;
  justify-content: flex-start;
  display: flex;
}
.compare-chart__grid > div.compare-chart__header {
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
  background: #f3f3f3;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-left: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
}
.compare-chart__header > div {
  padding: 10px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-chart__header > div:empty { display: block; min-height: 1px; }
/* Only the Checkivo column uses .selected — purple frame */
.compare-chart__grid .selected {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 100%;
  border-left: 2px solid #6a2183;
  border-right: 2px solid #6a2183;
  background: #fff;
  min-width: 72px;
  min-height: 92px;
  box-sizing: border-box;
}
.compare-chart__grid .selected.sel-border-top {
  padding: 18px 10px 8px;
  border-top: 2px solid #6a2183;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  height: 112px;
  min-height: 112px;
  margin-top: -14px;
}
.compare-chart__grid .selected.sel-border-bottom {
  padding: 12px 0 22px;
  border-bottom: 2px solid #6a2183;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 112px;
  min-height: 112px;
  margin-bottom: -14px;
}
.compare-chart__grid .selected.box {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.compare-chart__grid .selected.sel-border-bottom.box {
  border-bottom: 2px solid #6a2183;
}
.compare-chart__logo {
  max-width: 88px;
  width: 100%;
  height: auto;
  max-height: 1.65rem;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.compare-chart__logo--plain {
  max-height: 1.35rem;
  opacity: 0.92;
}
.compare-chart__note {
  margin: 1.1rem auto 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.65);
  max-width: 40rem;
  text-align: center;
  padding: 0 1rem;
}
@media (max-width: 800px) {
  .compare-chart__grid > div p.box {
    font-size: 0.85rem;
    line-height: 1.35;
  }
  .compare-chart__grid .selected.sel-border-bottom {
    margin-bottom: 0;
  }
}

.cv-cmp-calc__lead {
  margin: 0.75rem auto 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #3f3f3f;
}
.cv-cmp-calc__board {
  width: 100%;
  margin-top: 0.5rem;
}

.cv-cmp-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 760px) {
  .cv-cmp-fit-grid { grid-template-columns: 1fr; }
}
.cv-cmp-fit-col {
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.07);
}
.cv-cmp-fit-col--cv {
  background: #fff;
  border-color: rgba(106, 33, 131, 0.28);
}
.cv-cmp-fit-col h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 750;
  color: #141414;
}
.cv-cmp-fit-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.cv-cmp-fit-col li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3f3f3f;
}
.cv-cmp-fit-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #c4b0ce;
}
.cv-cmp-fit-col--cv li::before { background: #6a2183; }

.cv-cmp-photo {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .cv-cmp-photo { grid-template-columns: 1fr; }
}
.cv-cmp-photo__lead {
  margin: 0.85rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #3f3f3f;
  max-width: 28rem;
}
.cv-cmp-photo__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(106, 33, 131, 0.12);
  background: #ffffff;
  box-shadow: 0 22px 50px -28px rgba(106, 33, 131, 0.55);
  transform: translateZ(0);
  aspect-ratio: 1 / 1;
  min-height: 280px;
  max-height: 34rem;
}
.cv-cmp-photo__frame.cv-adv-panel__frame {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #ffffff !important;
}
.cv-cmp-photo__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

[data-cv-extra="compare-recharge"],
[data-cv-extra="compare-firmhouse"],
[data-cv-extra="compare-shopify"] {
  display: flex !important;
  flex-direction: column !important;
  gap: 5.5rem !important;
  padding-bottom: 3rem !important;
}
@media (prefers-reduced-motion: reduce) {
  .cv-cmp-duel__side,
  .cv-cmp-fee.is-highlight,
}
