/* =============================================
   BILAN CLINIQUE — PREMIUM DESIGN SYSTEM
   ============================================= */

:root {
  --indigo: #4f46e5;
  --indigo-light: #6366f1;
  --indigo-50: #eef2ff;
  --purple: #a855f7;
  --purple-50: #faf5ff;
  --pink: #ec4899;
  --pink-50: #fdf2f8;
  --amber: #f59e0b;
  --amber-50: #fffbeb;
  --emerald: #10b981;
  --emerald-50: #ecfdf5;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
  --radius-card: 28px;
  --radius-btn: 16px;
}

.bilan-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0f0ff 0%, #fff0f8 50%, #f0fff8 100%);
  padding: 100px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- STEP SYSTEM ---- */
.bilan-step {
  display: none;
  width: 100%;
  max-width: 760px;
  flex-direction: column;
  gap: 24px;
  animation: stepIn 0.5s ease-out both;
}
.bilan-step.active { display: flex; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- CARDS ---- */
.bilan-card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* ===================== INTRO ===================== */
.intro-card {
  padding: 56px 48px;
  text-align: center;
  position: relative;
}
@media (max-width: 640px) { .intro-card { padding: 40px 24px; } }

.intro-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.intro-badge-row { margin-bottom: 24px; }
.intro-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--indigo-50);
  color: var(--indigo);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
  border: 1px solid rgba(99,102,241,0.2);
}

.intro-icon-wrap {
  width: 88px; height: 88px;
  background: var(--indigo-50);
  border: 2px solid rgba(99,102,241,0.2);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(99,102,241,0.2);
}
.intro-icon-pulse {
  font-size: 2.2rem; color: var(--indigo);
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; }
}

.intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 900;
  line-height: 1.2; color: var(--slate-900);
  margin-bottom: 20px;
}
@media (max-width: 640px) { .intro-title { font-size: 2rem; } }

.gradient-text {
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-desc {
  font-size: 1.05rem; color: var(--slate-600);
  line-height: 1.7; max-width: 560px; margin: 0 auto 36px;
}

.intro-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; max-width: 520px; margin: 0 auto 32px;
}
@media (max-width: 520px) {
  .intro-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.intro-stat {
  background: var(--slate-50);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px; padding: 16px 8px;
  text-align: center;
}
.intro-stat-val {
  display: block; font-size: 1.4rem; font-weight: 900;
  color: var(--indigo); line-height: 1;
  margin-bottom: 6px;
}
.intro-stat-lbl {
  font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 700;
  color: var(--slate-400); line-height: 1.3;
}

.intro-trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 36px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--slate-50); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px; padding: 7px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--slate-700);
}
.trust-chip i { color: var(--indigo); }

.btn-primary-xl {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  color: white; font-size: 1.15rem; font-weight: 800;
  padding: 20px 48px; border-radius: var(--radius-btn);
  border: none; cursor: pointer;
  box-shadow: 0 12px 40px rgba(99,102,241,0.4);
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.btn-primary-xl:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 56px rgba(99,102,241,0.5);
}
.btn-primary-xl:active { transform: translateY(0); }

.intro-time-note {
  margin-top: 16px; font-size: 0.8rem;
  color: var(--slate-400); font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ===================== QUIZ ===================== */
.quiz-card { padding: 40px 44px; }
@media (max-width: 640px) { .quiz-card { padding: 28px 20px; } }

.quiz-progress-header { margin-bottom: 28px; }
.qph-labels {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; font-weight: 700;
  color: var(--slate-400); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.quiz-pct { color: var(--indigo); }

.quiz-bar-bg {
  width: 100%; height: 8px;
  background: var(--slate-100); border-radius: 50px; overflow: hidden;
}
.quiz-bar-fill {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sphere-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 18px;
}
.sphere-digestive { background: var(--indigo-50); color: var(--indigo); }
.sphere-intime    { background: var(--pink-50);   color: var(--pink); }
.sphere-sexuelle  { background: var(--purple-50); color: var(--purple); }
.sphere-hormonale { background: var(--amber-50);  color: var(--amber); }

.quiz-q-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--slate-900); line-height: 1.35;
  margin-bottom: 10px;
}
@media (max-width: 640px) { .quiz-q-text { font-size: 1.2rem; } }

.quiz-sub-text {
  font-size: 0.88rem; color: var(--slate-500); font-weight: 500;
  line-height: 1.6; margin-bottom: 28px;
}

.quiz-options-list { display: flex; flex-direction: column; gap: 12px; }

.quiz-option-btn {
  width: 100%; text-align: left;
  padding: 18px 22px;
  border: 2px solid rgba(0,0,0,0.07);
  border-radius: 18px; background: white;
  cursor: pointer; font-size: 1.02rem;
  font-weight: 600; color: var(--slate-700);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; transition: all 0.18s ease;
  font-family: 'Montserrat', sans-serif;
}
.quiz-option-btn:hover {
  border-color: var(--indigo);
  background: rgba(99,102,241,0.04);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(99,102,241,0.12);
}
.quiz-option-btn .opt-arrow {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--slate-50); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-400); font-size: 0.85rem;
  transition: all 0.18s ease;
}
.quiz-option-btn:hover .opt-arrow {
  background: var(--indigo-50); color: var(--indigo);
}

/* ===================== CALCULATING ===================== */
.calculating-card {
  padding: 72px 48px;
  text-align: center;
}

.calc-spinner {
  position: relative; width: 100px; height: 100px;
  margin: 0 auto 36px;
  display: flex; align-items: center; justify-content: center;
}
.spinner-ring {
  position: absolute; inset: 0;
  border: 4px solid var(--indigo-50);
  border-top-color: var(--indigo);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.spinner-ring.green-ring {
  border-color: var(--emerald-50);
  border-top-color: var(--emerald);
}
.calc-icon {
  font-size: 2.2rem; color: var(--indigo);
  animation: iconPulse 1.5s ease-in-out infinite;
}
.calc-icon.green-icon { color: var(--emerald); }

@keyframes spin { to { transform: rotate(360deg); } }

.calc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--slate-900); margin-bottom: 12px;
}
.calc-desc {
  font-size: 0.95rem; color: var(--slate-500);
  max-width: 400px; margin: 0 auto 36px; line-height: 1.7;
}

.calc-steps {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 340px; margin: 0 auto;
}
.calc-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--slate-300); padding: 12px 16px;
  border-radius: 12px; background: var(--slate-50);
  transition: all 0.3s ease;
}
.calc-step i { font-size: 1rem; }
.calc-step.active {
  color: var(--indigo); background: var(--indigo-50);
}
.calc-step.done {
  color: var(--emerald);
  background: var(--emerald-50);
}

/* ---- EXIT BUTTON ---- */
.bilan-exit-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--slate-700);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}
.bilan-exit-btn:hover {
  background: var(--slate-900);
  color: white;
  transform: translateX(-3px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}
.bilan-exit-btn i { font-size: 0.75rem; }

/* ---- FLASH MESSAGES ---- */
.bilan-flash {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  max-width: 500px;
  width: calc(100% - 40px);
}
.bilan-flash-error {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}
.bilan-flash-success {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

/* ===================== PAYWALL ===================== */
.paywall-header-card {
  background: linear-gradient(135deg, var(--slate-900), #1e1b4b);
  border-radius: var(--radius-card);
  padding: 52px 40px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.pw-glow {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
}
.pw-lock-icon {
  font-size: 3rem; color: #818cf8; margin-bottom: 16px;
  display: block;
  animation: iconPulse 2s ease-in-out infinite;
}
.pw-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: white; margin-bottom: 8px;
}
.pw-sub { font-size: 0.95rem; color: #cbd5e1; font-weight: 500; }

/* ---- TEASER GRID ---- */
.pw-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 680px) {
  .pw-teaser-grid { grid-template-columns: 1fr; }
}

/* Blur panel (left) */
.pw-blur-panel {
  background: white;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  min-height: 320px;
}
.pw-blur-inner {
  filter: blur(7px);
  -webkit-filter: blur(7px);
  user-select: none;
  pointer-events: none;
}
.pw-blur-overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(0px);
}
.pw-blur-lock {
  font-size: 2.2rem; color: var(--indigo);
  background: var(--indigo-50);
  border: 2px solid rgba(99,102,241,0.2);
  border-radius: 50%; width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  animation: iconPulse 2s ease-in-out infinite;
}
.pw-blur-overlay span {
  font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--indigo);
  background: var(--indigo-50); border: 1px solid rgba(99,102,241,0.2);
  padding: 6px 14px; border-radius: 50px;
}

/* Score preview (inside blur) */
.pw-preview-header {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--slate-700); margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.pw-preview-header i { color: var(--indigo); }
.pw-score-row { margin-bottom: 16px; }
.pw-score-label {
  font-size: 0.7rem; font-weight: 700; color: var(--slate-700);
  margin-bottom: 5px;
}
.pw-score-bar-bg {
  width: 100%; height: 8px;
  background: rgba(0,0,0,0.06); border-radius: 50px;
  overflow: hidden; margin-bottom: 5px;
}
.pw-score-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem;
}
.pw-protocol-preview {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,0.1);
  display: flex; flex-direction: column; gap: 4px;
}
.pprev-label {
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--emerald);
}
.pprev-name {
  font-size: 0.8rem; font-weight: 800; color: var(--slate-900);
  line-height: 1.3;
}

/* Product panel (right) */
.pw-product-panel {
  background: white;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-lg);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.pw-product-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--slate-50);
}
.pw-product-img {
  width: 100%; height: 160px; object-fit: cover;
  border-radius: 16px; display: block;
}
.pw-product-img-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--indigo); color: white;
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 50px;
}
.pw-product-title {
  font-size: 0.85rem; font-weight: 800;
  color: var(--slate-900); margin: 0;
  display: flex; align-items: center; gap: 7px;
}
.pw-product-title i { color: var(--emerald); }
.pw-benefits-grid {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.pw-benefit-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f0fdf4; color: #166534;
  border: 1px solid #bbf7d0;
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}
.pw-benefit-tag i { font-size: 0.6rem; color: var(--emerald); }
.pw-ce-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--indigo-50); color: var(--indigo);
  border: 1px solid rgba(99,102,241,0.2);
  font-size: 0.7rem; font-weight: 700;
  padding: 8px 12px; border-radius: 12px;
  margin-top: auto;
}

/* Stripe Card */
.stripe-card {
  padding: 44px 40px; text-align: center;
  border: 2px solid var(--indigo);
}
.stripe-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--indigo-50); color: var(--indigo);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px;
  margin-bottom: 20px; border: 1px solid rgba(99,102,241,0.2);
}
.stripe-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900;
  color: var(--slate-900); margin-bottom: 8px;
}
.stripe-sub { font-size: 0.88rem; color: var(--slate-500); margin-bottom: 28px; }

.btn-stripe {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--indigo); color: white;
  font-size: 1.05rem; font-weight: 800;
  padding: 18px 40px; border-radius: var(--radius-btn);
  border: none; cursor: pointer; width: 100%; max-width: 420px;
  justify-content: center; transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(99,102,241,0.35);
  margin-bottom: 20px;
}
.btn-stripe:hover {
  background: #4338ca; transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(99,102,241,0.45);
}

.stripe-info-box {
  background: var(--slate-50); border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px; padding: 20px 22px;
  text-align: left; max-width: 420px; margin: 0 auto 20px;
}
.sib-header {
  font-size: 0.82rem; font-weight: 800; color: var(--slate-800);
  display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
}
.sib-header i { color: var(--indigo); }
.stripe-info-box p {
  font-size: 0.78rem; color: var(--slate-500); line-height: 1.6;
  margin-bottom: 14px;
}
.btn-unlock {
  width: 100%; background: var(--slate-900); color: white;
  font-size: 0.82rem; font-weight: 800; padding: 13px 20px;
  border-radius: 12px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s ease;
}
.btn-unlock:hover { background: var(--slate-700); }
.stripe-legal {
  font-size: 0.72rem; color: var(--slate-400);
  max-width: 380px; margin: 0 auto; line-height: 1.5;
}

/* ===================== RESULT ===================== */
.result-header-card {
  background: linear-gradient(135deg, #064e3b, #065f46);
  border-radius: var(--radius-card);
  padding: 52px 40px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.rh-glow {
  position: absolute; top: -40px; right: -40px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
}
.rh-icon {
  font-size: 3rem; color: #6ee7b7; display: block; margin-bottom: 16px;
}
.rh-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: white; margin-bottom: 8px;
}
.rh-sub { font-size: 0.95rem; color: #a7f3d0; font-weight: 500; margin-bottom: 16px; }
.rh-ref-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px; padding: 8px 18px;
  font-size: 0.75rem; font-weight: 700; color: #d1fae5;
  letter-spacing: 0.05em;
}

/* Scores card */
.scores-card { padding: 36px 40px; }
@media (max-width: 640px) { .scores-card { padding: 24px 18px; } }
.scores-title {
  font-size: 1.1rem; font-weight: 800; color: var(--slate-900);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--slate-100); padding-bottom: 16px;
  margin-bottom: 24px;
}
.scores-title i { color: var(--indigo); }

.scores-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 600px) { .scores-grid { grid-template-columns: 1fr; } }

.score-item {
  background: var(--slate-50); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px; padding: 20px;
}
.score-header-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.score-label {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--slate-700);
}
.score-badge {
  font-size: 0.75rem; font-weight: 900;
  padding: 4px 10px; border-radius: 8px;
}
.indigo-badge { background: var(--indigo-50); color: var(--indigo); }
.pink-badge   { background: var(--pink-50);   color: var(--pink); }
.purple-badge { background: var(--purple-50); color: var(--purple); }
.amber-badge  { background: var(--amber-50);  color: var(--amber); }

.score-bar-bg {
  width: 100%; height: 8px;
  background: rgba(0,0,0,0.06); border-radius: 50px;
  overflow: hidden; margin-bottom: 10px;
}
.score-bar-fill {
  height: 100%; border-radius: 50px;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}
.indigo-bar { background: var(--indigo); }
.pink-bar   { background: var(--pink); }
.purple-bar { background: var(--purple); }
.amber-bar  { background: var(--amber); }

.sev-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  padding: 4px 10px; border-radius: 8px; border: 1px solid;
  margin-bottom: 8px;
}
.sev-light  { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.sev-medium { background: #fffbeb; color: #d97706; border-color: #fde68a; }
.sev-severe { background: #fff1f2; color: #e11d48; border-color: #fecdd3; }

.score-desc {
  font-size: 0.75rem; color: var(--slate-500); line-height: 1.5; margin: 0;
}

/* Protocol card */
.protocol-card {
  padding: 44px 40px;
  border: 2px solid var(--emerald);
  position: relative;
}
@media (max-width: 640px) { .protocol-card { padding: 28px 20px; } }

.protocol-badge-row { margin-bottom: 16px; }
.protocol-rec-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--emerald-50); color: #065f46;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px;
}

.protocol-label {
  display: block; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--emerald); margin-bottom: 8px;
}
.protocol-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--slate-900); line-height: 1.2; margin-bottom: 8px;
}
.protocol-products {
  font-size: 1.15rem; font-weight: 800; color: var(--emerald);
  margin-bottom: 0;
}

.protocol-details {
  border-top: 1px solid var(--slate-100);
  padding-top: 24px; margin-top: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.pd-label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 800;
  color: var(--slate-400); margin-bottom: 6px;
}
.pd-text { font-size: 0.95rem; font-weight: 700; color: var(--slate-800); }
.pd-posology {
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.2);
  border-radius: 14px; padding: 16px 18px;
  font-size: 0.9rem; font-weight: 600; color: var(--slate-700); line-height: 1.6;
}
.pd-argument {
  display: flex; gap: 14px;
  background: var(--emerald-50); border: 1px solid rgba(16,185,129,0.2);
  border-radius: 18px; padding: 20px;
}
.pd-arg-icon {
  font-size: 1.4rem; color: var(--emerald); flex-shrink: 0;
}
.pd-argument h5 {
  font-size: 0.9rem; font-weight: 800; color: #065f46; margin-bottom: 6px;
}
.pd-argument p {
  font-size: 0.82rem; color: #047857; line-height: 1.6; margin: 0;
}

/* Products visual grid */
.products-visual-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--slate-100);
}
@media (max-width: 540px) { .products-visual-grid { grid-template-columns: 1fr; } }

.product-visual-card {
  background: var(--slate-50); border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px; padding: 18px;
}
.pvc-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.pvc-dot { width: 12px; height: 12px; border-radius: 50%; }
.pvc-dot.pink { background: var(--pink); }
.pvc-dot.lime { background: #84cc16; }
.pvc-name { font-size: 0.95rem; font-weight: 800; color: var(--slate-900); }
.pvc-desc { font-size: 0.75rem; color: var(--slate-500); font-weight: 600; margin-bottom: 12px; }

.pvc-blisters {
  display: flex; gap: 6px; background: white;
  padding: 10px; border-radius: 12px;
  justify-content: center; margin-bottom: 12px;
}
.blister-pill {
  width: 14px; height: 32px;
  border-radius: 50px; border: 1px solid rgba(0,0,0,0.1);
  background: white; position: relative; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.blister-pill.pink-pill { background: linear-gradient(to bottom, #fdf2f8, #fbcfe8); }
.blister-pill.lime-pill { background: linear-gradient(to bottom, #f7fee7, #d9f99d); }

.pvc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pvc-tag {
  font-size: 0.65rem; font-weight: 700; background: white;
  border: 1px solid rgba(0,0,0,0.08); color: var(--slate-700);
  padding: 4px 9px; border-radius: 50px;
}

/* PDF banner */
.pdf-banner-card {
  background: linear-gradient(135deg, #1e1b4b, var(--slate-900));
  border-radius: var(--radius-card);
  padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  box-shadow: var(--shadow-xl);
}
.pdf-pulse-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.pdf-pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--emerald);
  animation: iconPulse 1.5s ease-in-out infinite;
}
.pdf-pulse-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 800; color: #818cf8;
}
.pdf-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900; color: white; margin-bottom: 8px;
}
.pdf-desc { font-size: 0.82rem; color: #94a3b8; line-height: 1.6; max-width: 380px; }
.pdf-right { flex-shrink: 0; text-align: center; }

.btn-pdf {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--slate-900);
  font-size: 0.95rem; font-weight: 800;
  padding: 16px 32px; border-radius: var(--radius-btn);
  border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.2s ease; margin-bottom: 10px;
}
.btn-pdf:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.3); }
.btn-pdf i { color: #dc2626; font-size: 1.1rem; }
.pdf-note { font-size: 0.72rem; color: #94a3b8; }

/* Notices */
.notices-section { display: flex; flex-direction: column; gap: 14px; }

.notice-accordion {
  background: white; border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.notice-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  transition: background 0.2s ease;
}
.notice-header:hover { background: var(--slate-50); }
.notice-header-left { display: flex; align-items: center; gap: 12px; }
.notice-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.notice-icon.pink-icon { background: var(--pink-50); color: var(--pink); }
.notice-icon.lime-icon { background: #f7fee7; color: #65a30d; }
.notice-header-text h4 {
  font-size: 0.95rem; font-weight: 800; color: var(--slate-900); margin-bottom: 2px;
}
.notice-header-text p { font-size: 0.75rem; color: var(--slate-500); font-weight: 500; }
.notice-toggle {
  color: var(--slate-400); font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.notice-accordion.open .notice-toggle { transform: rotate(180deg); }

.notice-body {
  display: none; padding: 0 24px 24px;
}
.notice-accordion.open .notice-body { display: block; }

.notice-section-title {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 800; color: var(--slate-500); margin: 18px 0 8px;
}
.notice-text {
  font-size: 0.85rem; color: var(--slate-700); line-height: 1.6;
  background: var(--slate-50); border-radius: 12px; padding: 14px 16px;
}
.notice-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.notice-list li {
  font-size: 0.82rem; color: var(--slate-700);
  padding: 10px 14px; border-radius: 10px;
  background: var(--slate-50);
  display: flex; align-items: flex-start; gap: 8px;
}
.notice-list li::before {
  content: '•'; color: var(--indigo); font-weight: 900; flex-shrink: 0;
}
.notice-warning li::before { color: #dc2626; }

/* Restart */
.restart-row { text-align: center; }
.btn-restart {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--slate-100); color: var(--slate-700);
  font-size: 0.88rem; font-weight: 700;
  padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.2s ease;
}
.btn-restart:hover {
  background: var(--slate-200); transform: translateY(-2px);
}
