/* ==========================================================
   CULTURE PAGES — Premium Modernisation
   Scopé à body.culture-premium pour éviter les conflits
   ========================================================== */

body.culture-premium {
  --cp-bg: #F8F5F0;
  --cp-card: #FFFFFF;
  --cp-text: #2C1810;
  --cp-text-muted: rgba(44, 24, 16, 0.7);
  --cp-border: rgba(44, 24, 16, 0.08);
  --cp-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
  --cp-shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.1);
  --cp-vert: #4A7C59;
  --cp-or: #D4A574;
  --cp-terre: #2C1810;
  --cp-ivoire: #F0E9DD;
  --cp-gris: #6B6B6B;
}

[data-theme="dark"] body.culture-premium {
  --cp-bg: #1A1612;
  --cp-card: #201C18;
  --cp-text: #F5F0E8;
  --cp-text-muted: rgba(245, 240, 232, 0.65);
  --cp-border: rgba(245, 240, 232, 0.1);
  --cp-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  --cp-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --cp-ivoire: #2A2520;
}

/* ---------- PAGE BACKGROUND ---------- */
body.culture-premium {
  background: var(--cp-bg);
}

/* ---------- SECTION HEADER PREMIUM ---------- */
.culture-premium .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.culture-premium .cp-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cp-or);
  margin-bottom: 16px;
}

.culture-premium .cp-section-title {
  font-family: var(--font-titre);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--cp-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.culture-premium .cp-section-title span {
  color: var(--cp-vert);
}

.culture-premium .cp-section-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--cp-or), var(--cp-vert));
  border-radius: 2px;
  margin: 0 auto;
}

/* ---------- PROBLEM CARDS PREMIUM ---------- */
.culture-premium .cp-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.culture-premium .cp-problem-card {
  background: var(--cp-card);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--cp-border);
  box-shadow: var(--cp-shadow);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.culture-premium .cp-problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cp-or), var(--cp-vert));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.culture-premium .cp-problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cp-shadow-lg);
}

.culture-premium .cp-problem-card:hover::before {
  opacity: 1;
}

.culture-premium .cp-problem-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cp-or), #C49460);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.culture-premium .cp-problem-card h3 {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  color: var(--cp-text);
  margin-bottom: 12px;
  font-weight: 600;
}

.culture-premium .cp-problem-card p {
  color: var(--cp-text-muted);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---------- SOLUTION ITEMS PREMIUM ---------- */
.culture-premium .cp-solution-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.culture-premium .cp-solution-item:hover {
  background: var(--cp-ivoire);
}

.culture-premium .cp-solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cp-vert), #3A6B49);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(74, 124, 89, 0.25);
}

.culture-premium .cp-solution-item:hover .cp-solution-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.35);
}

.culture-premium .cp-solution-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.culture-premium .cp-solution-text h4 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--cp-text);
}

.culture-premium .cp-solution-text p {
  margin: 0;
  color: var(--cp-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- CULTURE DOSE PREMIUM ---------- */
.culture-premium .cp-culture-dose {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: linear-gradient(135deg, var(--cp-ivoire), rgba(212, 165, 116, 0.1));
  padding: 18px 28px;
  border-radius: 14px;
  margin-bottom: 28px;
  border: 1px solid var(--cp-border);
}

.culture-premium .cp-culture-dose-value {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cp-vert), #3A6B49);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.culture-premium .cp-culture-dose-label {
  font-size: 0.9375rem;
  color: var(--cp-text-muted);
  font-weight: 500;
}

/* ---------- STATS BANNER PREMIUM ---------- */
.culture-premium .cp-stats-section {
  background: linear-gradient(135deg, var(--cp-terre), #1a0f0a) !important;
  position: relative;
  overflow: hidden;
}

.culture-premium .cp-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.culture-premium .cp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.culture-premium .cp-stats-item {
  padding: 48px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.culture-premium .cp-stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.culture-premium .cp-stats-item:hover {
  background: rgba(255,255,255,0.04);
}

.culture-premium .cp-stats-value {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cp-or);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.culture-premium .cp-stats-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ---------- TESTIMONIAL PREMIUM ---------- */
.culture-premium .cp-testimonial {
  background: var(--cp-card);
  border-radius: 24px;
  padding: 56px 48px 48px;
  border: 1px solid var(--cp-border);
  box-shadow: var(--cp-shadow);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.culture-premium .cp-testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 36px;
  font-family: var(--font-titre);
  font-size: 120px;
  line-height: 1;
  color: var(--cp-or);
  opacity: 0.15;
  pointer-events: none;
}

.culture-premium .cp-testimonial-quote {
  font-family: var(--font-titre);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--cp-text);
  line-height: 1.7;
  margin-bottom: 36px;
  padding-left: 24px;
  border-left: 3px solid var(--cp-or);
}

.culture-premium .cp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 24px;
}

.culture-premium .cp-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cp-or), #C49460);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
}

.culture-premium .cp-testimonial-name {
  font-weight: 600;
  color: var(--cp-text);
  margin: 0;
  font-size: 1rem;
}

.culture-premium .cp-testimonial-info {
  font-size: 14px;
  color: var(--cp-text-muted);
  margin: 4px 0 0;
}

.culture-premium .cp-testimonial-gain {
  font-size: 14px;
  color: var(--cp-vert);
  font-weight: 700;
  margin: 6px 0 0;
}

/* ---------- ECONOMY SECTION PREMIUM ---------- */
.culture-premium .cp-economy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.culture-premium .cp-economy-card {
  background: var(--cp-card);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--cp-border);
  box-shadow: var(--cp-shadow);
}

.culture-premium .cp-economy-card h3 {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  color: var(--cp-text);
  margin-bottom: 20px;
}

.culture-premium .cp-economy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--cp-border);
  font-size: 0.9375rem;
}

.culture-premium .cp-economy-row:last-child {
  border-bottom: none;
}

.culture-premium .cp-economy-row span:first-child {
  color: var(--cp-text-muted);
}

.culture-premium .cp-economy-row strong {
  color: var(--cp-text);
  font-weight: 700;
}

.culture-premium .cp-economy-row strong.cp-highlight {
  color: var(--cp-vert);
  font-size: 1.1rem;
}

.culture-premium .cp-roi-card {
  background: linear-gradient(135deg, var(--cp-terre), #1a0f0a);
  color: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--cp-shadow-lg);
}

.culture-premium .cp-roi-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.08), transparent 50%);
  pointer-events: none;
}

.culture-premium .cp-roi-label {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
  position: relative;
}

.culture-premium .cp-roi-value {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--cp-or), #F0D0A0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  position: relative;
}

.culture-premium .cp-roi-desc {
  margin-top: 12px;
  opacity: 0.85;
  position: relative;
}

.culture-premium .cp-roi-note {
  font-size: 13px;
  opacity: 0.45;
  margin-top: 16px;
  position: relative;
}

/* ---------- FAQ ACCORDION PREMIUM ---------- */
.culture-premium .cp-faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.culture-premium .cp-faq-item {
  background: var(--cp-card);
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--cp-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.culture-premium .cp-faq-item:hover {
  border-color: rgba(212, 165, 116, 0.3);
}

.culture-premium .cp-faq-item.is-open {
  box-shadow: var(--cp-shadow);
}

.culture-premium .cp-faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cp-text);
  transition: color 0.3s ease;
}

.culture-premium .cp-faq-question:hover {
  color: var(--cp-or);
}

.culture-premium .cp-faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--cp-or);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.culture-premium .cp-faq-item.is-open .cp-faq-question svg {
  transform: rotate(180deg);
}

.culture-premium .cp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.culture-premium .cp-faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--cp-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.js body.culture-premium .cp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js body.culture-premium .cp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.culture-premium .cp-reveal-delay-1 { transition-delay: 0.1s; }
.culture-premium .cp-reveal-delay-2 { transition-delay: 0.2s; }
.culture-premium .cp-reveal-delay-3 { transition-delay: 0.3s; }
.culture-premium .cp-reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- HERO TEXT COLOR FIX (dark mode) ---------- */
body.culture-premium .page-header,
body.culture-premium .page-header h1,
body.culture-premium .page-header p,
body.culture-premium .page-header .text-label {
  color: #FFFFFF !important;
}
body.culture-premium .page-header .btn-outline-white {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.5);
}

/* ---------- STAGGERED GRID REVEAL ---------- */
.culture-premium .cp-problem-card:nth-child(1) { transition-delay: 0s; }
.culture-premium .cp-problem-card:nth-child(2) { transition-delay: 0.1s; }
.culture-premium .cp-problem-card:nth-child(3) { transition-delay: 0.2s; }

.culture-premium .cp-stats-item:nth-child(1) { transition-delay: 0s; }
.culture-premium .cp-stats-item:nth-child(2) { transition-delay: 0.1s; }
.culture-premium .cp-stats-item:nth-child(3) { transition-delay: 0.2s; }
.culture-premium .cp-stats-item:nth-child(4) { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .culture-premium .cp-problem-grid {
    grid-template-columns: 1fr;
  }
  .culture-premium .cp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .culture-premium .cp-stats-item:nth-child(2)::after {
    display: none;
  }
  .culture-premium .cp-economy-grid {
    grid-template-columns: 1fr;
  }
  .culture-premium .cp-testimonial {
    padding: 40px 28px 32px;
  }
  .culture-premium .cp-testimonial::before {
    font-size: 80px;
    top: 10px;
    left: 20px;
  }
}

@media (max-width: 640px) {
  .culture-premium .cp-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: none;
  }
  .culture-premium .cp-stats-item {
    padding: 32px 16px;
    background: rgba(255,255,255,0.04);
  }
  .culture-premium .cp-stats-item::after {
    display: none !important;
  }
  .culture-premium .cp-testimonial-quote {
    font-size: 1.1rem;
    padding-left: 16px;
  }
  .culture-premium .cp-testimonial-author {
    padding-left: 16px;
  }
}
