@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Vollkorn:wght@600;700&display=swap);


/* ─── Section ──────────────────────────────────────────────────────────────── */
.cmpv2 {
  width: 100%;
  box-sizing: border-box;
  background: #0a0a0f;
  position: relative;
  overflow: hidden;
}

/* Outer parallax mover — extends beyond section so there's no gap when JS
   shifts it. JS sets transform: translateY() on this element only. */
.cmpv2__bg {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  pointer-events: none;
  will-change: transform;
}

/* Inner rotation layer — matches Figma's rotate(90deg) on the blurred image.
   Rotation is around the section center; the element is large enough that
   the rotated box fully covers the outer div at all parallax positions. */
.cmpv2__bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220%;
  height: 220%;
  background-image: url('https://cdn.prod.website-files.com/674e0ae3700bf3e5146ce20f/69e04adcf4b2cb137baa73c1_ComparisonImageBackground.avif');
  background-size: cover;
  background-position: center 5%;
  filter: blur(10px);
  /* Center then rotate — mirrors Figma's positioning exactly */
  transform: translate(-50%, -50%) rotate(90deg);
}

/* ─── Inner Wrapper ────────────────────────────────────────────────────────── */
.cmpv2__inner {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  padding: 80px 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* ─── Eyebrow ──────────────────────────────────────────────────────────────── */
.cmpv2__eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #271d3b;
  text-align: center;
  margin: 0;
}

/* ─── Cards Row ────────────────────────────────────────────────────────────── */
.cmpv2__cards {
  display: flex;
  gap: 37px;
  align-items: stretch;
  width: 100%;
  max-width: 62rem;
}

/* ─── Card Base ────────────────────────────────────────────────────────────── */
.cmpv2__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 20px;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ─── Traditional Card (left — dark glass, no shadow) ─────────────────────── */
.cmpv2__card--traditional {
  background: rgba(167, 125, 197, 0.20);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
}

/* ─── Suzy Card (right — light glass + shadow) ────────────────────────────── */
.cmpv2__card--suzy {
  background: rgba(247, 244, 253, 0.5);
  border: 1px solid rgba(167, 125, 197, 0.2);
  box-shadow: 0px 8px 40px 0px rgba(39, 29, 59, 0.15);
}

/* ─── Badge ────────────────────────────────────────────────────────────────── */
.cmpv2__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  color: #271d3b;
  white-space: nowrap;
  align-self: flex-start;
}

.cmpv2__card--traditional .cmpv2__badge {
  background: rgba(247, 244, 253, 0.1);
  border: 1px solid rgba(247, 244, 253, 0.2);
  font-weight: 700;
}

.cmpv2__card--suzy .cmpv2__badge {
  background: rgba(167, 125, 197, 0.2);
  border: 1px solid rgba(167, 125, 197, 0.2);
  font-weight: 600;
}

/* Lightning icon */
.cmpv2__badge-icon {
  width: 10px;
  height: 12px;
  flex-shrink: 0;
}

/* ─── Card Heading ─────────────────────────────────────────────────────────── */
.cmpv2__card-heading {
  font-family: 'Vollkorn', Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  color: #271d3b;
  margin: 0;
}

/* ─── Card Subtext ─────────────────────────────────────────────────────────── */
.cmpv2__card-subtext {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #271d3b;
  margin: 0;
}

/* ─── Divider ──────────────────────────────────────────────────────────────── */
.cmpv2__divider {
  height: 1.5px;
  flex-shrink: 0;
}

.cmpv2__card--traditional .cmpv2__divider {
  background: rgba(247, 244, 253, 0.1);
}

.cmpv2__card--suzy .cmpv2__divider {
  background: rgba(167, 125, 197, 0.2);
}

/* ─── Items List ───────────────────────────────────────────────────────────── */
.cmpv2__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ─── Single Item ──────────────────────────────────────────────────────────── */
.cmpv2__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── Item Icon (23×23px as per Figma) ────────────────────────────────────── */
.cmpv2__item-icon {
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  display: block;
}

/* ─── Item Text ────────────────────────────────────────────────────────────── */
.cmpv2__item-text {
  flex: 1 0 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #271d3b;
  margin: 0;
  min-width: 1px;
}

.cmpv2__item-text strong {
  font-weight: 600;
}

/* ─── Responsive: Tablet (≤ 991px) ───────────────────────────────────────── */
@media (max-width: 991px) {
  .cmpv2__inner {
    padding: 64px 2rem;
    gap: 36px;
  }

  .cmpv2__card-heading {
    font-size: 22px;
  }

  .cmpv2__cards {
    gap: 20px;
  }
}

/* ─── Responsive: Mobile Landscape (≤ 767px) ─────────────────────────────── */
@media (max-width: 767px) {
  .cmpv2__inner {
    padding: 48px 2rem;
    gap: 28px;
  }

  .cmpv2__cards {
    flex-direction: column;
    max-width: 100%;
  }

  .cmpv2__card {
    padding: 24px;
  }

  .cmpv2__card-heading {
    font-size: 22px;
  }


}

/* ─── Responsive: Mobile Portrait (≤ 479px) ──────────────────────────────── */
@media (max-width: 479px) {
  .cmpv2__inner {
    padding: 40px 2rem;
    gap: 24px;
  }

  .cmpv2__card {
    padding: 20px;
  }

  .cmpv2__card-heading {
    font-size: 20px;
  }

  .cmpv2__item-text {
    font-size: 14px;
  }


}

