/* =================================
   HOMEPAGE V2 - DESIGN ÉPURÉ
   ================================= */

/* Import des fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* =================================
   VARIABLES CSS
   ================================= */
.tedcraft-custom-page {
  /* Couleurs */
  --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;

  --white: #ffffff;
  --text-dark: #2d2d2d;
  --text-body: #5a5a5a;

  /* Typographie */
  --font-serif: 'Crimson Text', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --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;
  --space-30: 7.5rem;

  /* Shadows */
  --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);

  /* Animations */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-200: 200ms;
  --duration-300: 300ms;
  --duration-500: 500ms;

  /* Configuration globale */
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--white);
  min-height: 100vh;
  margin-top: 3%;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Container premium */
  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;
  background: linear-gradient(180deg,
    var(--white) 0%,
    var(--sage-50) 100%
  );
}

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

/* =================================
   SECTION 1: HERO MODERNE
   ================================= */

.tedcraft-custom-page .tc-hero-modern {
  padding: 0 0 var(--space-30);
  background: linear-gradient(180deg,
    var(--white) 0%,
    rgba(249, 248, 246, 0.3) 100%
  );
}

/* Hero content */
.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: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-8);
}

.tedcraft-custom-page .tc-hero-accent {
  color: var(--sage-600);
  display: inline-block;
}

.tedcraft-custom-page .tc-hero-subtitle-modern {
  font-size: 1.25rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 var(--space-12);
  font-weight: 400;
}

/* Hero CTA */
.tedcraft-custom-page .tc-hero-cta-modern {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-12);
}

.tedcraft-custom-page .tc-cta-primary-modern {
  display: inline-flex;
  padding: var(--space-4) var(--space-8);
  background: var(--sage-600);
  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: var(--shadow-md);
}

.tedcraft-custom-page .tc-cta-primary-modern:hover {
  background: var(--sage-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tedcraft-custom-page .tc-cta-secondary-modern {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-8);
  border: 2px solid var(--sage-600);
  color: var(--sage-700);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all var(--duration-200) var(--ease-out);
  background: rgba(255, 255, 255, 0.8);
}

.tedcraft-custom-page .tc-cta-secondary-modern:hover {
  background: rgba(117, 140, 99, 0.05);
  transform: translateY(-1px);
}

.tedcraft-custom-page .tc-cta-main {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--sage-700);
}

.tedcraft-custom-page .tc-cta-hint {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-600);
  opacity: 0.9;
}

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

/* =================================
   SECTION 2: ÉCOSYSTÈME
   ================================= */

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

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

.tedcraft-custom-page .tc-title-modern {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.2;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}

.tedcraft-custom-page .tc-subtitle-modern {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

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

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

/* Ecosystem grid */
.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.9);
  border-radius: 16px;
  border: 1px solid rgba(117, 140, 99, 0.15);
  transition: all var(--duration-300) var(--ease-out);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

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

/* Ecosystem icon */
.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: rgba(117, 140, 99, 0.1);
  border-radius: 16px;
  transition: all var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-ecosystem-card:hover .tc-ecosystem-icon {
  background: rgba(117, 140, 99, 0.15);
  transform: scale(1.05);
}

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

/* Ecosystem card title */
.tedcraft-custom-page .tc-ecosystem-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 var(--space-4);
  font-family: var(--font-sans);
}

/* Ecosystem list */
.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(--text-body);
  padding: var(--space-2) 0;
  line-height: 1.5;
}

.tedcraft-custom-page .tc-ecosystem-list li:not(:last-child) {
  border-bottom: 1px solid rgba(117, 140, 99, 0.08);
}

/* Ecosystem highlight */
.tedcraft-custom-page .tc-ecosystem-highlight {
  max-width: 800px;
  margin: var(--space-16) auto 0;
  padding: var(--space-10);
  background: rgba(117, 140, 99, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(117, 140, 99, 0.15);
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.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: var(--sage-600);
  border-radius: 12px;
}

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

.tedcraft-custom-page .tc-ecosystem-highlight-content {
  flex: 1;
}

.tedcraft-custom-page .tc-ecosystem-highlight-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 var(--space-2);
  font-family: var(--font-sans);
}

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

/* =================================
   SECTION 3: PARCOURS
   ================================= */

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

/* Journey timeline */
.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;
  margin-bottom: var(--space-12);
  max-width: 1000px;
  margin-left: auto;
  margin-right: 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: var(--sage-600);
  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: var(--shadow-md);
  transition: all var(--duration-300) var(--ease-out);
}

.tedcraft-custom-page .tc-journey-step-modern:hover .tc-journey-number-modern {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.tedcraft-custom-page .tc-journey-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 var(--space-2);
  font-family: var(--font-sans);
}

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

/* Journey connector */
.tedcraft-custom-page .tc-journey-connector {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-300) 0%, rgba(117, 140, 99, 0.3) 100%);
}

/* Journey highlight */
.tedcraft-custom-page .tc-journey-highlight-modern {
  text-align: center;
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(117, 140, 99, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.tedcraft-custom-page .tc-journey-highlight-modern p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* =================================
   SECTION 4: TEAM + ENGAGEMENT
   ================================= */

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

.tedcraft-custom-page .tc-team-engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
}

/* Team section */
.tedcraft-custom-page .tc-team-modern .tc-title-modern {
  text-align: left;
  margin-bottom: var(--space-4);
}

.tedcraft-custom-page .tc-team-intro-modern {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-10);
}

.tedcraft-custom-page .tc-team-profiles-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

.tedcraft-custom-page .tc-team-profile-modern {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(117, 140, 99, 0.1);
  transition: all var(--duration-200) var(--ease-out);
}

.tedcraft-custom-page .tc-team-profile-modern:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(117, 140, 99, 0.2);
  transform: translateX(4px);
}

.tedcraft-custom-page .tc-team-icon-modern {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(117, 140, 99, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.tedcraft-custom-page .tc-team-icon-modern .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--sage-600);
}

.tedcraft-custom-page .tc-team-info-modern h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 var(--space-2);
  font-family: var(--font-sans);
}

.tedcraft-custom-page .tc-team-info-modern p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.5;
}

/* Founder quote */
.tedcraft-custom-page .tc-founder-quote-modern {
  padding: var(--space-6);
  background: rgba(244, 242, 238, 0.6);
  border-radius: 12px;
  border-left: 4px solid var(--sage-600);
}

.tedcraft-custom-page .tc-founder-quote-modern blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 0 0 var(--space-3);
  line-height: 1.6;
}

.tedcraft-custom-page .tc-founder-quote-modern cite {
  font-size: 0.9rem;
  color: var(--stone-600);
  font-weight: 500;
  font-style: normal;
}

/* Engagement section */
.tedcraft-custom-page .tc-engagement-modern .tc-title-modern {
  text-align: left;
  margin-bottom: var(--space-3);
}

.tedcraft-custom-page .tc-engagement-subtitle-modern {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: var(--space-8);
}

.tedcraft-custom-page .tc-engagement-list-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.tedcraft-custom-page .tc-engagement-option-modern {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(117, 140, 99, 0.1);
  transition: all var(--duration-200) var(--ease-out);
}

.tedcraft-custom-page .tc-engagement-option-modern:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(117, 140, 99, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tedcraft-custom-page .tc-primary-option-modern {
  background: rgba(117, 140, 99, 0.05);
  border-color: rgba(117, 140, 99, 0.2);
}

.tedcraft-custom-page .tc-engagement-header-modern {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.tedcraft-custom-page .tc-engagement-header-modern .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--sage-600);
}

.tedcraft-custom-page .tc-engagement-header-modern h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  font-family: var(--font-sans);
}

.tedcraft-custom-page .tc-engagement-option-modern p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 var(--space-4);
  line-height: 1.5;
}

/* Engagement CTA */
.tedcraft-custom-page .tc-cta-engagement-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  background: var(--sage-600);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--duration-200) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.tedcraft-custom-page .tc-cta-engagement-primary:hover {
  background: var(--sage-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.tedcraft-custom-page .tc-cta-engagement-secondary {
  display: inline-flex;
  padding: var(--space-2) var(--space-5);
  border: 1.5px solid var(--sage-600);
  color: var(--sage-700);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--duration-200) var(--ease-out);
  background: rgba(255, 255, 255, 0.8);
}

.tedcraft-custom-page .tc-cta-engagement-secondary:hover {
  background: var(--sage-600);
  color: white;
  transform: translateY(-1px);
}

/* Closing message */
.tedcraft-custom-page .tc-closing-message-modern {
  padding: var(--space-6);
  background: rgba(244, 242, 238, 0.6);
  border-radius: 12px;
  text-align: center;
}

.tedcraft-custom-page .tc-closing-message-modern p {
  font-size: 1rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* =================================
   RESPONSIVE
   ================================= */

/* Tablette paysage */
@media (max-width: 1200px) {
  .tedcraft-custom-page {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

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

  .tedcraft-custom-page .tc-team-engagement-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

/* Tablette portrait */
@media (max-width: 1024px) {
  .tedcraft-custom-page {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

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

  .tedcraft-custom-page .tc-hero-title-modern {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .tedcraft-custom-page .tc-hero-subtitle-modern {
    font-size: 1.15rem;
  }

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

  .tedcraft-custom-page .tc-subtitle-modern {
    font-size: 1.05rem;
  }

  .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;
  }
}

/* Mobile large */
@media (max-width: 768px) {
  .tedcraft-custom-page {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 2%;
  }

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

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

  .tedcraft-custom-page .tc-hero-title-modern {
    font-size: 1.75rem;
    margin-bottom: var(--space-5);
  }

  .tedcraft-custom-page .tc-hero-accent {
    display: block;
    margin-top: var(--space-2);
  }

  .tedcraft-custom-page .tc-hero-subtitle-modern {
    font-size: 1rem;
    margin-bottom: var(--space-8);
  }

  .tedcraft-custom-page .tc-hero-cta-modern {
    flex-direction: column;
    gap: var(--space-3);
  }

  .tedcraft-custom-page .tc-cta-primary-modern,
  .tedcraft-custom-page .tc-cta-secondary-modern {
    width: 100%;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-size: 1rem;
  }

  .tedcraft-custom-page .tc-badge-minimal {
    font-size: 0.85rem;
  }

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

  .tedcraft-custom-page .tc-title-modern {
    font-size: 1.75rem;
    margin-bottom: var(--space-3);
  }

  .tedcraft-custom-page .tc-subtitle-modern {
    font-size: 0.95rem;
  }

  /* Ecosystem */
  .tedcraft-custom-page .tc-ecosystem-block-title {
    font-size: 0.95rem;
  }

  .tedcraft-custom-page .tc-ecosystem-card {
    padding: var(--space-6);
  }

  .tedcraft-custom-page .tc-ecosystem-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: var(--space-4);
  }

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

  .tedcraft-custom-page .tc-ecosystem-card-title {
    font-size: 1rem;
  }

  .tedcraft-custom-page .tc-ecosystem-list li {
    font-size: 0.9rem;
  }

  .tedcraft-custom-page .tc-ecosystem-highlight {
    padding: var(--space-6);
    margin-top: var(--space-12);
  }

  .tedcraft-custom-page .tc-ecosystem-highlight-icon {
    width: 3rem;
    height: 3rem;
  }

  .tedcraft-custom-page .tc-ecosystem-highlight-title {
    font-size: 1.1rem;
  }

  .tedcraft-custom-page .tc-ecosystem-highlight-text {
    font-size: 0.9rem;
  }

  /* Journey */
  .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;
  }

  .tedcraft-custom-page .tc-journey-step-title {
    font-size: 1rem;
  }

  .tedcraft-custom-page .tc-journey-step-text {
    font-size: 0.85rem;
  }

  .tedcraft-custom-page .tc-journey-highlight-modern {
    padding: var(--space-6);
  }

  .tedcraft-custom-page .tc-journey-highlight-modern p {
    font-size: 0.95rem;
  }

  /* Team & Engagement */
  .tedcraft-custom-page .tc-team-intro-modern {
    font-size: 0.95rem;
    margin-bottom: var(--space-8);
  }

  .tedcraft-custom-page .tc-team-profile-modern {
    padding: var(--space-4);
    gap: var(--space-3);
  }

  .tedcraft-custom-page .tc-team-icon-modern {
    width: 2.5rem;
    height: 2.5rem;
  }

  .tedcraft-custom-page .tc-team-icon-modern .material-symbols-outlined {
    font-size: 1.25rem;
  }

  .tedcraft-custom-page .tc-team-info-modern h4 {
    font-size: 0.9rem;
  }

  .tedcraft-custom-page .tc-team-info-modern p {
    font-size: 0.85rem;
  }

  .tedcraft-custom-page .tc-founder-quote-modern {
    padding: var(--space-5);
  }

  .tedcraft-custom-page .tc-founder-quote-modern blockquote {
    font-size: 0.9rem;
  }

  .tedcraft-custom-page .tc-engagement-subtitle-modern {
    font-size: 0.9rem;
    margin-bottom: var(--space-6);
  }

  .tedcraft-custom-page .tc-engagement-option-modern {
    padding: var(--space-5);
  }

  .tedcraft-custom-page .tc-engagement-header-modern h3 {
    font-size: 0.95rem;
  }

  .tedcraft-custom-page .tc-engagement-option-modern p {
    font-size: 0.85rem;
  }

  .tedcraft-custom-page .tc-cta-engagement-primary,
  .tedcraft-custom-page .tc-cta-engagement-secondary {
    width: 100%;
    justify-content: center;
  }

  .tedcraft-custom-page .tc-closing-message-modern {
    padding: var(--space-5);
  }

  .tedcraft-custom-page .tc-closing-message-modern p {
    font-size: 0.9rem;
  }
}

/* Mobile petit */
@media (max-width: 480px) {
  .tedcraft-custom-page {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
  }

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

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

  .tedcraft-custom-page .tc-hero-subtitle-modern {
    font-size: 0.95rem;
  }

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

  .tedcraft-custom-page .tc-cta-primary-modern,
  .tedcraft-custom-page .tc-cta-secondary-modern {
    padding: var(--space-3) var(--space-5);
    font-size: 0.95rem;
  }

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