/* ===================================================================
   PAMM TraderMade - Design System Complet
   =================================================================== */

:root {
  /* Couleurs principales - TraderMade */
  --primary: #ee6123;
  --primary-hover: #d9551e;
  --primary-light: #fff5f1;
  --secondary: #ff6f00;
  --accent: #DE8C76;

  /* Couleurs neutres */
  --text-dark: #2a2f3a;
  --text-medium: #5e6c84;
  --text-light: #8a94a6;
  --text-muted: #6b7280;

  --bg-main: #f5f7fa;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --border: #e5e7eb;
  --border-light: #f3f4f6;

  /* Couleurs de statut */
  --success: #10b981;
  --info: #3b82f6;
  --warning: #f59e0b;
  --danger: #dc2626;

  /* Espacements */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================================================
   Navigation
   =================================================================== */

.navbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
  color: var(--text-dark);
}

.logo {
  height: 40px;
  width: auto;
}

.brand-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.navbar-nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

/* ===================================================================
   Hero Section - Impactant
   =================================================================== */

.hero {
  background:
    linear-gradient(135deg, rgba(238, 97, 35, 0.50) 0%, rgba(255, 111, 0, 0.50) 100%),
    url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?w=1920&q=80') center center / cover no-repeat;
  color: white;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(238, 97, 35, 0.08) 80px,
      rgba(238, 97, 35, 0.08) 82px
    );
  pointer-events: none;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 16px;
  font-weight: 500;
}

.hero-feature-icon {
  font-size: 24px;
}

.hero-warning {
  background: rgba(255, 59, 48, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 20px 30px;
  margin: 30px auto 35px;
  max-width: 900px;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-warning strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

/* ===================================================================
   Buttons
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

/* ===================================================================
   Sections
   =================================================================== */

.section {
  padding: 100px 0;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===================================================================
   What is PAMM - Section explicative avec visuels
   =================================================================== */

.what-is-section {
  background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-main) 100%);
}

.explanation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: 60px;
}

.explanation-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
}

.explanation-card.highlight {
  background: linear-gradient(135deg, #fff5f1 0%, #ffffff 100%);
  border-color: var(--primary);
}

.explanation-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.visual-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  border: 2px solid var(--border);
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}

.visual-box.primary {
  border-color: var(--info);
  background: #eff6ff;
}

.visual-box.secondary {
  border-color: var(--warning);
  background: #fffbeb;
}

.visual-box.accent {
  border-color: var(--primary);
  background: var(--primary-light);
}

.visual-icon {
  font-size: 32px;
}

.visual-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.visual-arrow {
  font-size: 32px;
  color: var(--text-muted);
  font-weight: bold;
}

.explanation-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.explanation-text {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
}

/* Example Box */
.example-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 2px solid var(--primary);
  box-shadow: 0 8px 20px rgba(238, 97, 35, 0.15);
}

.example-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.example-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.example-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.example-item.highlight-item {
  background: #fef3c7;
  border: 2px solid var(--warning);
}

.example-item.success {
  background: #d1fae5;
  border: 2px solid var(--success);
}

.example-item.success-result {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  border: 2px solid var(--primary);
  padding: var(--space-lg);
}

.example-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.example-value {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

.example-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: var(--space-sm) 0;
}

/* Key Principles */
.key-principles {
  margin-top: 60px;
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.principles-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.principle-card {
  text-align: center;
  padding: var(--space-lg);
}

.principle-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 12px rgba(238, 97, 35, 0.3);
}

.principle-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

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

/* ===================================================================
   Timeline - Fonctionnement
   =================================================================== */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 60px;
}

.timeline-number {
  position: absolute;
  left: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(238, 97, 35, 0.4);
  border: 4px solid white;
}

.timeline-content {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.timeline-description {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.timeline-list {
  list-style: none;
  padding: 0;
}

.timeline-list li {
  padding: var(--space-sm) 0;
  font-size: 15px;
  color: var(--text-medium);
  padding-left: 30px;
  position: relative;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================================================
   Features Grid
   =================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 2px solid var(--border);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  stroke-width: 2;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.feature-description {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
}

.feature-description strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ===================================================================
   Stats Section
   =================================================================== */

.stats-section {
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-card.highlight {
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
  border-color: var(--primary);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
}

.stat-value {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

.risk-banner {
  background: linear-gradient(135deg, #ff3b30 0%, #ff6b48 100%);
  border: 3px solid #cc0000;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 50px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  box-shadow: 0 10px 40px rgba(255, 59, 48, 0.3);
}

.risk-banner-icon {
  font-size: 48px;
  flex-shrink: 0;
  line-height: 1;
}

.risk-banner-content h3 {
  color: white;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.risk-banner-content p {
  color: white;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.performance-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: #fef3c7;
  border-left: 4px solid var(--warning);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.performance-disclaimer.enhanced {
  background: linear-gradient(135deg, #fff5f1 0%, #ffe8e0 100%);
  border: 3px solid #ff6b48;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(238, 97, 35, 0.2);
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #cc0000;
}

.disclaimer-icon {
  font-size: 32px;
}

.performance-disclaimer p {
  margin: 0 0 15px 0;
  line-height: 1.8;
  font-size: 15px;
}

.performance-disclaimer p:last-child {
  margin-bottom: 0;
}

/* ===================================================================
   Pricing Section
   =================================================================== */

.pricing-section {
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 2px solid var(--border);
  transition: all var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.highlight {
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
  border-color: var(--primary);
  border-width: 3px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.pricing-icon {
  font-size: 48px;
  display: block;
  margin-bottom: var(--space-md);
}

.pricing-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.pricing-amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.pricing-description {
  font-size: 15px;
  color: var(--text-medium);
  text-align: center;
  line-height: 1.6;
}

.pricing-example {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 3px solid var(--primary);
  box-shadow: 0 8px 30px rgba(238, 97, 35, 0.2);
}

.pricing-example-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pricing-example-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.pricing-step {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
}

.pricing-step.result {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  border-color: var(--primary);
  border-width: 3px;
}

.step-label {
  font-weight: 600;
  color: var(--text-medium);
  font-size: 16px;
}

.step-value {
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
}

.step-value.success {
  color: var(--success);
}

.step-value.highlight {
  color: var(--primary);
  font-size: 32px;
}

.step-arrow {
  font-size: 32px;
  color: var(--primary);
  font-weight: bold;
}

/* ===================================================================
   Footer
   =================================================================== */

.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-warning {
  margin-top: var(--space-md);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===================================================================
   Responsive
   =================================================================== */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .section-title {
    font-size: 40px;
  }

  .explanation-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    gap: var(--space-md);
  }

  .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-features {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-warning {
    padding: 16px 20px;
    font-size: 14px;
    margin: 20px auto 25px;
  }

  .hero-warning strong {
    font-size: 16px;
  }

  .risk-banner {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    margin-bottom: 30px;
  }

  .risk-banner-icon {
    font-size: 36px;
  }

  .risk-banner-content h3 {
    font-size: 20px;
  }

  .risk-banner-content p {
    font-size: 14px;
  }

  .performance-disclaimer.enhanced {
    padding: 20px;
  }

  .disclaimer-header {
    font-size: 16px;
    gap: 8px;
  }

  .disclaimer-icon {
    font-size: 24px;
  }

  .performance-disclaimer p {
    font-size: 14px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 70px;
  }

  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .visual-arrow {
    font-size: 24px;
    transform: rotate(90deg);
  }

  .explanation-visual {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .stat-value {
    font-size: 40px;
  }

  .pricing-amount {
    font-size: 40px;
  }
}

/* ===================================================================
   Pages Légales
   =================================================================== */

.legal-page {
  background: white;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.legal-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.legal-update {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--border);
}

.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-lg);
  padding-left: 30px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: var(--space-sm);
}

.legal-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.legal-content a:hover {
  border-bottom-color: var(--primary);
}

/* Risk Warning Specific Styles */
.risk-warning-banner {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 3px solid var(--danger);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.risk-warning-banner h1 {
  color: var(--danger);
  margin-bottom: var(--space-md);
}

.warning-highlight {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.risk-acknowledgment {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.risk-acknowledgment p {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.risk-acknowledgment ul {
  list-style: none;
  padding-left: 0;
}

.risk-acknowledgment li {
  padding: var(--space-sm) 0;
  color: var(--text-dark);
  font-weight: 500;
}

.final-warning {
  background: #fef3c7;
  border: 3px solid var(--warning);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
}

.final-warning h3 {
  color: var(--warning);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.final-warning p {
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.final-warning p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  color: var(--danger);
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
  .legal-content {
    padding: var(--space-lg) 0;
  }

  .legal-content h1 {
    font-size: 32px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content h3 {
    font-size: 18px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }

  .risk-warning-banner,
  .risk-acknowledgment,
  .final-warning {
    padding: var(--space-lg);
  }
}
