/* =========================================================
   Coloring Pages Hero Section (scoped: .cp-hero / .cp-*)
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: #160a3a;
  color: #fff;
  min-width: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Shared section heading styles (sections 2, 3, and upcoming) */
.cp-heading-gradient {
  background: linear-gradient(90deg, #fec505 0%, #fa204b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cp-section-head {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 820px;
}

.cp-section-title {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.cp-section-spark {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}

.cp-section-sub {
  margin: 0;
  color: #fff;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .cp-section-title {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cp-section-spark {
    width: 26px;
  }
}

@media (max-width: 640px) {
  .cp-section-head {
    margin-bottom: 28px;
  }

  .cp-section-title {
    gap: 8px;
    font-size: 1.55rem;
  }

  .cp-section-spark {
    width: 24px;
  }
}

.cp-hero {
  --cp-bg-top: #1a0c47;
  --cp-bg-mid: #1e0e5c;
  --cp-bg-bot: #071a5c;
  --cp-accent: #ff9d00;
  --cp-accent-deep: #ff7a12;
  --cp-gold: #f6a422;
  --cp-text: #ffffff;
  --cp-muted: #cbbfe6;
  --cp-cyan: #6ee7ff;
  --cp-green: #22d46b;
  --cp-magenta: #d425f0;
  --cp-purple: #7b35ef;
  --cp-dash: #c084fc;
  --cp-card: #1c095a;
  --cp-cta-text: #14082c;
  --cp-max: 1220px;
  --cp-wrap: min(100% - 40px, var(--cp-max));

  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-optical-sizing: auto;
  color: var(--cp-text);
  background:
    radial-gradient(ellipse 80% 50% at 78% 48%, rgba(88, 40, 180, 0.45) 0%, transparent 62%),
    radial-gradient(ellipse 55% 40% at 12% 70%, rgba(40, 30, 140, 0.4) 0%, transparent 70%),
    linear-gradient(180deg, var(--cp-bg-top) 0%, var(--cp-bg-mid) 48%, var(--cp-bg-bot) 100%);
}

.cp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 18%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 22% 62%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.2px 1.2px at 48% 28%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 71% 14%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.2px 1.2px at 88% 42%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 92% 78%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.2px 1.2px at 36% 86%, rgba(255, 255, 255, 0.28), transparent);
}

.cp-hero > * {
  position: relative;
  z-index: 1;
}

.cp-hero a {
  text-decoration: none;
}

.cp-hero img {
  max-width: 100%;
  height: auto;
  display: block;
}

.cp-hero-wrap {
  width: var(--cp-wrap);
  margin: 0 auto;
  padding: 32px 0 44px;
}

/* ---------- Offer bar ---------- */

.cp-offer-bar {
  padding: 9px 0;
  background: linear-gradient(90deg, #d425f0 0%, #b22ef0 42%, #8b32ef 78%, #7b35ef 100%);
}

.cp-offer-bar-inner {
  width: var(--cp-wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cp-offer-text {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  /* letter-spacing: 0.01em; */
  white-space: nowrap;
}

.cp-offer-text s {
  text-decoration: line-through;
  text-decoration-thickness: 2px; 
  text-underline-offset: 0;
  font-weight: 500;
  margin: 0 0.2em;
  opacity: 0.9;
}

.cp-offer-text strong {
  font-weight: 800;
}

.cp-offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffd012 0%, #ff9f16 55%, #ff7412 100%);
  color: #111;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.cp-offer-cta:hover,
.cp-offer-cta:focus-visible {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.08);
  box-shadow: 0 8px 20px rgba(255, 150, 0, 0.35);
}

.cp-offer-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ---------- Timers ---------- */

.cp-timer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.cp-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cp-timer-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 34px;
  padding: 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  border-radius: 5px;
}

.cp-timer-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  padding-top: 4px;
}

.cp-timer-sep {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 34px;
  padding: 0 1px;
}

.cp-timer--light .cp-timer-box {
  background: #fff;
  color: #1a0c47;
}

.cp-timer--dark .cp-timer-box {
  min-width: 48px;
  height: 42px;
  background: #2a1068;
  color: #fff;
  border: 1px solid #b56cff;
  box-shadow: 0 0 10px rgba(181, 108, 255, 0.25);
  font-size: 1.2rem;
  border-radius: 7px;
}

.cp-timer--dark .cp-timer-sep {
  line-height: 42px;
  font-size: 1.35rem;
}

.cp-timer--dark .cp-timer-label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

/* ---------- Header ---------- */

.cp-hero-head {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.cp-eyebrow {
  margin: 0 0 14px;
  color: var(--cp-gold);
  font-size: 1.25rem; /* 20px */
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cp-hero-head h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 2.25rem; /* 36px */
  font-weight: 800;
  line-height: 1.45;
}

.cp-h1-line {
  display: block;
}

.cp-mark {
  display: inline;
  background: var(--cp-accent);
  color: #14082c;
  padding: 0.06em 0.26em 0.1em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}

.cp-subhead {
  margin: 0;
  font-size: 1.5rem; /* 24px */
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
}

.cp-subhead-line {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
}

.cp-accent {
  color: var(--cp-gold);
}

/* ---------- Two-column body ---------- */

.cp-hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px 40px;
  align-items: start;
}

/* ---------- Benefits column ---------- */

.cp-benefits-title {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
}

.cp-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1.5px dashed #D946EF;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(12, 6, 40, 0.25);
  width: 100%;
}

.cp-ribbon .fa-bookmark {
  color: var(--cp-accent);
  font-size: 0.9rem;
}

.cp-checklist {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 11px;
}

.cp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}

.cp-check {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--cp-green);
  color: #fff;
  box-shadow: 0 2px 6px rgba(34, 212, 107, 0.35);
}

.cp-check i {
  font-size: 0.7rem;
  font-weight: 900;
}

/* ---------- Feature grid ---------- */

.cp-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 18px;
  border: 1.5px dashed #D946EF;
  border-radius: 10px;
  overflow: hidden;
}

.cp-feat-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
  color: #fff;
  font-size: 1rem; /* 16px */
  font-weight: 600;
  line-height: 1.3;
  border-right: 1px solid rgba(192, 132, 252, 0.55);
  border-bottom: 1px solid rgba(192, 132, 252, 0.55);
  transition: background 0.2s ease, transform 0.2s ease;
}

.cp-feat-cell:nth-child(2n) {
  border-right: none;
}

.cp-feat-cell:nth-child(n + 3) {
  border-bottom: none;
}

.cp-feat-cell i {
  flex-shrink: 0;
  font-size: 1.15rem;
  background: linear-gradient(180deg, #ffd012, #ff7a12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.2s ease;
}

.cp-feat-cell:hover,
.cp-feat-cell:focus-within {
  background: rgba(255, 255, 255, 0.05);
}

.cp-feat-cell:hover i {
  transform: scale(1.12);
}

/* ---------- Shared primary CTA (.cp-cta) ---------- */

.cp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 14px 16px 14px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ffd012 0%, #ff9f16 48%, #ff6e10 100%);
  color: var(--cp-cta-text, #14082c);
  box-shadow: 0 8px 22px rgba(255, 130, 0, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.cp-cta:hover,
.cp-cta:focus-visible {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.07);
  box-shadow: 0 12px 28px rgba(255, 130, 0, 0.48);
}

.cp-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.cp-cta--centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cp-cta--spaced {
  margin-bottom: 16px;
}

.cp-cta--spaced-top {
  margin-top: 8px;
}

.cp-cta--featured {
  gap: 18px;
  padding: 14px 20px 14px 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, #fec106 0%, #fb881e 48%, #fa2747 100%);
  box-shadow: 0 10px 28px rgba(250, 80, 40, 0.28);
}

.cp-cta--featured:hover,
.cp-cta--featured:focus-visible {
  box-shadow: 0 14px 32px rgba(250, 80, 40, 0.4);
}

.cp-cta-gift {
  width: 64px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cp-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* flex: 1; */
  text-align: center;
  min-width: 0;
}

.cp-cta-title {
  font-size: 1.375rem; /* 22px */
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
}

.cp-cta-sub {
  margin-top: 3px;
  font-size: 0.75rem; /* 12px */
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.cp-cta--featured .cp-cta-title {
  font-size: 1.5rem; /* 24px */
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cp-cta--featured .cp-cta-sub {
  margin-top: 4px;
  font-size: 1.125rem; /* 18px */
  letter-spacing: normal;
  text-transform: none;
  opacity: 1;
  color: #1a0a3a;
}

.cp-cta--featured .cp-cta-sub em {
  font-style: normal;
  color: #e11d48;
  font-weight: 800;
}

.cp-cta-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #14082c;
  color: #fff;
  font-size: 1rem;
}

.cp-cta--featured .cp-cta-arrow {
  width: 42px;
  height: 42px;
  color: #ff4d6d;
  font-size: 1rem;
}

.cp-social {
  margin: 14px 0 0;
  color: var(--cp-cyan);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- Product column ---------- */

.cp-product {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.cp-visual::before {
  content: "";
  position: absolute;
  inset: 12% 10% 18%;
  background: radial-gradient(circle, rgba(140, 110, 255, 0.5) 0%, rgba(60, 40, 180, 0.18) 48%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.cp-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

/* ---------- Price card ---------- */

.cp-price-card {
  width: 100%;
  max-width: 520px;
  margin-top: 32px;
  padding: 22px 20px 18px;
  border: 2px dashed #f80d5d;
  border-radius: 12px;
  background: rgba(18, 6, 70, 0.72);
  text-align: center;
  position: relative;
  z-index: 2;
}

.cp-price-card .cp-timer {
  margin-bottom: 16px;
}

.cp-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cp-off-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #c44dff;
  background: #3a0d72;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cp-old-price {
  position: relative;
  color: #b9a8d6;
  font-size: 1.35rem;
  font-weight: 700;
}

.cp-old-price::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: 52%;
  border-top: 2px solid #ff4d8d;
  transform: rotate(-14deg);
}

.cp-new-price {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffe14a 0%, #ff9d00 55%, #ff7a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cp-price-note {
  margin: 0;
  color: var(--cp-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Perfect for bar ---------- */

.cp-perfect {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding: 6px 8px 6px 6px;
  border: 1px solid rgba(180, 160, 255, 0.45);
  border-radius: 12px;
  background: rgba(12, 18, 72, 0.65);
}

.cp-perfect-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: #6b3bd4;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.cp-perfect-list {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cp-perfect-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  gap: 8px;
  padding: 10px 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  min-width: 0;
}

/* Even vertical stripes between items only (not after label) */
.cp-perfect-list li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: rgba(200, 185, 255, 0.55);
}

.cp-perfect-list i {
  font-size: 0.95rem;
  color: #fff;
}

/* ---------- Responsive ---------- */

@media (min-width: 961px) {
  .cp-h1-line:last-child {
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .cp-hero {
    --cp-wrap: min(100% - 32px, var(--cp-max));
  }

  .cp-offer-text {
    font-size: 0.85rem;
  }

  .cp-perfect-list li {
    font-size: 0.8rem;
    padding: 10px 8px;
    gap: 6px;
  }
}

@media (max-width: 960px) {
  .cp-offer-bar {
    padding: 12px 0 14px;
  }

  .cp-offer-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .cp-offer-text {
    width: 100%;
    white-space: normal;
  }

  .cp-eyebrow {
    font-size: 1.125rem; /* 18px */
  }

  .cp-hero-head h1 {
    font-size: 1.75rem; /* 28px */
  }

  .cp-subhead {
    font-size: 1.25rem; /* 20px */
  }

  .cp-checklist li {
    font-size: 1.0625rem; /* 17px */
  }

  .cp-hero-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cp-product {
    order: -1;
  }

  .cp-visual {
    max-width: 480px;
  }

  .cp-price-card {
    margin-top: 24px;
  }

  .cp-perfect {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px;
    gap: 12px;
  }

  .cp-perfect-list {
    flex-wrap: wrap;
    width: 100%;
  }

  .cp-perfect-list li {
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 8px 12px;
  }

  .cp-perfect-list li + li::before {
    display: none;
  }

  .cp-h1-line {
    display: inline;
  }

  .cp-h1-line::after {
    content: " ";
  }
}

@media (max-width: 640px) {
  .cp-hero {
    --cp-wrap: min(100% - 24px, var(--cp-max));
  }

  .cp-hero-wrap {
    padding: 24px 0 32px;
  }

  .cp-offer-cta {
    width: 100%;
  }

  .cp-timer--light .cp-timer-box {
    min-width: 34px;
    height: 30px;
    font-size: 0.95rem;
  }

  .cp-timer--light .cp-timer-sep {
    line-height: 30px;
  }

  .cp-eyebrow {
    font-size: 1rem; /* 16px */
    letter-spacing: 0.06em;
  }

  .cp-hero-head h1 {
    font-size: 1.5rem; /* 24px */
    line-height: 1.4;
  }

  .cp-subhead {
    font-size: 1.125rem; /* 18px */
  }

  .cp-checklist li {
    font-size: 1.0625rem; /* 17px */
  }

  .cp-mark {
    white-space: normal;
  }

  .cp-feat-cell {
    padding: 14px 10px;
    font-size: 0.9375rem; /* 15px */
  }

  .cp-cta {
    padding: 12px 12px 12px 14px;
  }

  .cp-price-row {
    gap: 10px 14px;
  }

  .cp-new-price {
    font-size: 2.25rem;
  }

  .cp-perfect-list li {
    width: calc(50% - 8px);
    justify-content: flex-start;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .cp-offer-text {
    font-size: 0.8rem;
  }

  .cp-eyebrow {
    font-size: 0.9375rem; /* 15px */
  }

  .cp-hero-head h1 {
    font-size: 1.375rem; /* 22px */
  }

  .cp-subhead {
    font-size: 1rem; /* 16px */
  }

  .cp-checklist li {
    font-size: 1rem; /* 16px */
  }

  .cp-feat-cell {
    font-size: 0.875rem; /* 14px */
  }

  .cp-perfect-list li {
    width: 100%;
  }

  .cp-timer--dark .cp-timer-box {
    min-width: 40px;
    height: 36px;
    font-size: 1rem;
  }

  .cp-timer--dark .cp-timer-sep {
    line-height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cp-offer-cta,
  .cp-cta,
  .cp-feat-cell,
  .cp-feat-cell i,
  .cp-more-card,
  .cp-preview-card {
    transition: none;
  }

  .cp-offer-cta:hover,
  .cp-cta:hover,
  .cp-preview-card:hover {
    transform: none;
  }
}

/* =========================================================
   More Than Just Coloring Section (scoped: .cp-more / .cp-more-*)
   ========================================================= */

.cp-more {
  --cp-more-bg: #0d1249;
  --cp-more-card: #121548;
  --cp-more-border: rgba(140, 155, 220, 0.35);
  --cp-more-muted: #c8cde8;
  --cp-wrap: min(100% - 40px, 1220px);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  background: var(--cp-more-bg);
  padding: 64px 0 72px;
}

.cp-more-wrap {
  width: var(--cp-wrap);
  margin: 0 auto;
}

.cp-more a {
  text-decoration: none;
}

.cp-more img {
  max-width: 100%;
  height: auto;
  display: block;
}

.cp-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.cp-more-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 18px;
  border: 1px solid var(--cp-more-border);
  border-radius: 14px;
  background: var(--cp-more-card);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.cp-more-card:hover {
  transform: translateY(-2px);
  border-color: var(--card-tone);
}

.cp-more-card--purple { --card-tone: #a78bfa; }
.cp-more-card--blue { --card-tone: #60a5fa; }
.cp-more-card--green { --card-tone: #4ade80; }
.cp-more-card--orange { --card-tone: #fb7185; }
.cp-more-card--pink { --card-tone: #f472b6; }
.cp-more-card--violet { --card-tone: #c084fc; }

.cp-more-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--card-tone);
  background: rgba(8, 12, 48, 0.55);
  overflow: hidden;
}

.cp-more-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.cp-more-copy {
  min-width: 0;
  flex: 1;
}

.cp-more-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.cp-more-rule {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 2px;
  margin: 0 0 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--card-tone), transparent);
}

.cp-more-copy p {
  margin: 0;
  color: var(--cp-more-muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .cp-more {
    --cp-wrap: min(100% - 32px, 1220px);
  }

  .cp-more-grid {
    gap: 16px;
  }

  .cp-more-copy h3 {
    font-size: 0.98rem;
  }

  .cp-more-copy p {
    font-size: 0.84rem;
  }
}

@media (max-width: 960px) {
  .cp-more {
    padding: 48px 0 56px;
  }

  .cp-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cp-more {
    --cp-wrap: min(100% - 24px, 1220px);
    padding: 40px 0 48px;
  }

  .cp-more-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .cp-cta--featured {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }

  .cp-cta--featured .cp-cta-title {
    font-size: 1.25rem; /* 20px */
  }

  .cp-cta--featured .cp-cta-sub {
    font-size: 1rem; /* 16px */
  }

  .cp-cta--featured .cp-cta-copy {
    order: 2;
    width: 100%;
  }

  .cp-cta--featured .cp-cta-gift {
    order: 1;
  }

  .cp-cta--featured .cp-cta-arrow {
    order: 3;
  }
}

/* =========================================================
   Before / After Compare Section (scoped: .cp-compare)
   ========================================================= */

.cp-compare {
  --cp-wrap: min(100% - 40px, 1220px);
  --cp-compare-bg: #180c3e;
  --cp-compare-before: #f43f5e;
  --cp-compare-after: #22c55e;
  --cp-compare-arrow: #7c3aed;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  background: linear-gradient(180deg, #1a0c47 0%, var(--cp-compare-bg) 40%, #0b1658 100%);
  padding: 64px 0 72px;
}

.cp-compare-wrap {
  width: var(--cp-wrap);
  margin: 0 auto;
}

.cp-compare a {
  text-decoration: none;
}

.cp-compare img {
  max-width: 100%;
  height: auto;
  display: block;
}

.cp-compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 28px;
}

.cp-compare-card {
  padding: 22px 20px 20px;
  border-radius: 14px;
  background: rgba(18, 10, 60, 0.72);
}

.cp-compare-card--before {
  border: 1.5px dashed #f43f5e;
  background: #9f123914;
}

.cp-compare-card--after {
  border: 1.5px dashed #2dd4bf;
  background: #0f766e14;
}

.cp-compare-card-head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "badge mood"
    "title mood";
  gap: 12px 14px;
  align-items: start;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cp-compare-card--before .cp-compare-card-head {
  border-bottom-color: rgba(244, 63, 94, 0.45);
}

.cp-compare-card--after .cp-compare-card-head {
  border-bottom-color: rgba(45, 212, 191, 0.45);
}

.cp-compare-badge {
  grid-area: badge;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.cp-compare-card--before .cp-compare-badge {
  background: #9f123914;
  border: 1px solid #9f1239;
}

.cp-compare-card--after .cp-compare-badge {
  background: #0f766e14;
  border: 1px solid #0f766e;
}

.cp-compare-card-title {
  grid-area: title;
  margin: 0;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.3;
}

.cp-compare-mood {
  grid-area: mood;
  width: 48px;
  height: auto;
  align-self: center;
}

.cp-compare-card--after .cp-compare-mood {
  width: 56px;
}

.cp-compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.cp-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cp-compare-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
}

.cp-compare-card--before .cp-compare-mark {
  background: #ef4444;
}

.cp-compare-card--after .cp-compare-mark {
  background: #22c55e;
}

.cp-compare-list li > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cp-compare-list strong {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
}

.cp-compare-card--before .cp-compare-list strong {
  color: #fb7185;
}

.cp-compare-card--after .cp-compare-list strong {
  color: #4ade80;
}

.cp-compare-list li > span:last-child > span {
  color: #e8e4ff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.cp-compare-arrow {
  align-self: center;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cp-compare-arrow);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
}

.cp-compare-note {
  max-width: 820px;
  margin: 0 auto;
  padding: 12px 18px;
  border: 1px solid rgba(180, 160, 255, 0.4);
  border-radius: 10px;
  background: rgba(12, 18, 72, 0.45);
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.cp-compare-note strong {
  color: #fb7185;
  font-weight: 800;
  text-transform: uppercase;
  margin-right: 4px;
}

@media (max-width: 1100px) {
  .cp-compare {
    --cp-wrap: min(100% - 32px, 1220px);
  }
}

@media (max-width: 960px) {
  .cp-compare {
    padding: 48px 0 56px;
  }

  .cp-compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cp-compare-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .cp-compare {
    --cp-wrap: min(100% - 24px, 1220px);
    padding: 40px 0 48px;
  }

  .cp-compare-card {
    padding: 18px 14px 16px;
  }

  .cp-compare-card-title {
    font-size: 1.375rem;
  }

  .cp-compare-list strong {
    font-size: 0.92rem;
  }

  .cp-compare-list li > span:last-child > span {
    font-size: 0.84rem;
  }

  .cp-compare-note {
    font-size: 0.84rem;
    padding: 12px 14px;
  }
}

/* =========================================================
   Preview / What's Inside Section (scoped: .cp-preview)
   ========================================================= */

.cp-preview {
  --cp-wrap: min(100% - 40px, 1220px);
  --cp-preview-bg: #0d1658;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  background: linear-gradient(180deg, #120a42 0%, var(--cp-preview-bg) 50%, #0a1450 100%);
  padding: 64px 0 72px;
}

.cp-preview-wrap {
  width: var(--cp-wrap);
  margin: 0 auto;
}

.cp-preview a {
  text-decoration: none;
}

.cp-preview img {
  max-width: 100%;
  height: auto;
  display: block;
}

.cp-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.cp-preview-card {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(140, 155, 220, 0.28);
  background: #121548;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cp-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.cp-preview-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #0a0f38;
}

.cp-preview-card h3 {
  margin: 0;
  padding: 12px 10px;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  background: #0e1448;
}

.cp-preview-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 24px;
  padding: 16px 22px;
  border: 1.5px dashed #a78bfa;
  border-radius: 12px;
  background: rgba(18, 10, 60, 0.55);
}

.cp-preview-banner p {
  margin: 0;
  /* flex: 1; */
  text-align: center;
  color: #fff;
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  line-height: 1.45;
}

.cp-preview-banner-icon {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.cp-preview-banner-face {
  width: 42px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .cp-preview {
    --cp-wrap: min(100% - 32px, 1220px);
  }

  .cp-preview-grid {
    gap: 16px;
  }

  .cp-preview-card h3 {
    font-size: 0.84rem;
    padding: 10px 8px;
  }
}

@media (max-width: 960px) {
  .cp-preview {
    padding: 48px 0 56px;
  }

  .cp-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cp-preview {
    --cp-wrap: min(100% - 24px, 1220px);
    padding: 40px 0 48px;
  }

  .cp-preview-grid {
    gap: 14px;
    margin-bottom: 20px;
  }

  .cp-preview-banner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
  }

  .cp-preview-banner p {
    order: 3;
    width: 100%;
    font-size: 1.125rem; /* 18px */
  }
}

/* =========================================================
   Special Deal / Offer Section (scoped: .cp-deal)
   ========================================================= */

.cp-deal {
  --cp-wrap: min(100% - 40px, 760px);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(110, 40, 180, 0.45) 0%, transparent 70%),
    linear-gradient(180deg, #1a0a48 0%, #140838 45%, #0c1458 100%);
  padding: 56px 0 72px;
}

.cp-deal a {
  text-decoration: none;
}

.cp-deal-wrap {
  width: var(--cp-wrap);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-deal-visual {
  width: min(100%, 420px);
  margin: 0 auto 22px;
}

.cp-deal-visual img {
  width: 328px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.4));
  margin: 0 auto;
}

.cp-deal-tagline {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.375rem; /* 22px */
  font-weight: 600;
  line-height: 1.4;
}

.cp-deal-title {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cp-deal-regular {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.375rem; /* 22px */
  font-weight: 600;
}

.cp-deal-regular s {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.9;
}

.cp-deal-urgency {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
}

.cp-deal .cp-timer {
  margin-bottom: 14px;
}

.cp-timer--xl .cp-timer-box {
  min-width: 56px;
  height: 52px;
  font-size: 1.45rem;
  border-radius: 8px;
}

.cp-timer--xl .cp-timer-sep {
  line-height: 52px;
  font-size: 1.5rem;
  padding: 0 4px;
}

.cp-timer--xl .cp-timer-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.cp-deal-expire {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  max-width: 520px;
}

.cp-deal-trust {
  margin: 0;
  color: #ffc107;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .cp-deal {
    --cp-wrap: min(100% - 24px, 760px);
    padding: 40px 0 52px;
  }

  .cp-deal-visual {
    width: min(100%, 320px);
    margin-bottom: 18px;
  }

  .cp-deal-tagline,
  .cp-deal-regular {
    font-size: 1.25rem; /* 20px */
  }

  .cp-timer--xl .cp-timer-box {
    min-width: 46px;
    height: 44px;
    font-size: 1.2rem;
  }

  .cp-timer--xl .cp-timer-sep {
    line-height: 44px;
    font-size: 1.25rem;
  }

  .cp-deal-expire {
    font-size: 0.82rem;
  }

  .cp-deal-trust {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
}

/* =========================================================
   Creative Play / Why Parents (scoped: .cp-play)
   ========================================================= */

.cp-play {
  --cp-wrap: min(100% - 40px, 1220px);
  --cp-play-bg: #080b2c;
  --cp-play-card: #0d1238;
  --cp-play-muted: #c5cae8;
  --cp-play-orange: #ff7a2f;
  --cp-play-purple: #a855f7;
  --cp-play-green: #22c55e;
  --cp-play-pink: #ec4899;
  --cp-play-blue: #38bdf8;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  background: linear-gradient(180deg, #0a0d2e 0%, var(--cp-play-bg) 40%, #0a1240 100%);
  padding: 64px 0 72px;
}

.cp-play-wrap {
  width: var(--cp-wrap);
  margin: 0 auto;
}

.cp-play a {
  text-decoration: none;
}

.cp-play img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cp-play-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
}

.cp-play-visual {
  border-radius: 18px;
  overflow: hidden;
  /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); */
}
.cp-play-visual img {
  width: 100%;
  max-width: 490px;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border-radius: 12px;
}

.cp-play-steps {
  list-style: none;
  margin: 0;
  padding: 0 84px 0 0;
}

.cp-play-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(120, 130, 190, 0.28);
}

.cp-play-step:first-child {
  padding-top: 0;
}

.cp-play-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cp-play-step-icon {
  flex-shrink: 0;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cp-play-step-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.cp-play-step-icon--orange {
  background: rgba(255, 122, 47, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 122, 47, 0.35);
}

.cp-play-step-icon--purple {
  background: rgba(168, 85, 247, 0.18);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.35);
}

.cp-play-step-icon--green {
  background: rgba(34, 197, 94, 0.16);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35);
}

.cp-play-step-icon--pink {
  background: rgba(236, 72, 153, 0.18);
  box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.35);
}

.cp-play-step-copy {
  min-width: 0;
  text-align: left;
}

.cp-play-step-copy h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.25;
}

.cp-play-step-copy p {
  margin: 0;
  color: var(--cp-play-muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.cp-play-love-head {
  text-align: center;
  margin: 0 0 28px;
}

.cp-play-love-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.cp-play-love-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.cp-play-love-card {
  padding: 22px 18px 24px;
  border-radius: 14px;
  background: var(--cp-play-card);
  border: 1.5px solid transparent;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cp-play-love-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.cp-play-love-card--purple {
  border-color: rgba(168, 85, 247, 0.7);
}

.cp-play-love-card--pink {
  border-color: rgba(236, 72, 153, 0.7);
}

.cp-play-love-card--green {
  border-color: rgba(34, 197, 94, 0.7);
}

.cp-play-love-card--blue {
  border-color: rgba(56, 189, 248, 0.7);
}

.cp-play-love-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  font-size: 3rem;
}

.cp-play-love-card--purple .cp-play-love-icon {
  color: var(--cp-play-purple);
}

.cp-play-love-card--pink .cp-play-love-icon {
  color: var(--cp-play-pink);
}

.cp-play-love-card--green .cp-play-love-icon {
  color: var(--cp-play-green);
}

.cp-play-love-card--blue .cp-play-love-icon {
  color: var(--cp-play-blue);
}

.cp-play-love-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
}

.cp-play-love-card--purple h3 {
  color: var(--cp-play-purple);
}

.cp-play-love-card--pink h3 {
  color: var(--cp-play-pink);
}

.cp-play-love-card--green h3 {
  color: var(--cp-play-green);
}

.cp-play-love-card--blue h3 {
  color: var(--cp-play-blue);
}

.cp-play-love-card p {
  margin: 0;
  color: #e8eaf8;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.cp-play-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  border-radius: 18px;
  background: linear-gradient(-90deg, #220a54 100%, #9858f3 0%) padding-box, linear-gradient(90deg, #9858F3 100%, #9858F3 32%) border-box;
  border: 1.5px solid transparent;
}

.cp-play-banner-art {
  width: 110px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.cp-play-banner-art--left {
  width: 154px;
}

.cp-play-banner-art--right {
  width: 120px;
}

.cp-play-banner-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; 
  flex: 0 1 560px;
  min-width: 0;
}

.cp-play-banner-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.cp-play-banner-sub {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  line-height: 1.4;
}

.cp-play-banner-sub em {
  font-style: normal;
  color: #f43f7a;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .cp-play {
    --cp-wrap: min(100% - 32px, 1220px);
  }

  .cp-play-feature {
    gap: 28px;
  }

  .cp-play-love-grid {
    gap: 14px;
  }

  .cp-play-banner-art--left {
    width: 84px;
  }

  .cp-play-banner-art--right {
    width: 96px;
  }
}

@media (max-width: 960px) {
  .cp-play {
    padding: 48px 0 56px;
  }

  .cp-play-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .cp-play-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .cp-play-steps {
    padding-right: 0;
  }

  .cp-play-love-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cp-play-banner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 22px 16px 26px;
  }

  .cp-play-banner-art--left {
    order: 1;
    width: 80px;
  }

  .cp-play-banner-body {
    order: 2;
    flex: 1 1 100%;
  }

  .cp-play-banner-art--right {
    order: 3;
    width: 96px;
  }
}

@media (max-width: 640px) {
  .cp-play {
    --cp-wrap: min(100% - 24px, 1220px);
    padding: 40px 0 48px;
  }

  .cp-play-step {
    gap: 14px;
    padding: 16px 0;
  }

  .cp-play-step-icon {
    width: 50px;
    height: 50px;
  }

  .cp-play-step-icon img {
    width: 28px;
    height: 28px;
  }

  .cp-play-step-copy h3 {
    font-size: 1.02rem;
  }

  .cp-play-step-copy p {
    font-size: 0.9rem;
  }

  .cp-play-love-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .cp-play-banner-title {
    font-size: 1rem;
  }

  .cp-play-banner-sub {
    font-size: 0.92rem;
    margin-bottom: 14px;
  }
}

/* =========================================================
   FAQ Accordion (scoped: .cp-faq)
   ========================================================= */

.cp-faq {
  --cp-wrap: min(100% - 40px, 1100px);
  --cp-faq-bg: #0b0e37;
  --cp-faq-item: #14124a;
  --cp-faq-muted: #c5c9e6;
  --cp-faq-toggle: #f5a623;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  background: linear-gradient(180deg, #0a0d2e 0%, var(--cp-faq-bg) 45%, #0a1240 100%);
  padding: 64px 0 80px;
}

.cp-faq-wrap {
  width: var(--cp-wrap);
  margin: 0 auto;
}

.cp-faq button {
  font: inherit;
  color: inherit;
}

.cp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cp-faq-item {
  border-radius: 14px;
  background: linear-gradient(-90deg, #220a54 100%, #9858f3 0%) padding-box, linear-gradient(90deg, #9858F3 100%, #9858F3 32%) border-box;
  border: 1.5px solid transparent;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.cp-faq-item.is-open {
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.22);
}

.cp-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 14px 16px 14px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.cp-faq-trigger:focus-visible {
  outline: 2px solid #f5a623;
  outline-offset: -4px;
  border-radius: 12px;
}

.cp-faq-question {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  font-weight: 600;
  line-height: 1.4;
}

.cp-faq-toggle {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #ffd012 0%, #ff9f16 48%, #ff6e10 100%);
  color: #14082c;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(255, 130, 0, 0.35);
}

.cp-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.cp-faq-item.is-open .cp-faq-panel {
  grid-template-rows: 1fr;
}

.cp-faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.cp-faq-panel p,
.cp-faq-panel ul {
  margin: 0;
  padding: 0 56px 18px 22px;
  color: var(--cp-faq-muted);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cp-faq-panel ul {
  padding-top: 8px;
  padding-left: 44px;
  list-style: disc;
}

.cp-faq-panel li + li {
  margin-top: 4px;
}

.cp-faq-item.is-open .cp-faq-panel p,
.cp-faq-item.is-open .cp-faq-panel ul {
  opacity: 1;
  transform: translateY(0);
}

.cp-faq-list {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.cp-faq-guarantee {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  margin-bottom: 30px;
  padding: 28px 28px 28px 20px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 12% 50%, rgba(120, 60, 220, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 88% 20%, rgba(56, 120, 255, 0.18) 0%, transparent 65%),
    linear-gradient(135deg, #160a42 0%, #1a0c55 45%, #120a38 100%) padding-box,
    linear-gradient(135deg, #c026d3 0%, #7c3aed 50%, #38bdf8 100%) border-box;
  border: 1.5px solid transparent;
}

.cp-faq-guarantee-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cp-faq-guarantee-visual img {
  width: min(100%, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35));
}

.cp-faq-guarantee-body {
  position: relative;
  z-index: 1;
  text-align: left;
}

.cp-faq-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 10, 50, 0.75);
  border: 1px solid rgba(168, 85, 247, 0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.cp-faq-guarantee-badge i {
  color: #fbbf24;
  font-size: 0.85rem;
}

.cp-faq-guarantee-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.cp-faq-guarantee-accent {
  display: inline-block;
  background: linear-gradient(90deg, #ffd012 0%, #ff9f16 48%, #ff6e10 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cp-faq-guarantee-text {
  margin: 0 0 22px;
  /* max-width: 54ch; */
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
}

.cp-faq-guarantee-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cp-faq-guarantee-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cp-faq-guarantee-features li > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cp-faq-guarantee-features strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.cp-faq-guarantee-features li > span:last-child > span {
  color: var(--cp-faq-muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
}

.cp-faq-guarantee-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.95rem;
  color: #fff;
}

.cp-faq-guarantee-icon--bolt {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: #fde047;
}

.cp-faq-guarantee-icon--mail {
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
}

.cp-faq-guarantee-icon--shield {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
}

.cp-faq-guarantee-plane {
  position: absolute;
  top: 22px;
  right: 28px;
  color: #c084fc;
  font-size: 1.15rem;
  opacity: 0.9;
  transform: rotate(28deg);
  pointer-events: none;
}

@media (max-width: 960px) {
  .cp-faq {
    padding: 48px 0 60px;
  }

  .cp-faq-guarantee {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px 26px;
    text-align: center;
  }

  .cp-faq-guarantee-body {
    text-align: center;
  }

  .cp-faq-guarantee-text {
    margin-left: auto;
    margin-right: auto;
  }

  .cp-faq-guarantee-features {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
  }

  .cp-faq-guarantee-plane {
    top: 16px;
    right: 18px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .cp-faq {
    --cp-wrap: min(100% - 24px, 1100px);
    padding: 40px 0 52px;
  }

  .cp-faq-trigger {
    padding: 16px 14px 16px 16px;
    gap: 12px;
  }

  .cp-faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }

  .cp-faq-panel p,
  .cp-faq-panel ul {
    padding: 0 16px 16px;
  }

  .cp-faq-panel ul {
    padding-left: 34px;
  }

  .cp-faq-question {
    font-size: 0.95rem;
  }

  .cp-faq-guarantee {
    margin-top: 28px;
    padding: 20px 16px 22px;
  }

  .cp-faq-guarantee-visual img {
    width: min(100%, 280px);
  }

  .cp-faq-guarantee-title {
    font-size: 1.45rem;
  }
}

/* =========================================================
   Parent Reviews (scoped: .cp-reviews)
   ========================================================= */

.cp-reviews {
  background: linear-gradient(180deg, #0e0a32 0%, #120b3b 45%, #140a48 100%);
  padding: 64px 0 72px;
}

.cp-reviews-wrap {
  width: min(100% - 40px, 1220px);
  margin: 0 auto;
}

.cp-reviews a {
  text-decoration: none;
}

.cp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-bottom: 0;
}

.cp-reviews-extra {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s ease;
}

.cp-reviews-extra.is-open {
  grid-template-rows: 1fr;
}

.cp-reviews-extra-inner {
  min-height: 0;
  overflow: hidden;
}

.cp-reviews-grid--extra {
  padding-top: 22px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.cp-reviews-extra.is-open .cp-reviews-grid--extra {
  opacity: 1;
  transform: translateY(0);
}

.cp-reviews-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: #f0abfc;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cp-reviews-more:hover,
.cp-reviews-more:focus-visible {
  color: #fff;
  outline: none;
}

.cp-reviews-more i {
  font-size: 0.78rem;
  transition: transform 0.35s ease;
}

.cp-reviews-more.is-open i {
  transform: rotate(180deg);
}

.cp-reviews .cp-cta--spaced-top {
  margin-top: 28px;
}

.cp-reviews-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  padding: 34px 22px 22px;
  margin-top: 18px;
  border-radius: 16px;
  background: linear-gradient(#1a0f52, #1a0f52) padding-box, linear-gradient(135deg, #e879f9 0%, #a855f7 50%, #7c3aed 100%) border-box;
  border: 1.5px solid transparent;
}

.cp-reviews-ig i {
  font-size: 22px;
}

/* .cp-reviews-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 22px;
  height: 22px;
  transform: translateX(-50%) rotate(45deg);
  background: #1a0f52;
  border-right: 1.5px solid #a855f7;
  border-bottom: 1.5px solid #a855f7;
  border-radius: 0 0 4px 0;
} */

.cp-reviews-quote {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #c026d3 0%, #7c3aed 100%);
  color: #fff;
  font-size: 0.85rem;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

.cp-reviews-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
  color: #fbbf24;
  font-size: 0.95rem;
}

.cp-reviews-text {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  flex: 1;
}

.cp-reviews-divider {
  width: 100%;
  height: 0;
  margin-bottom: 16px;
  border: 0;
  border-top: 1.5px dotted rgba(180, 160, 230, 0.45);
}

.cp-reviews-author {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
}

.cp-reviews-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f472b6 0%, #a855f7 100%);
  color: #fff;
  font-size: 1.05rem;
}

.cp-reviews-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.cp-reviews-meta strong {
  color: #e879f9;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.cp-reviews-meta span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

.cp-reviews-ig {
  flex-shrink: 0;
  color: #e1306c;
  font-size: 1.15rem;
}

@media (max-width: 1100px) {
  .cp-reviews-wrap {
    width: min(100% - 32px, 1220px);
  }

  .cp-reviews-grid {
    gap: 16px;
  }

  .cp-reviews-card {
    padding: 32px 16px 18px;
  }
}

@media (max-width: 960px) {
  .cp-reviews {
    padding: 48px 0 56px;
  }

  .cp-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .cp-reviews-grid--extra {
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  .cp-reviews {
    padding: 40px 0 48px;
  }

  .cp-reviews-wrap {
    width: min(100% - 24px, 1220px);
  }

  .cp-reviews-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .cp-reviews-grid--extra {
    padding-top: 28px;
  }

  .cp-reviews-card {
    padding: 30px 16px 18px;
  }
}

/* =========================================================
   Site Top Navigation (inner pages)
   ========================================================= */

.cp-topnav {
  background: transparent;
  border: 0;
  position: relative;
  z-index: 2;
}

.cp-topnav-inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cp-topnav-logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cp-topnav-logo:hover,
.cp-topnav-logo:focus-visible {
  color: #fbbf24;
}

.cp-topnav-logo:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 3px;
}

.cp-topnav-home {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cp-topnav-home:hover,
.cp-topnav-home:focus-visible {
  color: #fbbf24;
}

.cp-topnav-home:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .cp-topnav-inner {
    width: min(100% - 24px, 1100px);
    min-height: 60px;
  }

  .cp-topnav-logo {
    font-size: 1.15rem;
  }

  .cp-topnav-home {
    font-size: 0.9rem;
  }
}

/* =========================================================
   Site Footer (scoped: .cp-footer)
   ========================================================= */

.cp-footer {
  --cp-wrap: min(100% - 40px, 980px);

  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-optical-sizing: auto;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  background: #0a0b32;
  padding: 34px 0 22px;
}

.cp-footer-wrap {
  width: var(--cp-wrap);
  margin: 0 auto;
}

.cp-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.cp-footer a:hover,
.cp-footer a:focus-visible {
  color: #fbbf24;
}

.cp-footer a:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 3px;
}

.cp-footer-copy {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.90rem;
  font-weight: 400;
  line-height: 1.45;
}

.cp-footer-note {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
}

.cp-footer-legal {
  margin: 0 auto;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.65;
}

.cp-footer-rule {
  width: 100%;
  max-width: 920px;
  height: 0;
  margin: 22px auto 18px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.cp-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
}

.cp-footer-nav a {
  font-size: 0.90rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cp-footer {
    --cp-wrap: min(100% - 24px, 980px);
    padding: 40px 0 28px;
  }

  .cp-footer-copy {
    font-size: 0.92rem;
  }

  .cp-footer-note {
    font-size: 0.82rem;
  }

  .cp-footer-legal {
    font-size: 0.74rem;
  }

  .cp-footer-rule {
    margin: 22px auto 18px;
  }

  .cp-footer-nav {
    gap: 10px 18px;
  }

  .cp-footer-nav a {
    font-size: 0.85rem;
  }
}

/* =========================================================
   Contact Page (scoped: .cp-contact)
   ========================================================= */

.cp-contact-page {
  background: #07091f;
}

.cp-contact {
  --cp-wrap: min(100% - 40px, 1080px);
  --cp-ink: #fff;
  --cp-muted: #c9c4e6;

  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-optical-sizing: auto;
  color: var(--cp-ink);
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(124, 58, 237, 0.45) 0%, transparent 62%),
    linear-gradient(180deg, #12082f 0%, #0a0824 28%, #08091c 100%);
}

.cp-contact a {
  text-decoration: none;
}

.cp-contact-wrap {
  width: var(--cp-wrap);
  margin: 0 auto;
}

.cp-contact-grad {
  background: linear-gradient(90deg, #c084fc 0%, #e879f9 45%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cp-contact-scribble {
  margin: 0;
  font-family: Caveat, cursive;
  font-weight: 700;
  line-height: 1.05;
  color: #c4b5fd;
  text-align: left;
  pointer-events: none;
}

.cp-contact-scribble span {
  display: inline-block;
  color: #f472b6;
}

/* ---------- Hero ---------- */

.cp-contact-hero {
  position: relative;
  padding: 0 0 28px;
  text-align: center;
  overflow: hidden;
}

.cp-contact-hero .cp-contact-wrap {
  padding-top: 28px;
}

.cp-contact-hero-art {
  pointer-events: none;
}

.cp-contact-plane {
  position: absolute;
  top: 78px;
  left: 8%;
  color: #7dd3fc;
  font-size: 1.7rem;
  transform: rotate(-28deg);
}

.cp-contact-plane::before {
  content: "";
  position: absolute;
  right: 130%;
  top: 70%;
  width: 90px;
  border-top: 1.5px dashed rgba(125, 211, 252, 0.55);
  transform: rotate(18deg);
}

.cp-contact-star {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #c4b5fd;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.9;
}

.cp-contact-star--top {
  top: 36px;
  right: 12%;
}

.cp-contact-star--left {
  top: 132px;
  left: 11%;
  width: 14px;
  height: 14px;
  background: #a78bfa;
}

.cp-contact-scribble--hero {
  position: absolute;
  top: 88px;
  right: 6%;
  font-size: 1.15rem;
  transform: rotate(8deg);
}

.cp-contact-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.55);
  background: rgba(76, 29, 149, 0.45);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cp-contact-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
}

.cp-contact-title .cp-contact-grad {
  position: relative;
}

.cp-contact-title .cp-contact-grad::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -22px;
  width: 16px;
  height: 16px;
  background: #fbbf24;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  transform: rotate(35deg);
}

.cp-contact-lead {
  margin: 0 auto 22px;
  max-width: 640px;
  color: var(--cp-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 500;
  line-height: 1.6;
}

.cp-contact-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.cp-contact-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
}

.cp-contact-trust li + li {
  border-left: 1px solid rgba(196, 181, 253, 0.28);
}

.cp-contact-trust li:nth-child(1) i {
  color: #34d399;
}

.cp-contact-trust li:nth-child(2) i {
  color: #fbbf24;
}

.cp-contact-trust li:nth-child(3) i {
  color: #f472b6;
}

/* ---------- Help cards ---------- */

.cp-contact-help {
  padding: 36px 0 18px;
}

.cp-contact-head {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 680px;
}

.cp-contact-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fbbf24 0%, #fb7185 45%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cp-contact-heading::before,
.cp-contact-heading::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: #fbbf24;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  -webkit-text-fill-color: initial;
}

.cp-contact-head p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.cp-contact-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cp-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 22px 20px 20px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #16103a 0%, #120c32 100%) padding-box,
    linear-gradient(160deg, rgba(167, 139, 250, 0.7), rgba(56, 189, 248, 0.25)) border-box;
  border: 1.5px solid transparent;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cp-contact-card--teal {
  background:
    linear-gradient(180deg, #12183c 0%, #10122e 100%) padding-box,
    linear-gradient(160deg, #22d3ee, #6366f1) border-box;
}

.cp-contact-card--pink {
  background:
    linear-gradient(180deg, #1a1038 0%, #140c30 100%) padding-box,
    linear-gradient(160deg, #f472b6, #a855f7) border-box;
}

.cp-contact-card--violet {
  background:
    linear-gradient(180deg, #161040 0%, #120e34 100%) padding-box,
    linear-gradient(160deg, #a78bfa, #6366f1) border-box;
}

.cp-contact-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  color: #fff;
}

.cp-contact-card--teal .cp-contact-card-icon {
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
}

.cp-contact-card--pink .cp-contact-card-icon {
  background: linear-gradient(135deg, #f472b6, #d946ef);
}

.cp-contact-card--violet .cp-contact-card-icon {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.cp-contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}

.cp-contact-card p {
  margin: 0 0 0;
  color: var(--cp-muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  flex: 1;
}

.cp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* margin-top: auto; */
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--cp-cta-text, #14082c);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cp-contact-btn:hover,
.cp-contact-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.cp-contact-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.cp-contact-btn i {
  font-size: 0.75rem;
}

.cp-contact-btn--teal {
  background: linear-gradient(90deg, #14b8a6, #22c55e);
}

.cp-contact-btn--pink {
  background: linear-gradient(90deg, #e879f9, #c026d3);
}

.cp-contact-btn--violet {
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

/* ---------- Contact details ---------- */

.cp-contact-details {
  padding: 36px 0 10px;
}

.cp-contact-panel {
  position: relative;
  padding: 28px 24px 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #141038 0%, #100c2e 100%) padding-box,
    linear-gradient(135deg, #a78bfa, #6366f1 40%, #22d3ee) border-box;
  border: 1.5px solid transparent;
}

.cp-contact-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.cp-contact-panel-kicker {
  margin: 0 0 6px;
  color: #f472b6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cp-contact-panel-title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
}

.cp-contact-panel-sub {
  margin: 0;
  color: var(--cp-muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
}

.cp-contact-scribble--panel {
  flex-shrink: 0;
  margin-top: 8px;
  color: #67e8f9;
  font-size: 1.35rem;
  transform: rotate(6deg);
}

.cp-contact-scribble--panel span {
  color: #fb7185;
}

.cp-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cp-contact-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(10, 8, 32, 0.55);
  border: 1px solid rgba(167, 139, 250, 0.22);
}

.cp-contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.95rem;
}

.cp-contact-info-icon--mail {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.cp-contact-info-icon--time {
  background: linear-gradient(135deg, #34d399, #059669);
}

.cp-contact-info-icon--bolt {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff7d6;
}

.cp-contact-info h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 800;
}

.cp-contact-info p {
  margin: 0 0 8px;
  color: var(--cp-muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}

.cp-contact-emails a,
.cp-contact-hours,
.cp-contact-reply {
  display: block;
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
}

.cp-contact-emails a:hover,
.cp-contact-emails a:focus-visible {
  color: #c4b5fd;
}

.cp-contact-hours strong,
.cp-contact-reply strong {
  color: #fff;
  font-weight: 800;
}

.cp-contact-reply span {
  color: var(--cp-muted);
  font-weight: 500;
}

/* ---------- FAQ banner ---------- */

.cp-contact-faq {
  padding: 28px 0 56px;
}

.cp-contact-faq-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px;
  border-radius: 18px;
  overflow: hidden;
  background:linear-gradient(#1a0f52, #1a0f52) padding-box, linear-gradient(135deg, #e879f9 0%, #a855f7 50%, #7c3aed 100%) border-box;
  border: 1.5px solid transparent;
}

.cp-contact-faq-mark {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e9d5ff, #a855f7 55%, #7c3aed);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.cp-contact-faq-copy {
  flex: 1;
  min-width: 0;
}

.cp-contact-faq-copy > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cp-contact-faq-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
}

.cp-contact-faq-copy h2 span {
  color: #e9d5ff;
}

.cp-contact-faq-sub {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.5 !important;
}

.cp-contact-btn--faq {
  flex-shrink: 0;
  /* margin-right: 78px; */
  padding: 16px 24px;
  background: linear-gradient(90deg, #ffd012 0%, #ff9f16 48%, #ff6e10 100%);
  box-shadow: 0 8px 22px rgba(255, 130, 0, 0.35);
}

.cp-contact-scribble--faq {
  position: absolute;
  right: 18px;
  bottom: 10px;
  font-size: 0.95rem;
  color: #ddd6fe;
  transform: rotate(6deg);
  opacity: 0.85;
}

.cp-contact-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 36px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.cp-contact-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cp-contact-benefits li:nth-child(1) i {
  color: #60a5fa;
}

.cp-contact-benefits li:nth-child(2) i {
  color: #34d399;
}

.cp-contact-benefits li:nth-child(3) i {
  color: #f472b6;
}

@media (max-width: 960px) {
  .cp-contact-plane,
  .cp-contact-star,
  .cp-contact-scribble--hero,
  .cp-contact-scribble--faq {
    display: none;
  }

  .cp-contact-help-grid,
  .cp-contact-info-grid {
    grid-template-columns: 1fr;
  }

  .cp-contact-faq-card {
    flex-wrap: wrap;
  }

  .cp-contact-btn--faq {
    margin-right: 0;
  }

  .cp-contact-scribble--panel {
    display: none;
  }
}

@media (max-width: 640px) {
  .cp-contact {
    --cp-wrap: min(100% - 24px, 1080px);
  }

  .cp-contact-hero {
    padding: 0 0 16px;
  }

  .cp-contact-hero .cp-contact-wrap {
    padding-top: 16px;
  }

  .cp-contact-br {
    display: none;
  }

  .cp-contact-trust li {
    padding: 6px 12px;
  }

  .cp-contact-trust li + li {
    border-left: 0;
  }

  .cp-contact-faq-card {
    padding: 20px 16px;
  }

  .cp-contact-btn--faq {
    width: 100%;
    margin-right: 0;
    justify-content: center;
  }
}

/* =========================================================
   Terms and Conditions (scoped: .cp-terms)
   ========================================================= */

.cp-terms-wrap {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
}

.cp-terms-hero {
  position: relative;
  text-align: center;
  padding: 0 0 56px;
  background:
    radial-gradient(ellipse 42% 80% at 0% 100%, rgba(168, 85, 247, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 48% 90% at 100% 80%, rgba(124, 58, 237, 0.45) 0%, transparent 68%),
    linear-gradient(180deg, #2a0d6e 0%, #3b1288 48%, #4c1d95 100%);
}

.cp-terms-hero .cp-terms-wrap {
  padding-top: 36px;
}

.cp-terms-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cp-terms-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

.cp-terms-hero h1 span {
  color: #d8b4fe;
}

.cp-terms-lead {
  margin: 0 auto;
  max-width: 460px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.cp-terms-rule {
  display: block;
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #c084fc;
}

.cp-terms-body {
  background: #fff;
  color: #4b5563;
  padding: 28px 0 64px;
}

.cp-terms-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: cp-terms;
}

.cp-terms-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  padding: 26px 0;
  border-bottom: 1px solid #eceff3;
  counter-increment: cp-terms;
}

.cp-terms-list li::before {
  content: counter(cp-terms);
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3e8ff;
  color: #7c3aed;
  font-size: 0.95rem;
  font-weight: 700;
}

.cp-terms-list h2 {
  margin: 0;
  align-self: end;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.cp-terms-list p {
  margin: 0 0 2px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.cp-terms-intro {
  padding: 32px 0 4px;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}

.cp-terms-intro p {
  margin: 0 0 14px;
}

.cp-terms-updated {
  margin: 12px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.cp-terms-copy {
  grid-column: 2;
  min-width: 0;
}

.cp-terms-copy h2 {
  margin-bottom: 9px;
  align-self: auto;
}

.cp-terms-copy h3 {
  margin: 16px 0 6px;
  color: #111827;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
}

.cp-terms-copy p + p,
.cp-terms-copy p + ul,
.cp-terms-copy ul + p,
.cp-terms-copy h3 + p,
.cp-terms-copy h3 + ul {
  margin-top: 10px;
}

.cp-terms-copy ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.cp-terms-copy li {
  display: list-item;
  list-style: disc;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  counter-increment: none;
  line-height: 22px;
}

.cp-terms-copy li::before {
  content: none;
  display: none;
}

.cp-terms-list li:has(.cp-terms-copy)::before {
  grid-row: 1;
  align-self: start;
}

.cp-terms-list li[data-num]::before {
  content: attr(data-num);
}

.cp-terms-intro a,
.cp-terms-list a {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
}

.cp-terms-intro a:hover,
.cp-terms-intro a:focus-visible,
.cp-terms-list a:hover,
.cp-terms-list a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cp-terms-wrap {
    width: min(100% - 24px, 860px);
  }

  .cp-terms-hero {
    padding: 0 0 40px;
  }

  .cp-terms-hero .cp-terms-wrap {
    padding-top: 24px;
  }

  .cp-terms-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
    padding: 20px 0;
  }

  .cp-terms-list li::before {
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
  }
}

