/* ========================================
   LIVE FORMATION LANDING PAGE
   Premium B2B — Luxury Minimal
   ======================================== */

/* Page-specific reveal with luxury timing (overrides base) */
.reveal {
  transform: translateY(32px);
  transition: opacity var(--transition-luxury), transform var(--transition-luxury);
}

/* Page-specific gradient divider (overrides base .divider) */
.divider {
  background: linear-gradient(90deg, transparent, var(--color-gray-200), transparent);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: var(--space-24) 0 var(--space-20);
}
/* Studio photo in pillars */
.pillars__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-12);
  align-items: start;
}
.pillars__photo {
  position: sticky;
  top: 100px;
}
.pillars__img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(18, 0, 31, 0.12);
  object-fit: cover;
}
.page-header__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-gray-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.page-header__title {
  font-family: var(--font-primary);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.page-header__baseline {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--color-secondary);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}
.page-header__subtitle {
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}
.page-header__actions {
  margin-top: var(--space-8);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

/* ========================================
   PROBLEM — LE CONSTAT
   ======================================== */
.problem {
  padding: var(--section-pad) 0;
  background: var(--color-gray-50);
}
.problem__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-16);
}
.problem__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-gray-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.problem__title {
  font-family: var(--font-primary);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-primary);
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.problem__card {
  background: var(--color-white);
  border: 1px solid rgba(18, 0, 31, 0.06);
  border-radius: 20px;
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-luxury);
}
.problem__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(18, 0, 31, 0.06);
}
.problem__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  background: linear-gradient(135deg, rgba(139, 77, 255, 0.10), rgba(240, 0, 185, 0.07));
  border: 1px solid rgba(139, 77, 255, 0.12);
}
.problem__icon .material-symbols-rounded {
  font-size: 24px;
  background: linear-gradient(135deg, #8B4DFF, #F000B9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.problem__name {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.problem__desc {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}

/* ========================================
   PILLARS — 3 COLONNES
   ======================================== */
.pillars {
  padding: var(--section-pad) 0;
}
.pillars__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}
.pillars__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-gray-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.pillars__title {
  font-family: var(--font-primary);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.pillars__subtitle {
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}
.pillars__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.pillar {
  background: var(--color-gray-50);
  border: 1px solid rgba(18, 0, 31, 0.06);
  border-radius: 20px;
  padding: var(--space-10);
  transition: all var(--transition-luxury);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(18, 0, 31, 0.06);
  border-color: rgba(139, 77, 255, 0.15);
}
.pillar__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, rgba(139, 77, 255, 0.10), rgba(240, 0, 185, 0.07));
  border: 1px solid rgba(139, 77, 255, 0.15);
  transition: all var(--transition-base);
}
.pillar:hover .pillar__icon-wrap {
  background: linear-gradient(135deg, rgba(139, 77, 255, 0.18), rgba(240, 0, 185, 0.13));
  box-shadow: 0 4px 14px rgba(139, 77, 255, 0.18);
}
.pillar__icon-wrap .material-symbols-rounded {
  font-size: 24px;
  background: linear-gradient(135deg, #8B4DFF, #F000B9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pillar__name {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.pillar__desc {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}

/* ========================================
   ENGAGEMENT — DEUX COLONNES STICKY
   ======================================== */
.engage {
  padding: var(--section-pad) 0;
  background: var(--color-gray-50);
}
.engage__two-col {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.engage__left {
  position: sticky;
  top: 100px;
}
.engage__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-6);
}
.engage__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #8B4DFF, #F000B9);
  border-radius: 2px;
}
.engage__title {
  font-family: var(--font-primary);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.engage__subtitle {
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}
.engage__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #8B4DFF, #F000B9);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  box-shadow: 0 4px 20px rgba(139, 77, 255, 0.35);
}
.engage__pill .material-symbols-rounded {
  font-size: 16px;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.engage__right {
  display: flex;
  flex-direction: column;
}

/* Engage rows — same pattern as feat-row */
.engage-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 0, 31, 0.07);
  position: relative;
  transition: padding-left 0.25s ease;
}
.engage-row:first-child { padding-top: 0; }
.engage-row:last-child { border-bottom: none; padding-bottom: 0; }
.engage-row::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #8B4DFF, #F000B9);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.engage-row:hover::before { opacity: 1; transform: scaleY(1); }
.engage-row:hover { padding-left: 8px; }
.engage-row__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 77, 255, 0.10), rgba(240, 0, 185, 0.07));
  border: 1px solid rgba(139, 77, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.engage-row:hover .engage-row__icon {
  background: linear-gradient(135deg, rgba(139, 77, 255, 0.18), rgba(240, 0, 185, 0.13));
  border-color: rgba(139, 77, 255, 0.35);
  box-shadow: 0 4px 14px rgba(139, 77, 255, 0.18);
}
.engage-row__icon .material-symbols-rounded {
  font-size: 20px;
  background: linear-gradient(135deg, #8B4DFF, #F000B9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.engage-row__content { flex: 1; padding-top: 2px; }
.engage-row__name {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
  letter-spacing: -0.01em;
}
.engage-row__desc {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}

/* ========================================
   HOW IT WORKS — TIMELINE (4 steps)
   ======================================== */
.how {
  padding: var(--section-pad) 0;
}
.how__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-16);
}
.how__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-gray-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.how__title {
  font-family: var(--font-primary);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-primary);
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 var(--space-4);
}
.step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 8px 24px rgba(18, 0, 31, 0.15);
}
.step__name {
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.step__desc {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  max-width: 240px;
  margin: 0 auto;
}

/* ========================================
   INCLUDED — CE QUI EST INCLUS
   ======================================== */
.included {
  padding: var(--section-pad) 0;
  background: var(--color-gray-50);
}
.included__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-16);
}
.included__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-gray-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.included__title {
  font-family: var(--font-primary);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-primary);
}
.included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.included__block {
  background: var(--color-white);
  border: 1px solid rgba(18, 0, 31, 0.06);
  border-radius: 20px;
  padding: var(--space-8);
  transition: all var(--transition-luxury);
}
.included__block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(18, 0, 31, 0.06);
  border-color: rgba(139, 77, 255, 0.15);
}
.included__block-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(18, 0, 31, 0.07);
}
.included__block-header .material-symbols-rounded {
  font-size: 22px;
  background: linear-gradient(135deg, #8B4DFF, #F000B9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.included__block-header h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-primary);
}
.included__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.included__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: var(--color-gray-600);
  line-height: var(--lh-relaxed);
}
.included__list li .material-symbols-rounded {
  font-size: 18px;
  color: #8B4DFF;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========================================
   FAQ — reuses global faq styles from components.css
   Override only if needed
   ======================================== */

/* ========================================
   FINAL CTA — reuses global final-cta from components.css
   ======================================== */

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .pillars__layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .pillars__photo {
    position: static;
    text-align: center;
  }
  .pillars__img {
    max-width: 400px;
  }
  .engage__two-col {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .engage__left {
    position: static;
  }
  .how__steps::before {
    display: none;
  }
  .how__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }
  .included__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .problem__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .page-header__actions {
    flex-direction: column;
    align-items: center;
  }
  .how__steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 480px) {
  .pillar {
    padding: var(--space-6);
  }
  .included__block {
    padding: var(--space-6);
  }
}
