/* ═══════════════════════════════════════════════════════
   Odeon AI — pricing.css
   Dedicated pricing page styles
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.pp-hero {
  background: linear-gradient(180deg, #07071A 0%, #0D0B2E 70%, #0f0e3a 100%);
  padding: 130px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.pp-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(100px); opacity: .35;
  animation: pp-orb-float 14s ease-in-out infinite;
}
.pp-orb-1 { width: 500px; height: 500px; top: -150px; right: -50px;  background: radial-gradient(circle, var(--lav) 0%, transparent 70%); animation-delay: 0s; }
.pp-orb-2 { width: 400px; height: 400px; bottom: -100px; left: -50px; background: radial-gradient(circle, var(--coral) 0%, transparent 70%); animation-delay: -5s; }
.pp-orb-3 { width: 300px; height: 300px; top: 30%; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, #6366F1 0%, transparent 70%); opacity: .2; animation-delay: -9s; }

@keyframes pp-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

.pp-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

.pp-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--lav);
  background: rgba(167,139,250,.12);
  border: 1px solid rgba(167,139,250,.25);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.pp-eyebrow i { width: 13px; height: 13px; }

.pp-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800; letter-spacing: -2px;
  color: #fff; line-height: 1.1; margin-bottom: 22px;
}

.pp-gradient-text {
  background: linear-gradient(135deg, var(--coral) 0%, var(--lav) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.pp-hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.65);
  line-height: 1.7; max-width: 640px; margin: 0 auto 36px;
}
.pp-hero-sub strong { color: #fff; font-weight: 700; }

/* Social proof bar in hero */
.pp-social-proof {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  padding: 12px 22px; border-radius: 100px;
}
.pp-avatars { display: flex; align-items: center; }
.pp-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .72rem;
  border: 2px solid #0D0B2E;
  margin-left: -10px;
}
.pp-avatar:first-child { margin-left: 0; }
.pp-avatar-more {
  background: rgba(255,255,255,.1) !important;
  font-size: .65rem;
  color: rgba(255,255,255,.85);
}
.pp-social-text { text-align: left; line-height: 1.3; }
.pp-stars { display: inline-flex; align-items: center; gap: 2px; }
.pp-stars i {
  width: 16px; height: 16px;
  color: var(--coral);
  fill: var(--coral);
  stroke: var(--coral);
  stroke-width: 1.5;
}
.pp-testi-rating { display: inline-flex; align-items: center; gap: 2px; margin-bottom: 14px; }
.pp-testi-rating i {
  width: 16px; height: 16px;
  color: var(--coral);
  fill: var(--coral);
  stroke: var(--coral);
  stroke-width: 1.5;
}
.pp-social-label { font-size: .8rem; color: rgba(255,255,255,.6); }
.pp-social-label strong { color: #fff; font-weight: 700; }


/* ═══════════════════════════════════════════
   FOUNDERS BANNER (replaces social proof)
   ═══════════════════════════════════════════ */
.pp-founders {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: 640px;
  padding: 16px 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(167,139,250,.25);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  text-align: left;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s, background .2s;
}
.pp-founders:hover {
  border-color: rgba(244,126,96,.45);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.pp-founders::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,126,96,.08), rgba(167,139,250,.06));
  pointer-events: none;
}
.pp-founders-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--coral), #E86D4F);
  color: #fff;
  padding: 7px 14px; border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(244,126,96,.35);
  flex-shrink: 0;
  z-index: 1;
}
.pp-founders-badge i { width: 13px; height: 13px; }
.pp-founders-body {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
  z-index: 1;
}
.pp-founders-body strong { color: #fff; font-weight: 700; }
.pp-founders-perks {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}
@media (max-width: 600px) {
  .pp-founders { flex-direction: column; text-align: center; gap: 12px; padding: 18px 20px; }
}


/* ═══════════════════════════════════════════
   PRICING CARDS SECTION
   ═══════════════════════════════════════════ */
.pp-pricing {
  background: var(--bg-alt);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.pp-pricing::before {
  content: '';
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(167,139,250,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Trust strip */
.pp-trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 24px;
  max-width: 920px; margin: 0 auto 32px;
  padding: 14px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--sh-sm);
  position: relative; z-index: 1;
}
.pp-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--text-sec);
}
.pp-trust-item i { width: 15px; height: 15px; color: var(--green); stroke-width: 2.5; }

/* Toggle wrapper */
.pp-toggle-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; margin-bottom: 40px;
  position: relative; z-index: 1;
}

/* ── Billing toggle (Mensuel / Annuel) ── */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  box-shadow: var(--sh-sm);
  position: relative;
}
.bt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-sec);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
  line-height: 1;
}
.bt-btn:hover:not(.active) {
  color: var(--indigo);
  background: var(--bg-alt);
}
.bt-btn.active {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-mid) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 27, 75, .25);
}
.bt-save {
  display: inline-flex;
  align-items: center;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(16, 185, 129, .15);
  color: #059669;
  padding: 3px 8px;
  border-radius: 100px;
  line-height: 1;
}
.bt-btn.active .bt-save {
  background: rgba(244, 126, 96, .35);
  color: #fff;
}

/* Hint chip below toggle */
.pp-toggle-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem; color: var(--text-sec);
  background: rgba(244,126,96,.08);
  border: 1px solid rgba(244,126,96,.2);
  padding: 6px 14px; border-radius: 100px;
}
.pp-toggle-hint i { width: 14px; height: 14px; color: var(--coral); }
.pp-toggle-hint strong { color: var(--coral-h); font-weight: 700; }

/* Pricing grid */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1080px) {
  .pp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pp-grid { grid-template-columns: 1fr; }
}

/* Cards */
.pp-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: var(--sh-sm);
}
.pp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(167,139,250,.3);
}

.pp-card-featured {
  background: linear-gradient(180deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  border: 1.5px solid rgba(167,139,250,.4);
  color: #fff;
  box-shadow: 0 24px 60px rgba(30,27,75,.35), 0 0 0 1px rgba(167,139,250,.2);
  transform: scale(1.03);
}
.pp-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: rgba(167,139,250,.6);
}

.pp-card-dark {
  background: linear-gradient(180deg, #07071A 0%, #0D0B2E 100%);
  border: 1.5px solid rgba(255,255,255,.08);
  color: #fff;
}
.pp-card-dark:hover { border-color: rgba(244,126,96,.35); }

/* Badge */
.pp-card-badge {
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .68rem; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--coral), #E86D4F);
  color: #fff;
  padding: 6px 14px; border-radius: 100px;
  box-shadow: 0 6px 18px rgba(244,126,96,.4);
  white-space: nowrap;
}

/* Card head */
.pp-card-head { margin-bottom: 18px; }
.pp-name {
  font-size: 1.15rem; font-weight: 800;
  color: var(--indigo); letter-spacing: -.3px;
  margin-bottom: 4px;
}
.pp-card-featured .pp-name { color: #fff; }
.pp-target {
  font-size: .76rem; color: var(--text-muted);
  font-weight: 500;
}
.pp-card-featured .pp-target { color: rgba(255,255,255,.5); }

/* Price block */
.pp-price-block {
  padding: 18px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin-bottom: 22px;
}
.pp-card-featured .pp-price-block,
.pp-card-dark .pp-price-block {
  border-color: rgba(255,255,255,.12);
}

.pp-price {
  font-size: 2.6rem; font-weight: 800;
  color: var(--indigo); letter-spacing: -2px; line-height: 1;
  display: flex; align-items: baseline; gap: 2px;
}
.pp-card-featured .pp-price,
.pp-card-dark .pp-price { color: #fff; }
.pp-price sub {
  font-size: 1.1rem; font-weight: 600;
  vertical-align: baseline; margin-right: 2px;
}
.pp-price small {
  font-size: .82rem; font-weight: 500;
  color: var(--text-muted); margin-left: 4px;
}
.pp-card-featured .pp-price small,
.pp-card-dark .pp-price small { color: rgba(255,255,255,.5); }

.pricing-billed {
  font-size: .76rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}
.pp-card-featured .pricing-billed,
.pp-card-dark .pricing-billed { color: rgba(255,255,255,.4); }

.pp-daily {
  font-size: .76rem;
  color: var(--coral-h);
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: .2px;
}

.price-num { display: inline-block; transition: transform .25s, opacity .15s; }
.price-num.changing { transform: translateY(-4px); opacity: 0; }

/* Features list */
.pp-feats {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
  flex: 1;
}
.pp-feats li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .855rem; color: var(--text);
  line-height: 1.5;
}
.pp-feats li i {
  width: 16px; height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2.5;
}
.pp-card-featured .pp-feats li { color: rgba(255,255,255,.85); }
.pp-card-featured .pp-feats li i { color: var(--lav); }
.pp-feats-dark li { color: rgba(255,255,255,.78); }
.pp-feats-dark li i { color: var(--coral); }

.pp-feat-highlight {
  font-weight: 700;
  color: var(--indigo) !important;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.pp-feat-highlight::before { display: none; }
.pp-card-featured .pp-feat-highlight {
  color: #fff !important;
  border-color: rgba(255,255,255,.15);
}

.pp-feat-extra {
  margin-top: 6px;
  padding-top: 11px;
  border-top: 1px dashed var(--border);
  color: var(--text-sec) !important;
  font-size: .78rem !important;
}
.pp-feat-extra i { color: var(--text-muted) !important; }
.pp-card-featured .pp-feat-extra {
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.55) !important;
}
.pp-feats-dark .pp-feat-extra {
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.5) !important;
}

/* CTAs */
.pp-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 13px 20px; border-radius: 12px;
  font-family: inherit;
  font-size: .9rem; font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  width: 100%;
}
.pp-cta-primary {
  background: var(--coral); color: #fff;
  box-shadow: 0 6px 20px rgba(244,126,96,.4);
}
.pp-cta-primary:hover {
  background: var(--coral-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244,126,96,.5);
}
.pp-cta-outline {
  background: transparent; color: var(--indigo);
  border: 1.5px solid var(--border);
}
.pp-cta-outline:hover {
  background: var(--bg-alt);
  border-color: var(--indigo);
}
.pp-cta-coral {
  background: var(--coral); color: #fff;
  box-shadow: 0 6px 20px rgba(244,126,96,.35);
}
.pp-cta-coral:hover { background: var(--coral-h); transform: translateY(-2px); }

.pp-cta-sub {
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.pp-card-featured .pp-cta-sub { color: rgba(255,255,255,.5); }

/* Guarantee */
.pp-guarantee {
  margin-top: 48px;
  display: flex; align-items: center; gap: 22px;
  padding: 26px 32px;
  background: linear-gradient(135deg, rgba(16,185,129,.06) 0%, rgba(167,139,250,.05) 100%);
  border: 1.5px solid rgba(16,185,129,.2);
  border-radius: 20px;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  flex-wrap: wrap;
}
.pp-guarantee-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--green), #059669);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(16,185,129,.3);
}
.pp-guarantee-icon i { width: 28px; height: 28px; color: #fff; stroke-width: 2.2; }
.pp-guarantee-body { flex: 1; min-width: 280px; }
.pp-guarantee-title {
  font-size: 1.05rem; font-weight: 800;
  color: var(--indigo); letter-spacing: -.3px;
  margin-bottom: 5px;
}
.pp-guarantee-sub {
  font-size: .88rem; color: var(--text-sec); line-height: 1.65;
}
.pp-guarantee-sub strong { color: var(--indigo); font-weight: 700; }


/* ═══════════════════════════════════════════
   ROI CALCULATOR
   ═══════════════════════════════════════════ */
.pp-roi {
  padding: 90px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.pp-roi-head, .pp-compare-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.pp-roi-head h2, .pp-compare-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  font-weight: 800; letter-spacing: -1.2px;
  color: var(--indigo); margin: 14px 0 12px;
  line-height: 1.15;
}
.pp-roi-head p, .pp-compare-head p {
  font-size: 1rem; color: var(--text-sec);
  line-height: 1.7;
}

.pp-roi-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, var(--bg-alt) 100%);
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.pp-roi-card::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244,126,96,.15) 0%, transparent 70%);
  pointer-events: none;
}

.pp-roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 720px) {
  .pp-roi-grid { grid-template-columns: 1fr; gap: 28px; }
  .pp-roi-card { padding: 28px 22px; }
}

.pp-roi-label {
  display: block;
  font-size: .82rem; font-weight: 700;
  color: var(--indigo); letter-spacing: -.2px;
  margin-bottom: 18px;
}
.pp-roi-label-hint {
  font-weight: 500;
  color: var(--text-muted);
}
.pp-roi-lost-value small {
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: -.5px;
  -webkit-text-fill-color: #DC2626;
  background: none;
  margin-left: 4px;
  text-transform: lowercase;
}

.pp-roi-slider-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
}

.pp-roi-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--green) 0%, #FBBF24 50%, #EF4444 100%);
  border-radius: 100px;
  outline: none;
  margin-bottom: 14px;
}
.pp-roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px;
  background: #fff;
  border: 3px solid var(--indigo);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30,27,75,.2);
  transition: transform .15s;
}
.pp-roi-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.pp-roi-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  background: #fff;
  border: 3px solid var(--indigo);
  border-radius: 50%;
  cursor: pointer;
}

.pp-roi-value {
  font-size: 1.2rem; font-weight: 800;
  color: var(--indigo); letter-spacing: -.5px;
  text-align: center;
}
.pp-roi-value span {
  color: var(--coral);
  font-size: 1.6rem;
}

.pp-roi-assumptions {
  font-size: .72rem; color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

.pp-roi-lost-label {
  font-size: .82rem; font-weight: 600;
  color: var(--text-sec);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.pp-roi-lost-value {
  font-size: 3.6rem; font-weight: 800;
  background: linear-gradient(135deg, #DC2626 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 14px;
}
.pp-roi-vs {
  font-size: .9rem; color: var(--text-sec);
  line-height: 1.7;
  padding: 14px 18px;
  background: rgba(16,185,129,.08);
  border-left: 3px solid var(--green);
  border-radius: 8px;
}


/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
.pp-compare { padding: 90px 0; background: var(--bg); }

.pp-table-wrap {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  overflow-x: auto;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  min-width: 720px;
}
.pp-table thead th {
  padding: 18px 20px;
  text-align: center;
  font-weight: 800;
  color: var(--indigo);
  font-size: .9rem;
  letter-spacing: -.2px;
  border-bottom: 2px solid var(--border);
  background: var(--bg-alt);
}
.pp-table thead th:first-child { text-align: left; }
.pp-th-featured {
  background: linear-gradient(135deg, var(--lav-bg), rgba(167,139,250,.15)) !important;
  color: var(--indigo) !important;
  position: relative;
}
.pp-th-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--lav));
}

.pp-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.pp-table tbody tr:last-child { border-bottom: none; }
.pp-table tbody tr:hover { background: var(--bg-alt); }

.pp-section-row td {
  background: linear-gradient(90deg, var(--indigo) 0%, var(--indigo-mid) 100%) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 20px !important;
  text-align: left !important;
}

.pp-table tbody td {
  padding: 14px 20px;
  text-align: center;
  color: var(--text);
  font-weight: 500;
}
.pp-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--indigo);
}
.pp-td-featured {
  background: rgba(167,139,250,.05);
  font-weight: 700 !important;
  color: var(--indigo) !important;
}


/* ═══════════════════════════════════════════
   ADD-ONS
   ═══════════════════════════════════════════ */
.pp-addons { padding: 90px 0; background: var(--bg-alt); }

.pp-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}

.pp-addon-card {
  background: linear-gradient(135deg, #fff 0%, var(--bg-alt) 100%);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pp-addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(244,126,96,.3);
}

.pp-addon-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.pp-addon-icon i { width: 26px; height: 26px; stroke-width: 2; }

.pp-addon-name {
  font-size: 1.1rem; font-weight: 800;
  color: var(--indigo); letter-spacing: -.3px;
  margin-bottom: 8px;
}
.pp-addon-desc {
  font-size: .88rem; color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 18px;
}
.pp-addon-price {
  font-size: 2rem; font-weight: 800;
  color: var(--coral); letter-spacing: -1.5px;
  line-height: 1; margin-bottom: 10px;
}
.pp-addon-price small {
  font-size: .85rem; font-weight: 500;
  color: var(--text-muted);
}
.pp-addon-foot {
  font-size: .76rem; color: var(--text-muted);
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}


/* ═══════════════════════════════════════════
   VS RECEPTIONIST
   ═══════════════════════════════════════════ */
.pp-vs { padding: 90px 0; background: var(--bg); }

.pp-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 720px) { .pp-vs-grid { grid-template-columns: 1fr; } }

.pp-vs-card {
  position: relative;
  border-radius: 22px;
  padding: 32px;
  background: #fff;
  border: 1.5px solid var(--border);
}
.pp-vs-them { opacity: .85; }
.pp-vs-us {
  border-color: var(--coral);
  box-shadow: 0 16px 40px rgba(244,126,96,.18), 0 0 0 1px rgba(244,126,96,.15);
  background: linear-gradient(180deg, #fff 0%, rgba(244,126,96,.02) 100%);
}

.pp-vs-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), #E86D4F);
  color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: 1px;
  padding: 7px 16px; border-radius: 100px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(244,126,96,.4);
}

.pp-vs-head { text-align: center; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px dashed var(--border); }
.pp-vs-emoji { font-size: 2.4rem; margin-bottom: 10px; }
.pp-vs-title { font-size: 1.1rem; font-weight: 800; color: var(--indigo); margin-bottom: 12px; }
.pp-vs-price {
  font-size: 1.8rem; font-weight: 800;
  color: var(--indigo); letter-spacing: -1px;
}
.pp-vs-price small {
  font-size: .8rem; font-weight: 500;
  color: var(--text-muted);
}
.pp-vs-price-sub { font-size: .8rem; color: var(--text-sec); margin-top: 4px; }

.pp-vs-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pp-vs-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; line-height: 1.5; }
.pp-vs-list i { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke-width: 2.5; }
.pp-vs-list-bad li { color: var(--text-sec); }
.pp-vs-list-bad i { color: #EF4444; }
.pp-vs-list-good li { color: var(--text); }
.pp-vs-list-good i { color: var(--green); }


/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.pp-testi { padding: 90px 0; background: var(--bg); }

.pp-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.pp-testi-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.pp-testi-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.pp-testi-rating {
  color: #FBBF24;
  font-size: 1rem; letter-spacing: 2px;
  margin-bottom: 14px;
}
.pp-testi-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}
.pp-testi-text strong { color: var(--indigo); font-weight: 700; }

.pp-testi-author { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pp-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .85rem;
  flex-shrink: 0;
}
.pp-testi-name { font-size: .9rem; font-weight: 700; color: var(--indigo); }
.pp-testi-role { font-size: .76rem; color: var(--text-muted); }

.pp-testi-roi {
  font-size: .85rem;
  color: var(--green);
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}
.pp-testi-roi strong { font-weight: 800; }


/* ═══════════════════════════════════════════
   FAQ PRICING
   ═══════════════════════════════════════════ */
.pp-faq { padding: 90px 0; background: var(--bg-alt); }

.pp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.pf-item:hover { border-color: rgba(167,139,250,.3); }
.pf-item.open { box-shadow: var(--sh-md); border-color: rgba(167,139,250,.4); }

.pf-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  width: 100%; padding: 18px 22px;
  font-family: inherit;
  font-size: .95rem; font-weight: 700;
  text-align: left;
  color: var(--indigo);
  background: transparent;
  border: none; cursor: pointer;
  transition: color .15s;
}
.pf-q:hover { color: var(--coral-h); }
.pf-q i {
  width: 18px; height: 18px;
  color: var(--text-muted);
  transition: transform .25s, color .25s;
  flex-shrink: 0;
}
.pf-item.open .pf-q i {
  transform: rotate(180deg);
  color: var(--coral);
}

.pf-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
  font-size: .9rem;
  color: var(--text-sec);
  line-height: 1.75;
}
.pf-item.open .pf-a {
  max-height: 400px;
  padding: 0 22px 20px;
}
.pf-a strong { color: var(--indigo); font-weight: 700; }


/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.pp-final { padding: 100px 0; background: var(--bg); }

.pp-final-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, #07071A 0%, #1C1954 50%, #0D0B2E 100%);
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(167,139,250,.2);
  box-shadow: 0 32px 80px rgba(30,27,75,.3);
}
.pp-final-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.pp-final-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: .4; }
.pp-final-orb-1 { width: 350px; height: 350px; top: -120px; right: -80px; background: var(--lav); }
.pp-final-orb-2 { width: 300px; height: 300px; bottom: -100px; left: -60px; background: var(--coral); }

.pp-final-content { position: relative; z-index: 1; }

.pp-final-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -1.2px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.pp-final-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}

.pp-final-btns {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pp-final-trust {
  display: flex; justify-content: center; gap: 22px;
  flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.55);
}
.pp-final-trust span { display: inline-flex; align-items: center; gap: 6px; }
.pp-final-trust i { width: 14px; height: 14px; color: var(--lav); }


/* ═══════════════════════════════════════════
   NAV ACTIVE STATE
   ═══════════════════════════════════════════ */
.nav-links li a.active {
  color: var(--coral);
  font-weight: 700;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .pp-hero { padding: 100px 20px 70px; }
  .pp-trust { padding: 12px 16px; gap: 6px 14px; }
  .pp-trust-item { font-size: .74rem; }
  .pp-card-featured { transform: none; }
  .pp-card-featured:hover { transform: translateY(-4px); }
  .pp-guarantee { padding: 22px; }
  .pp-final-card { padding: 44px 24px; }
  .pp-roi-lost-value { font-size: 2.6rem; }
}


/* ═══════════════════════════════════════════════════════
   POLISH PASS — Lucide-only icons, no emojis, no inline.
   Added during pricing-page redesign.
   ═══════════════════════════════════════════════════════ */

/* ── Tier label with colored dot (replaces emoji circles) ── */
.pp-tier {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.18rem; font-weight: 800; letter-spacing: -.3px;
  color: var(--indigo);
  margin-bottom: 4px;
}
.pp-tier-dot {
  width: 9px; height: 9px; border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,0,0,.04);
}
.pp-tier-essentiel .pp-tier-dot  { background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.18); }
.pp-tier-pro .pp-tier-dot        { background: var(--lav);   box-shadow: 0 0 0 3px rgba(167,139,250,.25); }
.pp-tier-business .pp-tier-dot   { background: #6366F1;      box-shadow: 0 0 0 3px rgba(99,102,241,.22); }
.pp-tier-enterprise .pp-tier-dot { background: var(--coral); box-shadow: 0 0 0 3px rgba(244,126,96,.28); }
.pp-card-featured .pp-tier,
.pp-card-dark .pp-tier { color: #fff; }
.pp-card-dark .pp-tier-dot { box-shadow: 0 0 0 3px rgba(255,255,255,.08); }

/* ── Featured ribbon star + "Pro" header in compare table ── */
.pp-badge-star { width: 11px; height: 11px; fill: currentColor; color: #fff; }
.pp-th-star    { width: 14px; height: 14px; color: var(--coral); fill: currentColor; vertical-align: -2px; margin-right: 4px; }

/* ── Avatars: brand-colored variants (replace inline gradients) ── */
.pp-avatar-coral { background: linear-gradient(135deg, #F47E60, #E86D4F); }
.pp-avatar-lav   { background: linear-gradient(135deg, #A78BFA, #8B5CF6); }
.pp-avatar-green { background: linear-gradient(135deg, #10B981, #059669); }
.pp-avatar-blue  { background: linear-gradient(135deg, #3B82F6, #2563EB); }

/* ── Star rating with Lucide stars (replaces text ★★★★★) ── */
.pp-stars {
  display: inline-flex; align-items: center; gap: 2px;
  color: #FBBF24;
}
.pp-stars i { width: 14px; height: 14px; fill: currentColor; stroke-width: 1.5; }
.pp-testi-rating { color: #FBBF24; display: inline-flex; gap: 2px; margin-bottom: 12px; }
.pp-testi-rating i { width: 16px; height: 16px; fill: currentColor; stroke-width: 1.5; }

/* ── Toggle hint icon ── */
.pp-toggle-hint { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.pp-toggle-hint i { width: 15px; height: 15px; color: var(--coral); flex-shrink: 0; }

/* ── Comparison table: lucide check + section row icons ── */
.pp-check { width: 16px; height: 16px; color: var(--green); stroke-width: 3; vertical-align: -3px; }
.pp-section-row td { display: flex !important; align-items: center; gap: 8px; }
.pp-section-row td i { width: 16px; height: 16px; color: var(--lav); }

/* ── "Sur mesure" custom price label ── */
.pp-price-custom {
  font-size: 1.55rem; letter-spacing: -1px;
  font-weight: 800; color: #fff;
}
.pp-daily-coral { color: var(--coral) !important; background: rgba(244,126,96,.14) !important; }

/* ── Dark card text overrides (replace inline styles) ── */
.pp-card-dark .pp-target { color: rgba(255,255,255,.55); }
.pp-card-dark .pp-price-block { border-bottom-color: rgba(255,255,255,.12); }
.pp-card-dark .pp-cta-sub { color: rgba(255,255,255,.5); }
.pp-card-dark .pricing-billed { color: rgba(255,255,255,.45); }
.pp-card-dark .pp-feats li { color: rgba(255,255,255,.82); }
.pp-card-dark .pp-feats li i { color: var(--coral); }
.pp-card-dark .pp-feat-highlight {
  color: #fff !important;
  border-bottom-color: rgba(255,255,255,.12);
}
.pp-card-dark .pp-feat-extra {
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.5) !important;
}
.pp-card-dark .pp-feat-extra i { color: rgba(255,255,255,.35) !important; }

/* ── vs Standardiste — Lucide icons replace emojis ── */
.pp-vs-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pp-vs-icon i { width: 30px; height: 30px; stroke-width: 2; }
.pp-vs-icon-bad  { background: rgba(239,68,68,.10); color: #DC2626; }
.pp-vs-icon-good {
  background: linear-gradient(135deg, rgba(167,139,250,.18), rgba(244,126,96,.16));
  color: var(--coral);
}
.pp-vs-us .pp-vs-icon-good { color: var(--lav); }
.pp-vs-savings { color: var(--green); }
.pp-badge-icon { width: 12px; height: 12px; }

/* ── Add-on icon color variants (replace inline bg) ── */
.pp-addon-icon-coral { background: rgba(244,126,96,.12); color: var(--coral); }
.pp-addon-icon-lav   { background: rgba(167,139,250,.15); color: #6D28D9; }
.pp-addon-icon-green { background: rgba(16,185,129,.12); color: var(--green); }

/* ── Testimonial ROI badge with Lucide icon ── */
.pp-testi-roi { display: flex; align-items: center; gap: 8px; }
.pp-testi-roi i { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* ── FAQ accordion: drive open state from aria-expanded for a11y ── */
.pf-q { cursor: pointer; }
.pf-q[aria-expanded="true"] { color: var(--coral-h); }
.pf-q[aria-expanded="true"] i { transform: rotate(180deg); }
.pf-q:focus-visible { outline: 2px solid var(--lav); outline-offset: 4px; border-radius: 4px; }
.pf-item.open .pf-q { color: var(--coral-h); }

/* ── Section row layout fix (was table-cell, now flex with icon) ── */
.pp-table tbody tr.pp-section-row { background: linear-gradient(90deg, rgba(167,139,250,.08), transparent); }

/* ── Featured card pricing-billed visibility ── */
.pp-card-featured .pp-feats li.pp-feat-highlight i,
.pp-feats li.pp-feat-highlight i { color: var(--coral); }
.pp-card-dark .pp-feats li.pp-feat-highlight i { color: var(--coral); }

/* ── Focus rings for all CTAs ── */
.pp-cta:focus-visible,
.bt-btn:focus-visible {
  outline: 3px solid rgba(167,139,250,.55);
  outline-offset: 3px;
}

/* ── Removed: legacy .pp-vs-emoji from old emoji rendering ── */
.pp-vs-emoji { display: none !important; }


/* ═══════════════════════════════════════════
   FAQ — Enriched list inside answers
   ═══════════════════════════════════════════ */
.pf-list {
  list-style: none;
  margin: 12px 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pf-list li {
  position: relative;
  padding-left: 22px;
  font-size: .88rem;
  color: var(--text-sec);
  line-height: 1.6;
}
.pf-list li::before {
  content: '';
  position: absolute;
  left: 6px; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.pf-list li strong { color: var(--indigo); font-weight: 700; }


/* ═══════════════════════════════════════════
   AUDIO DEMO PLAYER
   ═══════════════════════════════════════════ */
.pp-audio { padding: 90px 0; background: var(--bg-alt); position: relative; overflow: hidden; }

.ad-wrap {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.ad-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); opacity: .25;
  animation: pp-orb-float 12s ease-in-out infinite;
}
.ad-orb-1 { width: 320px; height: 320px; top: -40px; left: -60px; background: radial-gradient(circle, var(--lav) 0%, transparent 70%); }
.ad-orb-2 { width: 280px; height: 280px; bottom: -40px; right: -40px; background: radial-gradient(circle, var(--coral) 0%, transparent 70%); animation-delay: -6s; }

.ad-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #07071A 0%, #1C1954 100%);
  border: 1px solid rgba(167,139,250,.25);
  border-radius: 28px;
  padding: 40px 48px;
  box-shadow: 0 24px 64px rgba(30,27,75,.35);
  overflow: hidden;
}
.ad-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
@media (max-width: 720px) {
  .ad-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; text-align: center; }
}

/* Play button with pulse rings */
.ad-play {
  position: relative;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
}
.ad-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,126,96,.4) 0%, transparent 70%);
  animation: ad-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
.ad-pulse-1 { animation-delay: 0s; }
.ad-pulse-2 { animation-delay: .8s; }
.ad-pulse-3 { animation-delay: 1.6s; }
@keyframes ad-pulse {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.ad-play-btn {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, #E86D4F 100%);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 28px rgba(244,126,96,.5), inset 0 1px 1px rgba(255,255,255,.3);
  transition: transform .2s, box-shadow .2s;
  z-index: 1;
}
.ad-play-btn:hover { transform: scale(1.05); box-shadow: 0 14px 36px rgba(244,126,96,.6); }
.ad-play-btn:active { transform: scale(.96); }
.ad-play-btn i { width: 28px; height: 28px; stroke-width: 2; }
.ad-icon-play { transform: translateX(2px); }

.ad-wrap.is-playing .ad-pulse { display: none; }

/* Right side body */
.ad-body { position: relative; z-index: 1; flex: 1; min-width: 0; }

.ad-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(167,139,250,.15);
  color: var(--lav);
  border: 1px solid rgba(167,139,250,.25);
  padding: 5px 11px; border-radius: 100px;
  margin-bottom: 14px;
}
.ad-badge i { width: 12px; height: 12px; }

.ad-title {
  font-size: 1.15rem; font-weight: 700;
  color: #fff; letter-spacing: -.3px;
  line-height: 1.4;
  margin-bottom: 6px;
}
.ad-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin-bottom: 20px;
}

/* Audio visualizer bars */
.ad-visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 4px;
  height: 50px;
  padding: 4px 0;
  margin-bottom: 14px;
}
@media (max-width: 720px) { .ad-visualizer { justify-content: center; } }

.ad-bar {
  width: 4px; height: 8px;
  background: linear-gradient(180deg, var(--lav), var(--coral));
  border-radius: 100px;
  opacity: .35;
  transition: opacity .2s;
}
.ad-wrap.is-playing .ad-bar {
  opacity: 1;
  animation: ad-bar-bounce 1.2s ease-in-out infinite;
}
.ad-wrap.is-playing .ad-bar:nth-child(1)  { animation-delay: 0.00s; }
.ad-wrap.is-playing .ad-bar:nth-child(2)  { animation-delay: 0.08s; }
.ad-wrap.is-playing .ad-bar:nth-child(3)  { animation-delay: 0.16s; }
.ad-wrap.is-playing .ad-bar:nth-child(4)  { animation-delay: 0.24s; }
.ad-wrap.is-playing .ad-bar:nth-child(5)  { animation-delay: 0.32s; }
.ad-wrap.is-playing .ad-bar:nth-child(6)  { animation-delay: 0.40s; }
.ad-wrap.is-playing .ad-bar:nth-child(7)  { animation-delay: 0.48s; }
.ad-wrap.is-playing .ad-bar:nth-child(8)  { animation-delay: 0.56s; }
.ad-wrap.is-playing .ad-bar:nth-child(9)  { animation-delay: 0.64s; }
.ad-wrap.is-playing .ad-bar:nth-child(10) { animation-delay: 0.72s; }
.ad-wrap.is-playing .ad-bar:nth-child(11) { animation-delay: 0.80s; }
.ad-wrap.is-playing .ad-bar:nth-child(12) { animation-delay: 0.88s; }
.ad-wrap.is-playing .ad-bar:nth-child(13) { animation-delay: 0.96s; }
.ad-wrap.is-playing .ad-bar:nth-child(14) { animation-delay: 1.04s; }
.ad-wrap.is-playing .ad-bar:nth-child(15) { animation-delay: 0.20s; }
.ad-wrap.is-playing .ad-bar:nth-child(16) { animation-delay: 0.36s; }
.ad-wrap.is-playing .ad-bar:nth-child(17) { animation-delay: 0.52s; }
.ad-wrap.is-playing .ad-bar:nth-child(18) { animation-delay: 0.68s; }
.ad-wrap.is-playing .ad-bar:nth-child(19) { animation-delay: 0.84s; }
.ad-wrap.is-playing .ad-bar:nth-child(20) { animation-delay: 1.00s; }
.ad-wrap.is-playing .ad-bar:nth-child(21) { animation-delay: 0.12s; }
.ad-wrap.is-playing .ad-bar:nth-child(22) { animation-delay: 0.28s; }
.ad-wrap.is-playing .ad-bar:nth-child(23) { animation-delay: 0.44s; }
.ad-wrap.is-playing .ad-bar:nth-child(24) { animation-delay: 0.60s; }
.ad-wrap.is-playing .ad-bar:nth-child(25) { animation-delay: 0.76s; }

@keyframes ad-bar-bounce {
  0%, 100% { height: 6px; }
  50%      { height: 40px; }
}

.ad-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.ad-empty-msg {
  font-size: .76rem;
  color: rgba(167,139,250,.7);
  font-style: italic;
}

/* Shake on empty click */
.ad-wrap.is-empty .ad-play-btn {
  animation: ad-shake .4s ease;
}
@keyframes ad-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.ad-future {
  margin-top: 28px;
  text-align: center;
  font-size: .85rem;
  color: var(--text-sec);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
}
.ad-future i { width: 15px; height: 15px; color: var(--coral); }

