/* Page accueil - styles spécifiques */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  text-align: center;
}

.trust-stat__number {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xs);
}

.trust-stat__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .trust-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== Guide Tabs ===== */
.guide-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.guide-tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--spacing-xl);
}

.guide-tab {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.guide-tab:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}

.guide-tab.active {
  background: rgba(88,128,97,0.2);
  border-color: #588061;
  color: var(--color-white);
}

.guide-tab__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.25s;
}

.guide-tab.active .guide-tab__num {
  background: #588061;
  color: white;
}

/* Panels */
.guide-panel {
  display: none;
}

.guide-panel.active {
  display: block;
  animation: guideFadeIn 0.35s ease;
}

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

.guide-panel h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.guide-panel > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.25rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.guide-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #588061;
}

.guide-list li strong {
  color: var(--color-white);
}

/* Illustration */
.guide-tabs__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.guide-illustration {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  position: relative;
}

.guide-svg {
  display: none;
  width: 100%;
  height: 100%;
}

.guide-svg.active {
  display: block;
  animation: guideFadeIn 0.4s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .guide-tabs {
    grid-template-columns: 1fr;
  }
  .guide-tabs__right {
    position: static;
    order: -1;
    margin-bottom: var(--spacing-lg);
  }
  .guide-illustration {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .guide-tabs__nav {
    gap: 0.375rem;
  }
  .guide-tab {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  .guide-tab__num {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  .guide-tabs__right {
    display: none;
  }
}
