/*
=============================================================
  Fichier    : promo.css
  Projet     : Financial Analyzer
  Description: Styles et animations pour l'onglet Présentation
               Carousel publicitaire 6 slides, animations CSS pures
  Auteur     : Claude Marcel
  Version    : 1.0
  Date       : 2026-04-08
  Dépendances: variables.css
=============================================================
*/

/* ==================== CONTENEUR PRINCIPAL ==================== */

#tab-promo {
  padding: 0;
}

.promo-wrapper {
  background: linear-gradient(145deg, #0f172a 0%, #1a2744 60%, #0f172a 100%);
  border-radius: var(--border-radius-lg, 16px);
  overflow: hidden;
  color: #f1f5f9;
}

/* ==================== EN-TÊTE ==================== */

.promo-header {
  text-align: center;
  padding: 24px 32px 16px;
  position: relative;
}

.promo-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.promo-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.promo-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-logo-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promo-logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.promo-tagline {
  font-size: 0.8rem;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

/* ==================== CAROUSEL ==================== */

.promo-carousel-wrapper {
  position: relative;
  padding: 16px 20px 24px;
}

.promo-slides-track {
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}

.promo-slides-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ==================== SLIDE DE BASE ==================== */

.promo-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Halo coloré en arrière-plan selon la slide */
.promo-slide::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  filter: blur(60px);
}

.promo-slide-1::before { background: #10b981; }
.promo-slide-2::before { background: #3b82f6; }
.promo-slide-3::before { background: #8b5cf6; }
.promo-slide-4::before { background: #f59e0b; }
.promo-slide-5::before { background: #06b6d4; }
.promo-slide-6::before { background: #6366f1; }

/* ==================== PARTIE TEXTE ==================== */

.promo-slide-text {
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.promo-badge-green  { background: rgba(16,185,129,0.2);  color: #34d399; border: 1px solid rgba(16,185,129,0.3); }
.promo-badge-blue   { background: rgba(59,130,246,0.2);  color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.promo-badge-purple { background: rgba(139,92,246,0.2);  color: #a78bfa; border: 1px solid rgba(139,92,246,0.3); }
.promo-badge-amber  { background: rgba(245,158,11,0.2);  color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }
.promo-badge-cyan   { background: rgba(6,182,212,0.2);   color: #22d3ee; border: 1px solid rgba(6,182,212,0.3); }
.promo-badge-indigo { background: rgba(99,102,241,0.2);  color: #818cf8; border: 1px solid rgba(99,102,241,0.3); }

.promo-slide-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.promo-slide-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0 0 22px;
}

.promo-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-highlights li {
  font-size: 0.82rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-highlights li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  color: #10b981;
  font-size: 0.6rem;
  font-weight: 900;
}

/* ==================== PARTIE VISUELLE ==================== */

.promo-slide-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

/* =============================== */
/* SLIDE 1 — Score de Santé       */
/* =============================== */

.promo-score-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.promo-score-ring {
  position: relative;
  width: 150px;
  height: 150px;
}

.promo-score-ring svg {
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 18px rgba(16,185,129,0.28));
}

.promo-score-track {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 12;
}

.promo-score-fill {
  fill: none;
  stroke: #10b981;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 326.726;
  stroke-dashoffset: 326.726;
}

.promo-slide-active .promo-score-fill {
  animation: promoDrawScore 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes promoDrawScore {
  to { stroke-dashoffset: 58.81; }
}

.promo-score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.promo-score-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: #f8fafc;
  line-height: 1;
  letter-spacing: -0.04em;
}

.promo-score-denom {
  font-size: 0.7rem;
  color: #64748b;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.promo-score-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-score-pill {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(6px);
}

.promo-slide-active .promo-score-pill:nth-child(1) { animation: promoPillIn 0.4s ease forwards 1.6s; }
.promo-slide-active .promo-score-pill:nth-child(2) { animation: promoPillIn 0.4s ease forwards 1.85s; }
.promo-slide-active .promo-score-pill:nth-child(3) { animation: promoPillIn 0.4s ease forwards 2.1s; }

@keyframes promoPillIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ======================== */
/* SLIDE 2 — Ratios        */
/* ======================== */

.promo-ratio-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 310px;
}

.promo-ratio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 13px 16px;
  opacity: 0;
  transform: translateX(18px);
}

.promo-slide-active .promo-ratio-card:nth-child(1) { animation: promoSlideIn 0.5s ease forwards 0.2s; }
.promo-slide-active .promo-ratio-card:nth-child(2) { animation: promoSlideIn 0.5s ease forwards 0.45s; }
.promo-slide-active .promo-ratio-card:nth-child(3) { animation: promoSlideIn 0.5s ease forwards 0.7s; }

@keyframes promoSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

.promo-ratio-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.promo-ratio-name {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

.promo-ratio-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
}

.promo-ratio-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
}

.promo-ratio-bar-fill {
  width: var(--bar-w, 50%);
  height: 100%;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
}

.promo-slide-active .promo-ratio-card:nth-child(1) .promo-ratio-bar-fill { animation: promoBarGrow 0.8s ease-out forwards 0.7s; }
.promo-slide-active .promo-ratio-card:nth-child(2) .promo-ratio-bar-fill { animation: promoBarGrow 0.8s ease-out forwards 0.95s; }
.promo-slide-active .promo-ratio-card:nth-child(3) .promo-ratio-bar-fill { animation: promoBarGrow 0.8s ease-out forwards 1.2s; }

@keyframes promoBarGrow {
  to { transform: scaleX(1); }
}

.bar-green { background: linear-gradient(90deg, #059669, #10b981); }
.bar-blue  { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.bar-amber { background: linear-gradient(90deg, #d97706, #fbbf24); }

/* =========================== */
/* SLIDE 3 — Comparaison      */
/* =========================== */

.promo-compare-container {
  width: 100%;
  max-width: 310px;
}

.promo-compare-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.promo-compare-company {
  text-align: center;
  padding: 8px 10px;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 8px;
  opacity: 0;
}

.promo-compare-company.aapl { background: rgba(59,130,246,0.18); color: #60a5fa; }
.promo-compare-company.msft { background: rgba(16,185,129,0.18); color: #34d399; }
.promo-compare-company.vs   { color: #475569; font-size: 0.72rem; display: flex; align-items: center; justify-content: center; }

.promo-slide-active .promo-compare-company { animation: promoFadeIn 0.4s ease forwards 0.2s; }

.promo-compare-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.promo-compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.promo-slide-active .promo-compare-row:nth-child(1) { animation: promoFadeIn 0.4s ease forwards 0.6s; }
.promo-slide-active .promo-compare-row:nth-child(2) { animation: promoFadeIn 0.4s ease forwards 0.8s; }
.promo-slide-active .promo-compare-row:nth-child(3) { animation: promoFadeIn 0.4s ease forwards 1.0s; }
.promo-slide-active .promo-compare-row:nth-child(4) { animation: promoFadeIn 0.4s ease forwards 1.2s; }

.promo-compare-val {
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 6px 8px;
  border-radius: 6px;
}

.promo-compare-val.win  { background: rgba(16,185,129,0.15); color: #34d399; }
.promo-compare-val.lose { background: rgba(255,255,255,0.04); color: #475569; }

.promo-compare-label {
  font-size: 0.68rem;
  color: #475569;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@keyframes promoFadeIn {
  to { opacity: 1; }
}

/* ======================== */
/* SLIDE 4 — PDF IA        */
/* ======================== */

.promo-pdf-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 290px;
}

.promo-pdf-icon {
  width: 60px;
  height: 74px;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.05));
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
}

.promo-slide-active .promo-pdf-icon {
  animation: promoFadeIn 0.5s ease forwards 0.2s;
}

.promo-pdf-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fbbf24;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promo-pdf-label-badge {
  font-size: 0.55rem;
  font-weight: 900;
  color: #fbbf24;
  letter-spacing: 0.1em;
}

.promo-pdf-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.promo-slide-active .promo-pdf-arrow {
  animation: promoFadeIn 0.5s ease forwards 0.8s;
}

.promo-pdf-arrow-line {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,158,11,0.3), #fbbf24);
}

.promo-pdf-arrow-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0.03em;
}

.promo-pdf-results {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  opacity: 0;
}

.promo-slide-active .promo-pdf-results {
  animation: promoFadeIn 0.5s ease forwards 1.3s;
}

.promo-pdf-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
}

.promo-slide-active .promo-pdf-result-item:nth-child(1) { animation: promoFadeIn 0.4s ease forwards 1.7s; }
.promo-slide-active .promo-pdf-result-item:nth-child(2) { animation: promoFadeIn 0.4s ease forwards 2.1s; }
.promo-slide-active .promo-pdf-result-item:nth-child(3) { animation: promoFadeIn 0.4s ease forwards 2.5s; }

.promo-pdf-result-key {
  font-size: 0.74rem;
  color: #64748b;
}

.promo-pdf-result-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: #f8fafc;
}

/* ========================= */
/* SLIDE 5 — Historique     */
/* ========================= */

.promo-chart-container {
  width: 100%;
  max-width: 340px;
}

.promo-chart-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.promo-chart-title {
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-chart-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #22d3ee;
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 2px 8px;
  border-radius: 999px;
}

.promo-chart-svg {
  width: 100%;
  overflow: visible;
}

.promo-chart-area-fill {
  opacity: 0;
}

.promo-slide-active .promo-chart-area-fill {
  animation: promoFadeIn 1s ease forwards 2s;
}

.promo-chart-path {
  fill: none;
  stroke: #22d3ee;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
}

.promo-slide-active .promo-chart-path {
  animation: promoDrawPath 2s ease-out 0.4s forwards;
}

@keyframes promoDrawPath {
  to { stroke-dashoffset: 0; }
}

.promo-chart-dots circle {
  opacity: 0;
}

.promo-slide-active .promo-chart-dots circle:nth-child(1) { animation: promoFadeIn 0.3s ease forwards 0.7s; }
.promo-slide-active .promo-chart-dots circle:nth-child(2) { animation: promoFadeIn 0.3s ease forwards 1.1s; }
.promo-slide-active .promo-chart-dots circle:nth-child(3) { animation: promoFadeIn 0.3s ease forwards 1.5s; }
.promo-slide-active .promo-chart-dots circle:nth-child(4) { animation: promoFadeIn 0.3s ease forwards 1.9s; }
.promo-slide-active .promo-chart-dots circle:nth-child(5) { animation: promoFadeIn 0.3s ease forwards 2.3s; }

.promo-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 2px;
}

.promo-chart-year {
  font-size: 0.68rem;
  color: #475569;
}

.promo-chart-stats {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.promo-chart-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
}

.promo-slide-active .promo-chart-stat:nth-child(1) { animation: promoFadeIn 0.4s ease forwards 2.5s; }
.promo-slide-active .promo-chart-stat:nth-child(2) { animation: promoFadeIn 0.4s ease forwards 2.7s; }
.promo-slide-active .promo-chart-stat:nth-child(3) { animation: promoFadeIn 0.4s ease forwards 2.9s; }

.promo-chart-stat-val {
  font-size: 1rem;
  font-weight: 800;
  color: #22d3ee;
}

.promo-chart-stat-lbl {
  font-size: 0.62rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================== */
/* SLIDE 6 — Couverture       */
/* =========================== */

.promo-markets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.promo-market-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  opacity: 0;
  transform: scale(0.82);
  transition: border-color 0.2s ease;
}

.promo-market-badge:hover {
  border-color: rgba(99,102,241,0.4);
}

.promo-slide-active .promo-market-badge:nth-child(1) { animation: promoPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards 0.1s; }
.promo-slide-active .promo-market-badge:nth-child(2) { animation: promoPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards 0.2s; }
.promo-slide-active .promo-market-badge:nth-child(3) { animation: promoPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards 0.3s; }
.promo-slide-active .promo-market-badge:nth-child(4) { animation: promoPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards 0.4s; }
.promo-slide-active .promo-market-badge:nth-child(5) { animation: promoPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards 0.5s; }
.promo-slide-active .promo-market-badge:nth-child(6) { animation: promoPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards 0.6s; }
.promo-slide-active .promo-market-badge:nth-child(7) { animation: promoPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards 0.7s; }
.promo-slide-active .promo-market-badge:nth-child(8) { animation: promoPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards 0.8s; }
.promo-slide-active .promo-market-badge:nth-child(9) { animation: promoPopIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards 0.9s; }

@keyframes promoPopIn {
  to { opacity: 1; transform: scale(1); }
}

.promo-market-flag {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 5px;
}

.promo-market-name {
  font-size: 0.7rem;
  font-weight: 800;
  color: #e2e8f0;
  display: block;
  letter-spacing: 0.02em;
}

.promo-market-country {
  font-size: 0.6rem;
  color: #475569;
  display: block;
  margin-top: 2px;
}

/* ==================== FLÈCHES DE NAVIGATION ==================== */

.promo-nav-arrows {
  position: absolute;
  top: calc(50% - 14px);
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  transform: translateY(-50%);
}

.promo-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.promo-arrow:hover {
  background: rgba(37,99,235,0.85);
  border-color: rgba(59,130,246,0.5);
  transform: scale(1.1);
}

.promo-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==================== DOTS ==================== */

.promo-dots-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}

.promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.promo-dot.active {
  width: 26px;
  background: #3b82f6;
}

/* ==================== BARRE DE PROGRESSION ==================== */

.promo-progress-bar {
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 14px;
}

.promo-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: promoProgressAnim 5s linear forwards;
}

@keyframes promoProgressAnim {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ==================== CTA BAS ==================== */

.promo-footer-cta {
  text-align: center;
  padding: 16px 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.promo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}

.promo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.5);
  color: white;
}

.promo-cta-note {
  font-size: 0.8rem;
  color: #475569;
}

/* ==================== RESPONSIVE — TABLETTE ==================== */

@media (max-width: 900px) {
  .promo-slide {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 28px;
  }

  .promo-slide-visual {
    min-height: 200px;
  }

  .promo-carousel-wrapper {
    padding: 16px 20px 22px;
  }

  .promo-nav-arrows {
    left: 20px;
    right: 20px;
  }

  .promo-header {
    padding: 24px 24px 14px;
  }

  .promo-slide-title {
    font-size: 1.25rem;
  }

  .promo-footer-cta {
    flex-direction: column;
    gap: 10px;
    padding: 16px 24px 28px;
  }
}

/* ==================== RESPONSIVE — MOBILE ==================== */

@media (max-width: 480px) {
  .promo-slide {
    padding: 24px 20px;
  }

  .promo-markets-grid {
    max-width: 260px;
  }

  .promo-ratio-cards,
  .promo-compare-container,
  .promo-pdf-container,
  .promo-chart-container {
    max-width: 100%;
  }
}
