/* ============================================
   INDEX.CSS - Styles pour la page d'accueil
   ============================================ */

   body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    overflow-x: hidden;
  }
  
  /* === HERO === */
  .hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
  }
  
  .hero-blob1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 120, 0.25) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
  }
  
  .hero-blob2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 58, 0.2) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    border-radius: 50%;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 120, 0.12);
    border: 1px solid rgba(0, 200, 120, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  
  .hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  
  .hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
  }
  
  .hero h1 .highlight {
    background: linear-gradient(135deg, var(--green), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
  }
  
  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  /* Hero Visual */
  .hero-visual {
    flex: 0 0 420px;
    position: relative;
  }
  
  .compass-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    position: relative;
  }
  
  .compass-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--green), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    box-shadow: 0 8px 30px rgba(0, 200, 120, 0.3);
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .compass-card h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .compass-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
  }
  
  .floating-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 10px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  
  .floating-tag .tag-icon {
    font-size: 18px;
  }
  
  .tag1 {
    top: -20px;
    left: -30px;
    animation: float 3.5s ease-in-out infinite;
  }
  
  .tag2 {
    bottom: -15px;
    right: -20px;
    animation: float 4s ease-in-out infinite 0.5s;
  }
  
  .tag3 {
    bottom: 40px;
    left: -50px;
    animation: float 3.8s ease-in-out infinite 1s;
  }
  
  /* === STATS === */
  .stats {
    background: var(--dark-mid);
    padding: 50px 60px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 4px;
  }
  
  /* === SECTIONS === */
  .section {
    padding: 100px 60px;
  }
  
  .section-alt {
    background: var(--grey);
  }
  
  .section-label {
    text-align: center;
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  
  .section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
  }
  
  .section-sub {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 60px;
  }
  
  /* === STEPS === */
  .steps {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .step-card {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: 0.3s;
    border: 2px solid transparent;
  }
  
  .step-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--orange));
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .step-card .icon {
    font-size: 36px;
    margin-bottom: 16px;
  }
  
  .step-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
  }
  
  .step-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* === FEATURES === */
  .features {
    display: flex;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    border-radius: 22px;
    padding: 38px 30px;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .feature-card.green {
    background: var(--green-light);
    border: 2px solid rgba(0, 200, 120, 0.2);
  }
  
  .feature-card.orange {
    background: var(--orange-light);
    border: 2px solid rgba(255, 140, 58, 0.2);
  }
  
  .feature-card.dark-card {
    background: var(--dark);
    border: 2px solid rgba(255, 255, 255, 0.08);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
  }
  
  .feature-card.green .feature-icon {
    background: rgba(0, 200, 120, 0.2);
  }
  
  .feature-card.orange .feature-icon {
    background: rgba(255, 140, 58, 0.2);
  }
  
  .feature-card.dark-card .feature-icon {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .feature-card.dark-card h4 {
    color: #fff;
  }
  
  .feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
  }
  
  .feature-card.dark-card p {
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* === CTA === */
  .cta-section {
    background: linear-gradient(135deg, var(--dark), var(--dark-mid));
    padding: 90px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 120, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
  }
  
  .cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
  }
  
  .cta-section h2 span {
    background: linear-gradient(135deg, var(--green), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .cta-section p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
  }
  
  .cta-section .btn-primary {
    position: relative;
    z-index: 1;
  }