/* ============================================
   LASEREL × COHORTE - PROPOSITION 2026
   Premium Medical Aesthetic Design
   ============================================ */

:root {
  /* Laserel Brand Colors - Beige/doré officiel */
  --laserel-gold: #C4A77D;
  --laserel-gold-light: #F8F5F0;
  --laserel-gold-dark: #A8915F;
  --laserel-cream: #FDFBF7;
  --laserel-warm: #EDE8E0;

  /* Cohorte Accent - Teal moderne (subtil) */
  --cohorte-teal: #2D7D7D;
  --cohorte-teal-light: #E8F4F4;

  /* Legacy aliases for compatibility */
  --laserel-rose: var(--laserel-gold);
  --laserel-rose-light: var(--laserel-gold-light);
  --laserel-rose-dark: var(--laserel-gold-dark);

  /* Semantic Colors - Tons plus doux */
  --success: #6B9B7A;
  --success-light: #F0F7F2;
  --warning: #C9A96E;
  --warning-light: #FBF8F3;
  --error: #C17B7B;
  --error-light: #FBF3F3;

  /* Neutrals - Warm tones */
  --white: #FFFFFF;
  --gray-50: #FAFAF8;
  --gray-100: #F5F4F2;
  --gray-200: #E8E6E3;
  --gray-300: #D6D3CF;
  --gray-400: #A8A5A0;
  --gray-500: #7A7773;
  --gray-600: #5C5955;
  --gray-700: #3D3D3D;
  --gray-800: #2D2D2D;
  --gray-900: #1D1D1D;
  --text-primary: #3D3D3D;
  --text-secondary: #5C5955;
  --text-muted: #7A7773;

  /* Shadows - Plus douces */
  --shadow-xs: 0 1px 2px rgba(61,61,61,0.03);
  --shadow-sm: 0 2px 6px rgba(61,61,61,0.05);
  --shadow-md: 0 4px 16px rgba(61,61,61,0.06);
  --shadow-lg: 0 8px 32px rgba(61,61,61,0.08);
  --shadow-card: 0 2px 8px rgba(61,61,61,0.04), 0 8px 24px rgba(61,61,61,0.03);

  /* Typography */
  --font-brand: 'Josefin Sans', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing - Plus généreux */
  --container-max: 680px;
  --spacing-section: 80px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

/* ============================================
   PROGRESS BAR (Top)
   ============================================ */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--laserel-gold) 0%, var(--laserel-gold-dark) 100%);
  width: 0%;
  z-index: 1002;
  transition: width 0.2s ease-out;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 28px;
  width: auto;
}

.brand-x {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 300;
}

.brand-cohorte {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--cohorte-teal);
  text-transform: uppercase;
  opacity: 0.8;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--laserel-gold-dark);
  min-width: 36px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.progress-ring {
  width: 28px;
  height: 28px;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 3;
}

.progress-ring-fill {
  fill: none;
  stroke: var(--laserel-gold);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s ease;
}

/* ============================================
   SECTION NAV (Horizontal scroll under header)
   ============================================ */

.section-nav {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.section-nav-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.section-nav-scroll::-webkit-scrollbar {
  display: none;
}

.section-nav-item {
  flex-shrink: 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}

.section-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--laserel-gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.section-nav-item:hover {
  color: var(--gray-700);
}

.section-nav-item.active {
  color: var(--laserel-gold-dark);
  font-weight: 600;
}

.section-nav-item.active::after {
  transform: scaleX(1);
}

/* ============================================
   SIDE NAV (Desktop only)
   ============================================ */

.side-nav {
  display: none;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
  padding-top: 100px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--spacing-section) 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 32px;
}

.section-number {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--laserel-gold-dark);
  background: var(--laserel-gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-brand);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.subsection-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 40px 0 20px;
}

.section-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.section-hero {
  padding-top: 40px;
  padding-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--laserel-gold-light);
  border: 1px solid rgba(196, 167, 125, 0.3);
  color: var(--laserel-gold-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 12px;
  height: 12px;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, var(--laserel-gold) 0%, var(--laserel-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-card {
  display: flex;
  gap: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 28px;
}

.hero-card-avatar {
  flex-shrink: 0;
}

.hero-card-avatar img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
}

.hero-card-greeting {
  display: block;
  font-family: var(--font-brand);
  font-weight: 500;
  color: var(--laserel-gold-dark);
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.hero-card-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 140px;
}

.hero-benefit:hover {
  border-color: var(--laserel-gold);
  box-shadow: var(--shadow-sm);
}

.hero-benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--laserel-gold-light);
  border-radius: var(--radius-sm);
}

.hero-benefit-icon svg {
  width: 18px;
  height: 18px;
  color: var(--laserel-gold-dark);
}

.hero-benefit span {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-primary);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  padding-top: 16px;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s infinite ease-in-out;
}

.scroll-arrow svg {
  width: 16px;
  height: 16px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(4px); opacity: 0.8; }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.problem-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.problem-item:hover {
  border-color: var(--laserel-gold);
  background: var(--laserel-gold-light);
}

.problem-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

.problem-icon svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.problem-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* Highlight Box */
.highlight-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--cohorte-teal-light);
  border: 1px solid rgba(45, 125, 125, 0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.highlight-box-purple {
  background: var(--laserel-gold-light);
  border-color: rgba(196, 167, 125, 0.2);
}

.highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cohorte-teal);
  border-radius: var(--radius-sm);
}

.highlight-box-purple .highlight-icon {
  background: var(--laserel-gold);
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.highlight-box p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
}

/* Comparison */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 520px) {
  .comparison {
    grid-template-columns: 1fr;
  }
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
}

.comparison-card:hover {
  box-shadow: var(--shadow-md);
}

.comparison-before {
  border-top: 3px solid var(--error);
}

.comparison-after {
  border-top: 3px solid var(--success);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.comparison-header svg {
  width: 16px;
  height: 16px;
}

.comparison-before .comparison-header svg { color: var(--error); }
.comparison-after .comparison-header svg { color: var(--success); }

.comparison-header span {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-before .comparison-header span { color: var(--error); }
.comparison-after .comparison-header span { color: var(--success); }

.comparison-list {
  list-style: none;
  padding: 14px 16px;
}

.comparison-list li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 13px;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}

.comparison-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ============================================
   EXAMPLES SECTION
   ============================================ */

.examples-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.example-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
  position: relative;
}

.example-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--laserel-gold);
}

.example-number {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
}

.example-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin: 20px 20px 14px;
  background: var(--cohorte-teal-light);
}

.example-icon svg {
  width: 22px;
  height: 22px;
  color: var(--cohorte-teal);
}

.example-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0 18px;
  margin-bottom: 14px;
}

.example-comparison {
  padding: 0 18px 18px;
  display: grid;
  gap: 10px;
}

.example-before,
.example-after {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}

.example-before {
  background: var(--gray-100);
  border-left: 3px solid var(--gray-400);
}

.example-after {
  background: var(--cohorte-teal-light);
  border-left: 3px solid var(--cohorte-teal);
}

.example-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.example-before .example-label { color: var(--gray-500); }
.example-after .example-label { color: var(--cohorte-teal); }

.example-before p,
.example-after p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   STACK SECTION
   ============================================ */

.stack-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.2s ease;
}

.stack-card:hover {
  box-shadow: var(--shadow-md);
}

.stack-claude { border-top: 3px solid var(--cohorte-teal); }
.stack-openai { border-top: 3px solid var(--success); }
.stack-laserel { border-top: 3px solid var(--laserel-gold); }

.stack-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  flex-wrap: wrap;
}

.stack-logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.stack-claude .stack-logo { background: var(--cohorte-teal); }
.stack-openai .stack-logo { background: var(--success); }
.stack-laserel .stack-logo { background: var(--laserel-gold); }

.stack-logo svg {
  width: 22px;
  height: 22px;
}

.stack-info {
  flex: 1;
  min-width: 160px;
}

.stack-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.stack-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.stack-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--cohorte-teal-light);
  color: var(--cohorte-teal);
}

.stack-badge-green {
  background: var(--success-light);
  color: var(--success);
}

.stack-badge-dark {
  background: var(--gray-100);
  color: var(--gray-700);
}

.stack-card-body {
  padding: 0 18px 20px;
}

.stack-card-body > p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 18px;
}

.stack-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

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

.stack-feature {
  text-align: center;
  padding: 14px 10px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.stack-feature:hover {
  background: var(--laserel-gold-light);
}

.stack-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin: 0 auto 10px;
}

.stack-feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--cohorte-teal);
}

.stack-feature span {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.stack-feature small {
  font-size: 11px;
  color: var(--text-muted);
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stack-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--cohorte-teal-light);
  color: var(--cohorte-teal);
}

.stack-tag.tag-green {
  background: var(--success-light);
  color: var(--success);
}

.stack-tag.tag-gold {
  background: var(--laserel-gold-light);
  color: var(--laserel-gold-dark);
}

/* ============================================
   WHY NOW SECTION
   ============================================ */

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

@media (max-width: 520px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

.reason-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: all 0.2s ease;
}

.reason-card:hover {
  border-color: var(--laserel-gold);
  box-shadow: var(--shadow-sm);
}

.reason-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--laserel-gold-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.reason-icon svg {
  width: 20px;
  height: 20px;
  color: var(--laserel-gold-dark);
}

.reason-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.reason-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Stats Banner */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
}

@media (max-width: 520px) {
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--cohorte-teal);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* ============================================
   METHOD (BMAD) SECTION
   ============================================ */

.problem-box {
  display: flex;
  gap: 16px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 32px;
}

.problem-box-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-300);
  border-radius: var(--radius-sm);
}

.problem-box-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.problem-box-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.problem-box-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* BMAD Steps */
.bmad-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 32px;
  padding: 24px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow-x: auto;
}

.bmad-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 70px;
}

.bmad-letter {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--laserel-gold);
  border-radius: 50%;
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(196, 167, 125, 0.3);
}

.bmad-content h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.bmad-content p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.bmad-connector {
  width: 24px;
  height: 2px;
  background: var(--gray-300);
  margin-top: 24px;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .bmad-connector {
    width: 12px;
  }
  .bmad-steps {
    padding: 20px 12px;
  }
}

/* Info Box */
.info-box {
  display: flex;
  gap: 16px;
  background: var(--laserel-gold-light);
  border: 1px solid rgba(196, 167, 125, 0.2);
  border-left: 3px solid var(--laserel-gold);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 32px;
}

.info-box-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--laserel-gold);
  border-radius: var(--radius-sm);
}

.info-box-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.info-box-content h4 {
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 500;
  color: var(--laserel-gold-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.info-box-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Roles Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

.role-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.role-card:hover {
  border-color: var(--laserel-blue);
  box-shadow: var(--shadow-sm);
}

.role-avatar {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.role-avatar img {
  width: 100%;
  height: 100%;
}

.role-avatar-ai {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success);
}

.role-avatar-ai svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.role-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.role-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-timeline {
  position: relative;
  padding-left: 28px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.process-step {
  position: relative;
  padding-bottom: 28px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step-marker {
  position: absolute;
  left: -28px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.2s ease;
}

.process-step-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
}

.process-step-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-left: 12px;
  transition: all 0.2s ease;
}

.process-step:hover .process-step-content {
  border-color: var(--laserel-gold);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .process-step-marker {
  border-color: var(--laserel-gold);
  background: var(--laserel-gold);
}

.process-step:hover .process-step-number {
  color: var(--white);
}

.process-step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.process-step-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.process-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--gray-100);
  color: var(--gray-600);
}

.process-badge-purple {
  background: var(--laserel-gold-light);
  color: var(--laserel-gold-dark);
}

.process-badge-green {
  background: var(--success-light);
  color: var(--success);
}

.process-step-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.process-step-content > p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.process-step-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

@media (max-width: 400px) {
  .process-step-details {
    grid-template-columns: 1fr;
  }
}

.process-detail {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.process-detail-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.process-detail-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.process-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--cohorte-teal-light);
  color: var(--cohorte-teal);
}

/* Guarantees */
.guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .guarantees {
    grid-template-columns: 1fr;
  }
}

.guarantee {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.guarantee:hover {
  border-color: var(--laserel-gold);
  box-shadow: var(--shadow-sm);
}

.guarantee-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--laserel-gold);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.guarantee-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.guarantee h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.guarantee p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */

.section-cta {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.cta-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-header {
  background: linear-gradient(135deg, var(--laserel-gold) 0%, var(--laserel-gold-dark) 100%);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-brands {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-brand-l {
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}

.cta-x {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.cta-brand-c {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--laserel-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-body {
  padding: 32px 20px;
  text-align: center;
}

.cta-title {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.cta-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .cta-actions {
    grid-template-columns: 1fr;
  }
}

.cta-action {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.cta-action:hover {
  border-color: var(--laserel-gold);
  background: var(--laserel-gold-light);
}

.cta-action-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}

.cta-action-icon svg {
  width: 20px;
  height: 20px;
  color: var(--laserel-gold-dark);
}

.cta-action-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.cta-action-content span {
  font-size: 12px;
  color: var(--text-muted);
}

.cta-footer {
  background: var(--gray-50);
  padding: 14px 20px;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.cta-footer p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Author Card */
.author-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.author-role {
  display: block;
  font-size: 13px;
  color: var(--cohorte-teal);
}

.author-tagline {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================
   CHATBOT WIDGET
   ============================================ */

.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chat-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--laserel-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(196, 167, 125, 0.4);
  transition: all 0.3s ease;
}

.chat-button:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(196, 167, 125, 0.5);
}

.chat-button svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.chat-panel {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 360px;
  max-width: calc(100vw - 40px);
  max-height: 480px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

.chat-panel.active {
  display: flex;
  animation: chatSlideUp 0.25s ease-out;
}

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

.chat-header {
  background: var(--laserel-gold);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
}

.chat-header-avatar svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.chat-header-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.chat-header-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

.chat-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-close:hover {
  background: rgba(255,255,255,0.25);
}

.chat-close svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--gray-50);
}

.chat-message {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
}

.chat-message.bot {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--text-secondary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.user {
  background: var(--laserel-gold);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-message p {
  margin-bottom: 8px;
}

.chat-message p:last-child {
  margin-bottom: 0;
}

.chat-message.loading {
  display: flex;
  gap: 5px;
  padding: 16px;
}

.chat-message.loading span {
  width: 7px;
  height: 7px;
  background: var(--gray-400);
  border-radius: 50%;
  animation: chatBounce 1.4s infinite ease-in-out both;
}

.chat-message.loading span:nth-child(1) { animation-delay: -0.32s; }
.chat-message.loading span:nth-child(2) { animation-delay: -0.16s; }

@keyframes chatBounce {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

.chat-input-container {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.chat-input::placeholder {
  color: var(--text-muted);
}

.chat-input:focus {
  border-color: var(--laserel-gold);
}

.chat-send {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--laserel-gold);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
}

.chat-send:hover {
  background: var(--laserel-gold-dark);
}

.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-send svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
}

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(12px);
}

.stagger-children.visible > *:nth-child(1) { animation: staggerIn 0.6s 0.08s ease forwards; }
.stagger-children.visible > *:nth-child(2) { animation: staggerIn 0.6s 0.16s ease forwards; }
.stagger-children.visible > *:nth-child(3) { animation: staggerIn 0.6s 0.24s ease forwards; }
.stagger-children.visible > *:nth-child(4) { animation: staggerIn 0.6s 0.32s ease forwards; }
.stagger-children.visible > *:nth-child(5) { animation: staggerIn 0.6s 0.4s ease forwards; }
.stagger-children.visible > *:nth-child(6) { animation: staggerIn 0.6s 0.48s ease forwards; }
.stagger-children.visible > *:nth-child(7) { animation: staggerIn 0.6s 0.56s ease forwards; }
.stagger-children.visible > *:nth-child(8) { animation: staggerIn 0.6s 0.64s ease forwards; }

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover lift */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
