/* Module Stratégie marketing — sponsoring.html (BiBoo 2026) */
.strategy-scope {
  --strat-teal: #00b5a3;
  --strat-teal-d: #007a6e;
  --strat-navy: #0f1f3d;
  --strat-gold: #f4c842;
}

.strategy-scope .strat-hero {
  background: linear-gradient(160deg, var(--strat-navy) 0%, #1a2b4a 50%, #003d38 100%);
  border-radius: 24px;
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.strategy-scope .strat-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 181, 163, 0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.strategy-scope .strat-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(244, 200, 66, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.strategy-scope .steps-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0;
}
.strategy-scope .steps-bar::-webkit-scrollbar {
  display: none;
}
.strategy-scope .step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.strategy-scope .step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}
.strategy-scope .step-circle.pending {
  background: #f1f5f4;
  color: #9ca3af;
  border-color: rgba(0, 0, 0, 0.08);
}
.strategy-scope .step-circle.active {
  background: var(--strat-teal);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 181, 163, 0.4);
}
.strategy-scope .step-circle.done {
  background: rgba(0, 181, 163, 0.12);
  color: var(--strat-teal-d);
  border-color: var(--strat-teal);
}
.strategy-scope .step-label {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #9ca3af;
  text-align: center;
  max-width: 76px;
  line-height: 1.3;
}
.strategy-scope .step-label.active {
  color: var(--strat-navy);
}
.strategy-scope .step-connector {
  flex: 1;
  height: 2px;
  min-width: 16px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 22px;
  transition: background 0.3s ease;
}
.strategy-scope .step-connector.done {
  background: var(--strat-teal);
}

.strategy-scope .strat-card {
  background: white;
  border-radius: 20px;
  border: 2px solid rgba(0, 181, 163, 0.12);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  animation: strat-card-in 0.35s ease;
  display: none;
}
.strategy-scope .strat-card.active {
  display: block;
}
@keyframes strat-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.strategy-scope .st-input {
  width: 100%;
  border: 1.5px solid rgba(0, 181, 163, 0.15);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  color: var(--strat-navy);
  background: white;
  outline: none;
  transition: all 0.25s ease;
}
.strategy-scope .st-input:focus {
  border-color: var(--strat-teal);
  box-shadow: 0 0 0 4px rgba(0, 181, 163, 0.1);
}
.strategy-scope .st-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
  font-family: "DM Sans", sans-serif;
}
.strategy-scope .st-label .req {
  color: var(--strat-teal);
}

.strategy-scope .choice-grid {
  display: grid;
  gap: 12px;
}
.strategy-scope .choice-card {
  border: 2px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  font-family: "DM Sans", sans-serif;
}
.strategy-scope .choice-card:hover {
  border-color: var(--strat-teal);
  transform: translateY(-2px);
}
.strategy-scope .choice-card.selected {
  border-color: var(--strat-teal);
  background: rgba(0, 181, 163, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 181, 163, 0.12);
}
.strategy-scope .choice-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 181, 163, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--strat-teal);
  transition: background 0.2s, color 0.2s;
}
.strategy-scope .choice-card.selected .choice-icon-wrap {
  background: var(--strat-teal);
  color: white;
}
.strategy-scope .choice-meta {
  flex: 1;
}
.strategy-scope .choice-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--strat-navy);
  margin-bottom: 2px;
}
.strategy-scope .choice-sub {
  font-size: 12px;
  color: #9ca3af;
}
.strategy-scope .choice-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.strategy-scope .choice-check svg {
  display: none;
}
.strategy-scope .choice-card.selected .choice-check {
  background: var(--strat-teal);
  border-color: var(--strat-teal);
}
.strategy-scope .choice-card.selected .choice-check svg {
  display: block;
}

.strategy-scope .toggle-group {
  display: flex;
  gap: 10px;
}
.strategy-scope .toggle-btn {
  flex: 1;
  padding: 12px;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: white;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #6b7c8d;
  text-align: center;
}
.strategy-scope .toggle-btn:hover {
  border-color: var(--strat-teal);
}
.strategy-scope .toggle-btn.selected {
  background: var(--strat-teal);
  border-color: var(--strat-teal);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 181, 163, 0.3);
}
.strategy-scope .toggle-btn.selected-no {
  background: #ef4444;
  border-color: #ef4444;
  color: white;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25);
}

.strategy-scope .strat-next {
  width: 100%;
  background: linear-gradient(135deg, var(--strat-teal), var(--strat-teal-d));
  color: white;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 15px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 181, 163, 0.3);
}
.strategy-scope .strat-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 181, 163, 0.4);
}
.strategy-scope .strat-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.strategy-scope .strat-back {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  padding: 8px 0;
  margin-top: 8px;
  transition: color 0.2s;
}
.strategy-scope .strat-back:hover {
  color: var(--strat-navy);
}

.strategy-scope .score-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}
.strategy-scope .score-ring > svg {
  transform: rotate(-90deg);
}
.strategy-scope .score-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
}
.strategy-scope .score-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--strat-navy);
}
.strategy-scope .score-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 600;
}

.strategy-scope .roadmap-path {
  position: relative;
  padding: 0 0 0 40px;
}
.strategy-scope .roadmap-path::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--strat-teal), rgba(0, 181, 163, 0.15));
}
.strategy-scope .roadmap-step {
  position: relative;
  margin-bottom: 20px;
  animation: strat-roadmap-in 0.4s ease both;
}
@keyframes strat-roadmap-in {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.strategy-scope .roadmap-dot {
  position: absolute;
  left: -30px;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--strat-teal);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--strat-teal);
}
.strategy-scope .roadmap-card {
  background: white;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 181, 163, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.strategy-scope .roadmap-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

@media (max-width: 640px) {
  .strategy-scope .strat-hero {
    padding: 36px 24px;
  }
  .strategy-scope .strat-card {
    padding: 20px;
  }
  .strategy-scope .choice-grid.cols-3 {
    grid-template-columns: 1fr !important;
  }
}
