/* ================================================================
   TON ATELIER (LE LAB DU MANAGER) - V3 MINIMALISTE MODERNE 2025
   Design épuré avec dégradés élégants et micro-interactions
   ================================================================ */

/* ================================================================
   VARIABLES CSS - DESIGN SYSTEM
   ================================================================ */
.tedcraft-custom-page {
  /* Couleurs */
  --white: #ffffff;

  --sage-50: #f9f8f6;
  --sage-100: #f4f2ee;
  --sage-200: #ede8e0;
  --sage-300: #d8cfc2;
  --sage-400: #566c40;
  --sage-500: #566c40;
  --sage-600: #566c40;
  --sage-700: #4a5b37;
  --sage-800: #4a5b37;

  --stone-50: #fdfcfa;
  --stone-100: #f7f5f2;
  --stone-200: #efebe6;
  --stone-300: #e2ddd6;
  --stone-400: #c4bab0;
  --stone-500: #8f8075;
  --stone-600: #6b5d52;
  --stone-700: #544840;
  --stone-800: #3d322a;

  --copper-400: #d4965a;
  --copper-500: #c08552;
  --copper-600: #a67247;

  /* Typographie */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-serif: Georgia, serif;
  --font-mono: "SF Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace;

  /* Espacement moderne (généreux) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Ombres modernes (subtiles) */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions micro (< 300ms) */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-150: 150ms;
  --duration-200: 200ms;
  --duration-300: 300ms;

  /* Configuration globale */
  font-family: var(--font-sans);
  color: var(--stone-700);
  background: linear-gradient(180deg,
    var(--stone-50) 0%,
    rgba(249, 248, 246, 0.98) 50%,
    rgba(244, 242, 238, 0.95) 100%
  );
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Full-width container */
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

/* Container global */
.tedcraft-custom-page .tc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

/* Reset */
.tedcraft-custom-page *,
.tedcraft-custom-page *::before,
.tedcraft-custom-page *::after {
  box-sizing: border-box;
}

/* Sélection moderne */
.tedcraft-custom-page ::selection {
  background: var(--sage-500);
  color: white;
}

/* ================================================================
   BADGE PREMIUM (CONSERVÉ DE L'ORIGINAL)
   Minimaliste avec backdrop-filter et glow subtil
   ================================================================ */
.tedcraft-custom-page .tc-badge {
  position: absolute;
  top: var(--space-8);
  left: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(117, 140, 99, 0.15);
  border-radius: 50px;
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(117, 140, 99, 0.08);
  z-index: 10;
  transition: all var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(117, 140, 99, 0.15),
    0 0 30px rgba(117, 140, 99, 0.08);
}

.tedcraft-custom-page .tc-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  box-shadow: 0 0 8px rgba(117, 140, 99, 0.3);
  animation: tc-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes tc-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.tedcraft-custom-page .tc-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stone-800);
  letter-spacing: 0.02em;
}

/* Cacher le badge quand la vue authenticated est active (le badge est au même niveau que authenticated-view) */
.tedcraft-custom-page:has(#authenticated-view:not([style*="display: none"])) .tc-badge,
.tedcraft-custom-page:has(#authenticated-view.tc-auth-container:not([style*="display: none"])) .tc-badge {
  display: none !important;
}

/* Fallback: si authenticated-view n'a pas display:none, cacher le badge */
#authenticated-view:not([style*="display: none"]) ~ .tc-badge {
  display: none !important;
}

/* Cacher l'élément Ghost CMS max-w-wide avec before pseudo-element (header Ghost) */
.max-w-wide {
  display: none !important;
}

.tedcraft-custom-page .max-w-wide {
  display: none !important;
}

/* ================================================================
   AUTH LOADING OVERLAY
   ================================================================ */
.tedcraft-custom-page .tc-auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.tedcraft-custom-page .tc-loading {
  text-align: center;
}

.tedcraft-custom-page .tc-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--stone-200);
  border-top-color: var(--sage-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto var(--space-4);
}

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

.tedcraft-custom-page .tc-loading p {
  font-size: 0.95rem;
  color: var(--stone-600);
  margin: 0;
}

/* Auth container visibility */
.tedcraft-custom-page .tc-auth-container {
  display: none;
}

.tedcraft-custom-page .tc-auth-container.active {
  display: block;
}

/* ================================================================
   PARTIE AUTHENTICATED - SIDEBAR COACHING
   Minimaliste avec sidebar épurée
   ================================================================ */

/* Layout coaching */
.tedcraft-custom-page.coaching-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  gap: 0;
}

/* Sidebar */
.coaching-sidebar {
  background: linear-gradient(180deg, var(--white) 0%, var(--stone-50) 100%);
  border-right: 1px solid var(--stone-200);
  padding: var(--space-8) var(--space-6);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.coaching-sidebar-header {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--stone-200);
}

.coaching-sidebar-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--stone-800);
  margin: 0 0 var(--space-5);
  letter-spacing: -0.02em;
}

.coaching-back-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--stone-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--duration-200) var(--ease-out);
  padding: var(--space-2) 0;
}

.coaching-back-link:hover {
  color: var(--sage-600);
  transform: translateX(-3px);
}

.coaching-back-link .material-symbols-outlined {
  font-size: 1.2rem;
}

/* Sidebar menu */
.coaching-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.coaching-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: 12px;
  text-decoration: none;
  color: var(--stone-700);
  transition: all var(--duration-200) var(--ease-out);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.coaching-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--sage-600) 0%, var(--sage-700) 100%);
  transform: scaleY(0);
  transition: transform var(--duration-200) var(--ease-out);
}

.coaching-nav-link:hover::before,
.coaching-nav-link.active::before {
  transform: scaleY(1);
}

.coaching-nav-link:hover {
  background: linear-gradient(90deg, rgba(117, 140, 99, 0.03) 0%, transparent 100%);
  border-color: rgba(117, 140, 99, 0.1);
}

.coaching-nav-link.active {
  background: linear-gradient(90deg, rgba(117, 140, 99, 0.08) 0%, rgba(117, 140, 99, 0.02) 100%);
  border-color: rgba(117, 140, 99, 0.15);
  color: var(--sage-700);
}

.coaching-nav-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(117, 140, 99, 0.08) 0%, rgba(117, 140, 99, 0.05) 100%);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all var(--duration-200) var(--ease-out);
}

.coaching-nav-link.active .coaching-nav-icon {
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  box-shadow: 0 2px 8px rgba(117, 140, 99, 0.2);
}

.coaching-nav-icon .material-symbols-outlined {
  font-size: 1.4rem;
  color: var(--sage-600);
  transition: color var(--duration-200) var(--ease-out);
}

.coaching-nav-link.active .coaching-nav-icon .material-symbols-outlined {
  color: white;
}

.coaching-nav-label {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Main content */
.coaching-main {
  padding: var(--space-8);
  background: var(--stone-50);
  min-height: 100vh;
}

/* Bouton mobile toggle sidebar (caché par défaut, affiché en responsive) */
.coaching-mobile-toggle {
  display: none;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: white;
  border: 1px solid var(--stone-300);
  border-radius: 10px;
  color: var(--stone-700);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-200) var(--ease-out);
  margin-bottom: var(--space-6);
}

.coaching-mobile-toggle:hover {
  background: var(--stone-50);
  border-color: var(--sage-600);
  color: var(--sage-700);
}

.coaching-mobile-toggle .material-symbols-outlined {
  font-size: 1.25rem;
}

.coaching-sidebar-overlay {
  display: none;
}

.coaching-view {
  display: none;
}

.coaching-view.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

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

.coaching-view-header {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--stone-200);
}

.coaching-view-header .tc-title-1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--stone-800);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
}

.coaching-view-subtitle {
  font-size: 1.05rem;
  color: var(--stone-600);
  line-height: 1.6;
  margin: 0;
}

.coaching-section {
  padding: var(--space-6);
  background: white;
  border-radius: 16px;
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-xs);
}

/* ================================================================
   COACHING CONTENT - FILTRES + MASONRY GRID MODERNE
   Système professionnel pour naviguer dans beaucoup de contenu
   ================================================================ */

/* Header filtres sticky */
.coaching-filters-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--stone-50);
  padding: var(--space-6) 0;
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--stone-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Filtres buttons */
.coaching-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.coaching-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone-700);
  cursor: pointer;
  transition: all var(--duration-200) var(--ease-out);
  font-family: var(--font-sans);
}

.coaching-filter-btn:hover {
  background: var(--stone-100);
  border-color: var(--stone-300);
  transform: translateY(-1px);
}

.coaching-filter-btn.active {
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  border-color: var(--sage-600);
  color: white;
  box-shadow: 0 2px 8px rgba(117, 140, 99, 0.2);
}

.coaching-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 var(--space-1);
  background: var(--stone-200);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone-700);
}

.coaching-filter-btn.active .coaching-filter-count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Search bar */
.coaching-search {
  position: relative;
  flex-shrink: 0;
  min-width: 240px;
}

.coaching-search-icon {
  position: absolute;
  left: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--stone-500);
  pointer-events: none;
}

.coaching-search-input {
  width: 100%;
  padding: var(--space-2) var(--space-4) var(--space-2) var(--space-10);
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--stone-800);
  transition: all var(--duration-200) var(--ease-out);
}

.coaching-search-input:focus {
  outline: none;
  border-color: var(--sage-600);
  box-shadow: 0 0 0 3px rgba(117, 140, 99, 0.1);
}

.coaching-search-input::placeholder {
  color: var(--stone-500);
}

/* Masonry Grid */
.coaching-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  align-items: start;
}

/* Cards minimalistes */
.coaching-card {
  padding: var(--space-6);
  background: white;
  border-radius: 16px;
  border: 1px solid var(--stone-200);
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.coaching-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-600) 0%, var(--sage-700) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-300) var(--ease-out);
}

.coaching-card:hover::before {
  transform: scaleX(1);
}

.coaching-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(117, 140, 99, 0.2);
}

/* Card medium (plus haute) */
.coaching-card-medium {
  grid-row: span 2;
}

/* Card header */
.coaching-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.coaching-card-icon-small {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(117, 140, 99, 0.08) 0%,
    rgba(117, 140, 99, 0.05) 100%
  );
  border-radius: 10px;
  transition: all var(--duration-300) var(--ease-out);
}

.coaching-card:hover .coaching-card-icon-small {
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(117, 140, 99, 0.2);
}

.coaching-card-icon-small .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--sage-600);
  transition: color var(--duration-200) var(--ease-out);
}

.coaching-card:hover .coaching-card-icon-small .material-symbols-outlined {
  color: white;
}

/* Card badges */
.coaching-card-badge {
  padding: var(--space-1) var(--space-3);
  background: var(--stone-100);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone-700);
  white-space: nowrap;
}

.coaching-card-badge-highlight {
  background: linear-gradient(135deg,
    rgba(117, 140, 99, 0.1) 0%,
    rgba(117, 140, 99, 0.05) 100%
  );
  color: var(--sage-700);
}

.coaching-card-badge-success {
  background: linear-gradient(135deg,
    rgba(34, 197, 94, 0.1) 0%,
    rgba(34, 197, 94, 0.05) 100%
  );
  color: #15803d;
}

/* Card content */
.coaching-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stone-800);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

.coaching-card-description {
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.5;
  margin: 0;
}

/* Card meta */
.coaching-card-meta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.coaching-card-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.85rem;
  color: var(--stone-600);
}

.coaching-card-meta-item .material-symbols-outlined {
  font-size: 1rem;
  color: var(--stone-500);
}

/* Card footer */
.coaching-card-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
}

/* Progress bar */
.coaching-card-progress {
  width: 100%;
  height: 6px;
  background: var(--stone-200);
  border-radius: 3px;
  overflow: hidden;
}

.coaching-card-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--sage-600) 0%, var(--sage-700) 100%);
  border-radius: 3px;
  transition: width var(--duration-300) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.coaching-card-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Card CTA */
.coaching-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--duration-200) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.coaching-card-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--sage-700) 0%, var(--sage-800) 100%);
  opacity: 0;
  transition: opacity var(--duration-200) var(--ease-out);
}

.coaching-card-cta:hover::before {
  opacity: 1;
}

.coaching-card-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(117, 140, 99, 0.3);
}

.coaching-card-cta span {
  position: relative;
  z-index: 1;
}

/* Skeleton loading states */
.coaching-card-skeleton {
  pointer-events: none;
}

.coaching-card-skeleton .coaching-card-icon-small,
.coaching-card-skeleton .coaching-card-badge,
.coaching-card-skeleton .coaching-card-title,
.coaching-card-skeleton .coaching-card-description {
  background: linear-gradient(90deg,
    var(--stone-200) 0%,
    var(--stone-100) 50%,
    var(--stone-200) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  color: transparent;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Empty state */
.coaching-empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-8);
}

.coaching-empty-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone-100);
  border-radius: 50%;
}

.coaching-empty-icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--stone-500);
}

.coaching-empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--stone-800);
  margin: 0 0 var(--space-2);
}

.coaching-empty-text {
  font-size: 0.95rem;
  color: var(--stone-600);
  margin: 0;
}

/* ================================================================
   PARTIE UNAUTHENTICATED - LANDING MODERNE
   Design minimaliste avec dégradés élégants
   ================================================================ */

/* Hero moderne */
.tedcraft-custom-page .tc-hero-modern {
  padding: var(--space-16) 0 var(--space-24);
  background: linear-gradient(135deg,
    rgba(249, 248, 246, 0.8) 0%,
    rgba(253, 252, 250, 0.9) 50%,
    rgba(247, 245, 242, 0.8) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Header Premium "Le Lab du Manager" */
.tedcraft-custom-page .tc-header-lab {
  margin-bottom: var(--space-20);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(117, 140, 99, 0.08);
}

.tedcraft-custom-page .tc-header-lab-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.tedcraft-custom-page .tc-header-lab-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.tedcraft-custom-page .tc-logo-minimal {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.tedcraft-custom-page .tc-lab-separator {
  font-size: 1.25rem;
  color: var(--stone-400);
  font-weight: 300;
}

.tedcraft-custom-page .tc-lab-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--stone-800);
  letter-spacing: -0.01em;
}

.tedcraft-custom-page .tc-header-lab-tagline {
  font-size: 0.95rem;
  color: var(--stone-600);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-left: var(--space-1);
}

.tedcraft-custom-page .tc-cta-diagnostic-minimal {
  padding: var(--space-2) var(--space-5);
  border: 1.5px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%) border-box;
  color: var(--sage-700);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--duration-200) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.tedcraft-custom-page .tc-cta-diagnostic-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  opacity: 0;
  transition: opacity var(--duration-200) var(--ease-out);
  z-index: -1;
}

.tedcraft-custom-page .tc-cta-diagnostic-minimal:hover::before {
  opacity: 1;
}

.tedcraft-custom-page .tc-cta-diagnostic-minimal:hover {
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Hero content centré */
.tedcraft-custom-page .tc-hero-content-modern {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.tedcraft-custom-page .tc-hero-title-modern {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--stone-800);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-8);
}

.tedcraft-custom-page .tc-hero-accent {
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.tedcraft-custom-page .tc-hero-subtitle-modern {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--stone-600);
  line-height: 1.6;
  margin: 0 0 var(--space-12);
  font-weight: 400;
}

.tedcraft-custom-page .tc-badge-minimal {
  font-size: 0.95rem;
  color: var(--stone-600);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ================================================================
   SECTION ÉCOSYSTÈME - Glassmorphism Cards
   ================================================================ */

.tedcraft-custom-page .tc-ecosystem {
  padding: var(--space-24) 0;
  background: linear-gradient(180deg,
    white 0%,
    var(--stone-50) 100%
  );
}

.tedcraft-custom-page .tc-section-header-centered {
  text-align: center;
  margin-bottom: var(--space-16);
}

.tedcraft-custom-page .tc-title-modern {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--stone-800);
  line-height: 1.2;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.02em;
}

.tedcraft-custom-page .tc-subtitle-modern {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--stone-600);
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

.tedcraft-custom-page .tc-ecosystem-block {
  margin-bottom: var(--space-16);
}

.tedcraft-custom-page .tc-ecosystem-block-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--stone-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 var(--space-8);
}

.tedcraft-custom-page .tc-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.tedcraft-custom-page .tc-ecosystem-card {
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(117, 140, 99, 0.1);
  transition: all var(--duration-300) var(--ease-out);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tedcraft-custom-page .tc-ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(117, 140, 99, 0.03) 0%,
    transparent 50%,
    rgba(117, 140, 99, 0.02) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-300) var(--ease-out);
  pointer-events: none;
}

.tedcraft-custom-page .tc-ecosystem-card:hover::before {
  opacity: 1;
}

.tedcraft-custom-page .tc-ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(117, 140, 99, 0.15);
  border-color: rgba(117, 140, 99, 0.2);
}

.tedcraft-custom-page .tc-ecosystem-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(117, 140, 99, 0.08) 0%,
    rgba(117, 140, 99, 0.05) 100%
  );
  border-radius: 16px;
  transition: all var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-ecosystem-card:hover .tc-ecosystem-icon {
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(117, 140, 99, 0.2);
}

.tedcraft-custom-page .tc-ecosystem-icon .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--sage-600);
  transition: color var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-ecosystem-card:hover .tc-ecosystem-icon .material-symbols-outlined {
  color: white;
}

.tedcraft-custom-page .tc-ecosystem-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--stone-800);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}

.tedcraft-custom-page .tc-ecosystem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tedcraft-custom-page .tc-ecosystem-list li {
  font-size: 0.95rem;
  color: var(--stone-600);
  padding: var(--space-2) 0;
  line-height: 1.5;
  border-bottom: 1px solid rgba(117, 140, 99, 0.05);
}

.tedcraft-custom-page .tc-ecosystem-list li:last-child {
  border-bottom: none;
}

/* Highlight card avec gradient border */
.tedcraft-custom-page .tc-ecosystem-highlight {
  max-width: 800px;
  margin: var(--space-16) auto 0;
  padding: var(--space-10);
  background: white;
  border-radius: 20px;
  border: 1px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(117, 140, 99, 0.2) 0%, rgba(117, 140, 99, 0.1) 100%) border-box;
  display: flex;
  gap: var(--space-6);
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.tedcraft-custom-page .tc-ecosystem-highlight-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(117, 140, 99, 0.2);
}

.tedcraft-custom-page .tc-ecosystem-highlight-icon .material-symbols-outlined {
  font-size: 2rem;
  color: white;
}

.tedcraft-custom-page .tc-ecosystem-highlight-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--stone-800);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}

.tedcraft-custom-page .tc-ecosystem-highlight-text {
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   SECTION PARCOURS - Timeline Moderne
   ================================================================ */

.tedcraft-custom-page .tc-journey-modern {
  padding: var(--space-24) 0;
  background: var(--stone-50);
}

.tedcraft-custom-page .tc-journey-timeline-modern {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: var(--space-6);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.tedcraft-custom-page .tc-journey-step-modern {
  text-align: center;
}

.tedcraft-custom-page .tc-journey-number-modern {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto var(--space-4);
  box-shadow: 0 4px 12px rgba(117, 140, 99, 0.2);
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
}

.tedcraft-custom-page .tc-journey-number-modern::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  opacity: 0;
  transition: opacity var(--duration-300) var(--ease-out);
  z-index: -1;
}

.tedcraft-custom-page .tc-journey-step-modern:hover .tc-journey-number-modern {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(117, 140, 99, 0.3);
}

.tedcraft-custom-page .tc-journey-step-modern:hover .tc-journey-number-modern::before {
  opacity: 0.2;
}

.tedcraft-custom-page .tc-journey-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stone-800);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}

.tedcraft-custom-page .tc-journey-step-text {
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.4;
  margin: 0;
}

.tedcraft-custom-page .tc-journey-connector {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(117, 140, 99, 0.3) 0%,
    rgba(117, 140, 99, 0.15) 50%,
    rgba(117, 140, 99, 0.3) 100%
  );
  position: relative;
}

/* ================================================================
   SECTION TEAM GRID - Cards avec hover subtil
   ================================================================ */

.tedcraft-custom-page .tc-team-engagement {
  padding: var(--space-24) 0;
  background: white;
}

.tedcraft-custom-page .tc-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.tedcraft-custom-page .tc-team-card-modern {
  padding: var(--space-8);
  background: white;
  border-radius: 16px;
  border: 1px solid var(--stone-200);
  transition: all var(--duration-300) var(--ease-out);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tedcraft-custom-page .tc-team-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-600) 0%, var(--sage-700) 100%);
  transform: scaleX(0);
  transition: transform var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-team-card-modern:hover::before {
  transform: scaleX(1);
}

.tedcraft-custom-page .tc-team-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(117, 140, 99, 0.2);
}

.tedcraft-custom-page .tc-team-icon-modern {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(117, 140, 99, 0.08) 0%,
    rgba(117, 140, 99, 0.05) 100%
  );
  border-radius: 14px;
  margin: 0 auto var(--space-5);
  transition: all var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-team-card-modern:hover .tc-team-icon-modern {
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(117, 140, 99, 0.2);
}

.tedcraft-custom-page .tc-team-icon-modern .material-symbols-outlined {
  font-size: 2rem;
  color: var(--sage-600);
  transition: color var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-team-card-modern:hover .tc-team-icon-modern .material-symbols-outlined {
  color: white;
}

.tedcraft-custom-page .tc-team-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--stone-800);
  margin: 0 0 var(--space-5);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.tedcraft-custom-page .tc-team-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.tedcraft-custom-page .tc-team-card-list li {
  font-size: 0.9rem;
  color: var(--stone-600);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  line-height: 1.4;
  position: relative;
}

.tedcraft-custom-page .tc-team-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
}

/* ================================================================
   SECTION CTA FINAL - Gradient Cards
   ================================================================ */

.tedcraft-custom-page .tc-cta-final-simple {
  padding: var(--space-24) 0;
  background: linear-gradient(180deg,
    var(--stone-50) 0%,
    white 100%
  );
}

.tedcraft-custom-page .tc-cta-cards-simple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10);
  max-width: 900px;
  margin: 0 auto;
}

.tedcraft-custom-page .tc-cta-card-simple {
  padding: var(--space-10);
  background: white;
  border-radius: 20px;
  border: 1px solid var(--stone-200);
  text-align: center;
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.tedcraft-custom-page .tc-cta-card-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(117, 140, 99, 0.03) 0%,
    transparent 50%,
    rgba(117, 140, 99, 0.02) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-cta-card-simple:hover::before {
  opacity: 1;
}

.tedcraft-custom-page .tc-cta-card-simple:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(117, 140, 99, 0.2);
}

.tedcraft-custom-page .tc-cta-card-simple.primary {
  background: linear-gradient(135deg,
    rgba(117, 140, 99, 0.02) 0%,
    white 100%
  );
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(117, 140, 99, 0.02) 0%, white 100%) padding-box,
    linear-gradient(135deg, rgba(117, 140, 99, 0.3) 0%, rgba(117, 140, 99, 0.1) 100%) border-box;
}

.tedcraft-custom-page .tc-cta-card-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(117, 140, 99, 0.08) 0%,
    rgba(117, 140, 99, 0.05) 100%
  );
  border-radius: 18px;
  transition: all var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-cta-card-simple.primary .tc-cta-card-icon {
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  box-shadow: 0 4px 12px rgba(117, 140, 99, 0.2);
}

.tedcraft-custom-page .tc-cta-card-simple:hover .tc-cta-card-icon {
  transform: scale(1.05);
}

.tedcraft-custom-page .tc-cta-card-icon .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--sage-600);
}

.tedcraft-custom-page .tc-cta-card-simple.primary .tc-cta-card-icon .material-symbols-outlined {
  color: white;
}

.tedcraft-custom-page .tc-cta-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--stone-800);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.02em;
}

.tedcraft-custom-page .tc-cta-card-text {
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.6;
  margin: 0 0 var(--space-8);
}

.tedcraft-custom-page .tc-cta-button-primary,
.tedcraft-custom-page .tc-cta-button-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all var(--duration-300) var(--ease-out);
  box-shadow: 0 4px 12px rgba(117, 140, 99, 0.2);
  border: none;
  position: relative;
  overflow: hidden;
}

.tedcraft-custom-page .tc-cta-button-primary::before,
.tedcraft-custom-page .tc-cta-button-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--sage-700) 0%, var(--sage-800) 100%);
  opacity: 0;
  transition: opacity var(--duration-200) var(--ease-out);
}

.tedcraft-custom-page .tc-cta-button-primary:hover::before,
.tedcraft-custom-page .tc-cta-button-secondary:hover::before {
  opacity: 1;
}

.tedcraft-custom-page .tc-cta-button-primary:hover,
.tedcraft-custom-page .tc-cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(117, 140, 99, 0.3);
}

.tedcraft-custom-page .tc-cta-button-primary span,
.tedcraft-custom-page .tc-cta-button-secondary span {
  position: relative;
  z-index: 1;
}

.tedcraft-custom-page .tc-cta-button-secondary {
  background: white;
  color: var(--sage-700);
  border: 1.5px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%) border-box;
  box-shadow: var(--shadow-sm);
}

.tedcraft-custom-page .tc-cta-button-secondary::before {
  background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
}

.tedcraft-custom-page .tc-cta-button-secondary:hover {
  color: white;
}

.tedcraft-custom-page .tc-cta-sublabel {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: var(--space-1);
}

/* ================================================================
   RESPONSIVE - Mobile First Moderne
   ================================================================ */

/* Tablette paysage (1200px) */
@media (max-width: 1200px) {
  .tedcraft-custom-page .tc-ecosystem-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .tedcraft-custom-page .tc-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablette portrait (1024px) */
@media (max-width: 1024px) {
  /* Sidebar devient drawer */
  .tedcraft-custom-page.coaching-layout {
    grid-template-columns: 1fr;
  }

  .coaching-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    height: 100vh;
    width: 280px;
    z-index: 101;
    transition: left var(--duration-300) var(--ease-out);
    box-shadow: var(--shadow-xl);
  }

  .tedcraft-custom-page.coaching-layout.coaching-sidebar-open .coaching-sidebar {
    left: 0;
  }

  .coaching-mobile-toggle {
    display: flex;
  }

  .coaching-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .tedcraft-custom-page.coaching-layout.coaching-sidebar-open .coaching-sidebar-overlay {
    display: block;
  }

  /* Hero */
  .tedcraft-custom-page .tc-hero-title-modern {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .tedcraft-custom-page .tc-title-modern {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  }

  .tedcraft-custom-page .tc-journey-timeline-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .tedcraft-custom-page .tc-journey-connector {
    display: none;
  }

  .tedcraft-custom-page .tc-ecosystem-highlight {
    flex-direction: column;
    text-align: center;
  }

  .tedcraft-custom-page .tc-cta-cards-simple {
    grid-template-columns: 1fr;
  }
}

/* Mobile large (768px) */
@media (max-width: 768px) {
  .tedcraft-custom-page {
    margin-top: 2%;
  }

  .tedcraft-custom-page .tc-container {
    padding: 0 var(--space-4);
  }

  /* Badge responsive */
  .tedcraft-custom-page .tc-badge {
    position: relative;
    top: auto;
    left: auto;
    margin: var(--space-6) auto;
    align-self: center;
  }

  /* Header lab */
  .tedcraft-custom-page .tc-header-lab-top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .tedcraft-custom-page .tc-header-lab-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .tedcraft-custom-page .tc-lab-separator {
    display: none;
  }

  .tedcraft-custom-page .tc-hero-modern {
    padding: var(--space-12) 0 var(--space-20);
  }

  /* Sections spacing */
  .tedcraft-custom-page .tc-ecosystem,
  .tedcraft-custom-page .tc-journey-modern,
  .tedcraft-custom-page .tc-team-engagement,
  .tedcraft-custom-page .tc-cta-final-simple {
    padding: var(--space-16) 0;
  }

  /* Coaching filtres responsive */
  .coaching-filters-header {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
  }

  .coaching-search {
    min-width: 100%;
  }

  .coaching-masonry-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .coaching-card-medium {
    grid-row: span 1;
  }

  /* Journey timeline */
  .tedcraft-custom-page .tc-journey-timeline-modern {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .tedcraft-custom-page .tc-journey-number-modern {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }

  /* Team grid */
  .tedcraft-custom-page .tc-team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* Mobile petit (480px) */
@media (max-width: 480px) {
  .tedcraft-custom-page .tc-container {
    padding: 0 var(--space-3);
  }

  .tedcraft-custom-page .tc-hero-title-modern {
    font-size: 1.75rem;
  }

  .tedcraft-custom-page .tc-title-modern {
    font-size: 1.5rem;
  }

  .tedcraft-custom-page .tc-badge {
    padding: var(--space-3) var(--space-6);
    margin: var(--space-4) auto;
  }

  .tedcraft-custom-page .tc-badge-text {
    font-size: 0.8rem;
  }
}
