    :root {
        --primary: #00D9A3;
        --primary-dark: #00B88A;
        --bg-dark: #0f0f0f;
        --bg-darker: #0a0a0a;
        --bg-light: #f8f9fa;
        --text-white: #ffffff;
        --text-dim: #9ca3af;
        --text-dark: #1a1a1a;
        --text-mid: #4a4a4a;
        --border-glow: rgba(0,217,163,0.4);
        --radius-lg: 1rem;
        --radius-md: 0.75rem;
    }

    body.home {
        background: #000;
        font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
    }

    .section-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 3rem 1.5rem 4rem;
    }
    @media (min-width: 768px) {
        .section-inner {
            padding: 4rem 1.5rem 5rem;
        }
    }


    .hero-wrapper {
        background: radial-gradient(circle at 20% 20%, rgba(0,217,163,0.08) 0%, rgba(0,0,0,0) 70%), var(--bg-dark);
        color: var(--text-white);
        padding: 5rem 1.5rem 6rem;
        box-shadow: inset 0 0 200px rgba(0, 217, 163, 0.03);
    }

    .hero-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0,1fr) minmax(0,420px);
        gap: 2.5rem;
        align-items: start;
    }
    @media (max-width: 900px) {
        .hero-inner {
            grid-template-columns: 1fr;
        }
    }

    .highlight-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: radial-gradient(circle at left top, rgba(0,217,163,0.15) 0%, rgba(0,0,0,0) 60%);
        background-color: rgba(0,217,163,0.07);
        border: 1px solid rgba(0,217,163,0.4);
        border-radius: 999px;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-white);
        line-height: 1.2;
        margin-bottom: 1rem;
    
    }
    .highlight-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--primary);
        box-shadow: none;
    }

    .hero-headline {
        font-size: clamp(2rem, 1rem + 2vw, 2.8rem);
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: var(--text-white);
        margin: 0 0 1rem 0;
        text-shadow: 0 10px 30px rgba(0,0,0,0.9);
    }
    .hero-headline .accent {
        color: var(--primary);
        text-shadow: none;
        display: inline-block;
    }
       
    .hero-headline .accent {
        color: var(--primary);
        display: inline-block;
        position: relative;
    }
    
    
    .underlined-word {
        position: relative;
        display: inline-block;
        padding-bottom: 15px;  /* Plus d'espace */
    }
    
  
    .brush-underline {
        position: absolute;
        left: -2%;
        bottom: 2px;  /* Plus espacé du texte */
        width: 0;
        height: 3.5px;
        background: var(--primary);
        border-radius: 50% 60% 70% 50% / 95% 90% 10% 5%;
        transform: rotate(-3deg);  /* au lieu de -2deg */
        animation: drawBrush 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        opacity: 0;
    }
    
    
    .brush-underline::before {
        content: '';
        position: absolute;
        left: 2px;
        top: 1.5px;
        width: 100%;
        height: 3px;
        background: var(--primary);
        border-radius: 55% 65% 75% 55% / 85% 80% 20% 15%;  /* Plus courbe */
        opacity: 0.35;
        transform: rotate(1deg);
    }
    

    .brush-underline::after {
        content: '';
        position: absolute;
        left: -1px;
        top: -1px;
        width: 100%;
        height: 2.8px;
        background: var(--primary);
        border-radius: 58% 68% 78% 58% / 88% 83% 17% 12%;  /* Plus courbe */
        opacity: 0.25;
        transform: rotate(-1deg);
    }
    

    @keyframes drawBrush {
        0% {
            width: 0;
            opacity: 0;
            transform: rotate(-2deg) scaleX(0);
        }
        50% {
            opacity: 0.9;
        }
        100% {
            width: 106%;
            opacity: 0.95;
            transform: rotate(-2deg) scaleX(1);
        }
    }
    .hero-desc {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--text-white);
        max-width: 46ch;
        margin-bottom: 1.5rem;
    }

    .hero-bullets {
        display: grid;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .hero-bullet-row {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        color: var(--text-white);
        font-size: 0.95rem;
        line-height: 1.4;
        font-weight: 500;
        text-shadow: 0 10px 20px rgba(0,0,0,0.6);
    }
    .check-icon {
        width: 1.4rem;
        height: 1.4rem;
        min-width: 1.4rem;
        border-radius: 0.5rem;
        background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
        color: #000;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        line-height: 1;
        border: 1px solid rgba(0,0,0,0.4);
    }

    .hero-actions-row {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .call-chip {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: #0f0f0f;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255,255,255,0.15);
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        line-height: 1.2;
        font-weight: 600;
        color: var(--text-white);
        text-decoration: none;
    }
    .call-chip .chip-icon-circle {
        width: 1.6rem;
        height: 1.6rem;
        border-radius: 999px;
        background: radial-gradient(circle at 30% 30%, var(--primary) 0%, var(--primary-dark) 70%);
        color: #000;
        font-weight: 600;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
       
    @media (min-width: 969px) {
      .nav-menu .sub-menu {
        top: 100%;         
        margin-top: 0.5rem; 
      }
    
      .nav-menu li.menu-item-has-children > .sub-menu::before {
        content: "";
        position: absolute;
        left: 0; right: 0;
        top: -10px;        
        height: 12px;       
      }
    
      .nav-menu .sub-menu { pointer-events: auto; z-index: 999; }
    }
    

    .wa-chip {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 60%), linear-gradient(to bottom right, var(--primary), var(--primary-dark));
        border-radius: var(--radius-md);
        padding: 0.75rem 1rem;
        min-width: 200px;
        color: #000;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        line-height: 1.3;
        border: 1px solid rgba(0,0,0,0.4);
    }
    .wa-chip .wa-top {
        font-size: 0.8rem;
        font-weight: 500;
        opacity: 0.8;
        line-height: 1.2;
        color: #000;
    }
    .wa-chip .wa-bottom {
        font-size: 0.9rem;
        line-height: 1.3;
        font-weight: 700;
        color: #000;
    }

    .offer-chip {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
        border-radius: var(--radius-md);
        padding: 0.75rem 1rem;
        color: #000;
        font-weight: 600;
        font-size: 0.9rem;
        line-height: 1.3;
        text-decoration: none;
        border: 1px solid rgba(0,0,0,0.4);
        transition: all 0.3s ease;
        min-width: 200px;
        cursor: pointer;
    }
    .offer-chip:hover {
        transform: translateY(-2px);
    }

    .hero-sidecard {
        background: rgba(15,15,15,0.6);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-glow);
        padding: 1.25rem 1rem 1rem;
        color: var(--text-white);
        min-height: 100%;
    }
    .sidecard-title {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-white);
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    .sidecard-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--text-dim);
        margin-bottom: 1.25rem;
    }
    .sidecard-list {
        display: grid;
        gap: 1rem;
        font-size: 0.9rem;
        color: var(--text-white);
        line-height: 1.4;
    }
    .sidecard-item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.75rem;
        align-items: flex-start;
    }
    .sidecard-accent {
        background: #0f0f0f;
        border: 1px solid var(--border-glow);
        border-radius: 0.5rem;
        min-width: 2rem;
        min-height: 2rem;
        font-size: 0.8rem;
        line-height: 1;
        font-weight: 600;
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .sidecard-text-head {
        color: var(--text-white);
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    .sidecard-text-sub {
        color: var(--text-dim);
        font-size: 0.8rem;
        line-height: 1.4;
    }


    .hero-stats-grid {
        margin-top: 2rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 1.5rem 1rem;
        max-width: 480px;
    }
    @media (max-width: 500px) {
        .hero-stats-grid {
            grid-template-columns: 1fr;
        }
    }
    .stat-block {
        display: flex;
        flex-direction: column;
        gap: .25rem;
    }
    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        text-shadow: 0 0 20px rgba(0,217,163,0.8), 0 0 60px rgba(0,217,163,0.4);
        letter-spacing: -0.03em;
        line-height: 1.2;
    }
    .stat-label {
        color: var(--text-dim);
        font-size: .8rem;
        line-height: 1.4;
        font-weight: 500;
    }

 
    .services-light-section {
        background: var(--bg-light);
        color: var(--text-dark);
        border-top: 1px solid rgba(0,0,0,0.06);
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .services-light-head {
        max-width: 1280px;
        margin: 0 auto 2rem;
        padding: 0 1.5rem;
        color: var(--text-dark);
    }
    .services-light-title {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
        color: var(--text-dark);
    }
    .services-light-sub {
        font-size: .9rem;
        color: var(--text-mid);
        line-height: 1.4;
    }

    .services-light-grid {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem 3rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    @media (max-width: 900px) {
        .services-light-grid {
            grid-template-columns: 1fr;
        }
    }

    .services-col-left {
        display: grid;
    }

    .services-col-right {
        display: grid;
        gap: 1.5rem;
        grid-template-rows: auto auto auto;
    }

    /* generic service tile */
    .service-tile {
        display: grid;
        grid-template-rows: 260px auto;
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 1rem;
        box-shadow: 0 24px 60px rgba(0,0,0,0.05);
        text-decoration: none;
        color: #1a1a1a;
        overflow: hidden;
    }
    @media (max-width: 480px) {
        .service-tile {
            grid-template-rows: 180px auto;
        }
    }

    .service-img {
        background-size: cover;
        background-position: center;
        position: relative;
    }
    .service-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(0,217,163,0.08) 0%, rgba(255,255,255,0) 70%);
    }

    .service-content {
        padding: 1.25rem 1rem 1rem;
        display: flex;
        flex-direction: column;
    }

    .service-icon {
        font-size: 1.4rem;
        line-height: 1;
        color: #00D9A3;
        border: 2px solid #00D9A3;
        border-radius: .5rem;
        width: 2.2rem;
        height: 2.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    .service-icon svg {
        width: 24px;
        height: 24px;
        stroke: #000;
        stroke-width: 2;
    }

    .service-head {
        font-size: 1.05rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: .5rem;
        line-height: 1.3;
    }

    .service-desc {
        font-size: .9rem;
        line-height: 1.4;
        color: #4a4a4a;
        margin-bottom: 1rem;
        max-width: 44ch;
    }

    .service-more-link {
        font-size: .85rem;
        font-weight: 600;
        color: #00B88A;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
    }
    .service-more-link::after {
        content: "→";
        font-size: .85rem;
        line-height: 1;
    }

 
    .service-tile-foto {
        grid-template-rows: auto;
        position: relative;
    }
    .foto-showcase {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 600px;
        background: #000;
        border-radius: 1rem;
        overflow: hidden;
    }
    .foto-grid {
        position: absolute;
        inset: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    .foto-cell {
        background-size: cover;
        background-position: center;
    }

    .mosaic-badge.badge-inline {
        position: absolute;
        left: 1rem;
        top: 1rem;
        background: rgba(0,0,0,0.6);
        color: var(--primary);
        border: 1px solid rgba(0,217,163,0.4);
        font-size: .7rem;
        line-height: 1.2;
        font-weight: 600;
        border-radius: .5rem;
        padding: .4rem .6rem;
        box-shadow: 0 20px 40px rgba(0,217,163,0.4), 0 0 40px rgba(0,217,163,0.6);
        display: inline-flex;
        align-items: center;
        gap: .4rem;
    }
    .mosaic-badge.badge-inline::before {
        content: "★";
        font-size: .7rem;
        line-height: 1;
        color: var(--primary);
    }

    .foto-overlay-card {
        position: absolute;
        left: 1rem;
        bottom: 1rem;
        max-width: clamp(220px, 30%, 260px);
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: .75rem;
        box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        border: 1px solid rgba(255,255,255,0.3);
        padding: 1rem 1rem 1.25rem;
        color: #1a1a1a;
    }
    .foto-overlay-card .service-icon {
        margin-bottom: .75rem;
    }
    .foto-overlay-card .service-head {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: .5rem;
        color: #1a1a1a;
        font-weight: 600;
    }
    .foto-overlay-card .service-desc {
        font-size: .85rem;
        line-height: 1.4;
        color: #4a4a4a;
        margin-bottom: 1rem;
        max-width: none;
    }
    .foto-overlay-card .service-more-link {
        font-size: .8rem;
        line-height: 1.2;
        color: #00B88A;
    }

 }

   @media (max-width: 900px) {
    .service-tile-foto {
        display: block !important;
        grid-template-rows: none !important;
    }
    
   
    .foto-showcase {
        position: relative !important;
        min-height: auto !important;
        height: auto !important;
        width: 100% !important;
        background: transparent !important;
        border-radius: 0 !important;
    }
    

    .foto-grid {
        display: block !important;
        position: relative !important;
        height: 180px !important;
        width: 100% !important;
        background-image: url('https://discover-studio.de/wp-content/uploads/2025/09/171.Bayiri-World-Kids-Cup-2025-scaled.jpg?auto=compress&cs=tinysrgb&w=1200') !important;
        background-size: cover !important;
        background-position: center !important;
        border-radius: 1rem 1rem 0 0 !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr !important;
    }
    
  
    .foto-cell {
        display: none !important;
    }
    

    .foto-grid::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(0,217,163,0.08) 0%, rgba(255,255,255,0) 70%);
        pointer-events: none;
    }
    

    .mosaic-badge.badge-inline {
        display: none !important;
    }
    

    .foto-overlay-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        max-width: 100% !important;
        background: #ffffff !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 1.25rem 1rem 1rem !important;
    }
    
    .foto-overlay-card .service-icon {
        color: #00D9A3 !important;
        border: 2px solid #00D9A3 !important;
        background: transparent !important;
    }
    
    .foto-overlay-card .service-icon svg {
        stroke: #000 !important;
    }
    
    .foto-overlay-card .service-head {
        font-size: 1.05rem !important;
        color: #1a1a1a !important;
    }
    
    .foto-overlay-card .service-desc {
        font-size: .9rem !important;
        color: #4a4a4a !important;
    }
    
    .foto-overlay-card .service-more-link {
        color: #00B88A !important;
    }
}


    .trust-section {
        background: var(--bg-light);
        color: var(--text-dark);
        overflow: hidden;
    }
    .trust-headline {
        text-align: center;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
        color: var(--text-dark);
    }

    .trust-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .trust-track {
        display: flex;
        gap: 2rem;
        width: max-content;
        animation: scrollLogos 30s linear infinite;
    }

    @keyframes scrollLogos {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }

    .trust-logo-box {
        background: #fff;
        border: 1px solid rgba(0,0,0,0.07);
        border-radius: .75rem;
        width: 160px;
        height: 120px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: .75rem;
        text-align: center;
    }

    .trust-logo {
        width: 100%;
        height: 60px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: .5rem;
    }

    .trust-name {
        font-weight: 600;
        font-size: 0.85rem;
        color: #333;
        text-align: center;
        line-height: 1.3;
    }


    .benefits-section {
        background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
        color: var(--text-dark);
        box-shadow: none;
    }
    .benefits-headline {
        text-align: center;
        max-width: 70ch;
        margin: 0 auto 2rem;
        font-size: clamp(1.1rem, 0.5rem + 1vw, 1.4rem);
        line-height: 1.4;
        font-weight: 600;
        color: var(--text-dark);
    }
    .benefits-headline .accent {
        color: var(--primary-dark);
        font-weight: 700;
        text-shadow: none;
    }
    .benefits-subline {
        text-align: center;
        color: var(--text-mid);
        font-size: .9rem;
        line-height: 1.4;
        max-width: 70ch;
        margin: 0 auto 3rem;
        font-weight: 400;
    }
    .benefits-grid {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 1rem;
    }
    @media (max-width: 1024px) {
        .benefits-grid {
            grid-template-columns: repeat(2,minmax(0,1fr));
        }
    }
    
   @media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .benefit-card {
        padding: 1rem 0.75rem;
        min-height: 140px;
    }
    
    .benefit-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .benefit-title {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .benefit-desc {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

    .benefit-card {
        background: #ffffff;
        border-radius: var(--radius-lg);
        border: 1px solid #e5e7eb;
        padding: 1.5rem 1.25rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        min-height: 170px;
        position: relative;
        transition: all 0.3s ease;
    }
    .benefit-card:hover {
        border-color: var(--primary);
        box-shadow: 0 8px 24px rgba(0,217,163,0.15);
        transform: translateY(-4px);
    }
    .benefit-card.featured {
        border: 2px solid var(--primary);
        background: linear-gradient(135deg, rgba(0,217,163,0.08) 0%, rgba(0,217,163,0.02) 100%);
        box-shadow: 0 8px 24px rgba(0,217,163,0.15);
    }
    .benefit-icon {
        font-size: 1.4rem;
        line-height: 1;
        margin-bottom: .75rem;
        text-shadow: none;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .benefit-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--primary-dark);
        stroke-width: 2;
    }
    .benefit-title {
        font-weight: 600;
        color: #000;
        line-height: 1.4;
        font-size: 1rem;
        margin-bottom: .5rem;
    }
    .benefit-desc {
        color: var(--text-mid);
        font-size: .9rem;
        line-height: 1.5;
        font-weight: 400;
    }
    .benefits-cta-wrapper {
        text-align: center;
        margin-top: 2.5rem;
    }
    .benefits-cta {
        display: inline-block;
        background: var(--text-dark);
        color: #fff;
        font-weight: 600;
        font-size: .9rem;
        line-height: 1.2;
        text-decoration: none;
        border-radius: 999px;
        padding: .9rem 1.25rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border: 1px solid rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    .benefits-cta:hover {
        background: #000;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }


    .blog-section {
        background: #0a0a0a;
        padding: 4rem 0;
    }
    .blog-headline {
        font-size: clamp(1.6rem, 1rem + 1.5vw, 2rem);
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.02em;
        text-align: center;
        color: var(--text-white);
        margin-bottom: 0.5rem;
    }
    .blog-headline .accent {
        color: var(--primary);
    }
    .blog-subline {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
        color: var(--text-dim);
        max-width: 60ch;
        margin: 0 auto 3rem;
    }
    
    .blog-grid {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    @media (max-width: 768px) {
        .blog-section .section-inner {
            padding-left: 0;
            padding-right: 0;
        }
        
        .blog-grid {
            display: flex;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 1rem;
            padding: 0 1rem;
            margin: 0 0 0 1rem;
        }
        
        .blog-card {
            flex: 0 0 calc(50% - 0.5rem);
            min-width: calc(50% - 0.5rem);
            scroll-snap-align: start;
        }
        
        /* Masquer la scrollbar mais garder le scroll */
        .blog-grid::-webkit-scrollbar {
            display: none;
        }
        .blog-grid {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
    }
    
    @media (max-width: 400px) {
        .blog-card {
            flex: 0 0 calc(85% - 0.5rem);
            min-width: calc(85% - 0.5rem);
        }
    }
 
    @media (max-width: 768px) {
        .blog-section {
            position: relative;
        }
        
    
        .blog-grid::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 40px;
            background: linear-gradient(to right, transparent, #0a0a0a);
            pointer-events: none;
        }
    }
    
    .blog-card {
        background: #0f0f0f;
        border-radius: var(--radius-lg);
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.08);
        transition: all 0.3s ease;
        text-decoration: none;
        display: flex;
        flex-direction: column;
    }
    .blog-card:hover {
        border-color: rgba(0,217,163,0.3);
        box-shadow: 0 8px 24px rgba(0,217,163,0.15);
        transform: translateY(-4px);
    }
    
    .blog-image-wrapper {
        width: 100%;
        height: 180px;
        overflow: hidden;
        position: relative;
        background: linear-gradient(135deg, rgba(0,217,163,0.1) 0%, rgba(0,0,0,0.3) 100%);
    }
    .blog-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .blog-card:hover .blog-image {
        transform: scale(1.05);
    }
    
    .blog-content {
        padding: 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .blog-category {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        background: rgba(0,217,163,0.1);
        border: 1px solid rgba(0,217,163,0.3);
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 1rem;
        width: fit-content;
    }
    
    .blog-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-white);
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-dim);
        margin-bottom: 1.25rem;
        flex: 1;
    }
    
    .blog-read-more {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.9rem;
        transition: gap 0.3s ease;
    }
    .blog-card:hover .blog-read-more {
        gap: 0.75rem;
    }
    .blog-read-more svg {
        width: 1rem;
        height: 1rem;
        transition: transform 0.3s ease;
    }
    .blog-card:hover .blog-read-more svg {
        transform: translateX(2px);
    }
    
    @media (max-width: 768px) {
        .blog-grid {
            grid-template-columns: 1fr;
        }
    }

    .cta-light-section {
        background: var(--bg-light);
        color: var(--text-dark);
        text-align: center;
    }
    .cta-light-card {
        max-width: 680px;
        margin: 0 auto;
        background: #fff;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0,0,0,0.07);
        box-shadow: 0 30px 80px rgba(0,0,0,0.08);
        padding: 2rem 1.5rem;
    }
    .cta-light-headline {
        font-size: 1.2rem;
        line-height: 1.3;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }
    .cta-light-desc {
        font-size: .95rem;
        line-height: 1.5;
        color: var(--text-mid);
        margin-bottom: 1.5rem;
        max-width: 50ch;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-light-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: .75rem;
    }
    .btn-primary-dark {
        display: inline-block;
        background: #000;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: .9rem;
        line-height: 1.2;
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
        border: 1px solid rgba(0,0,0,0.8);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .btn-primary-dark:hover {
        background: var(--primary-dark);
        color: #000;
        border-color: transparent;
    }
    .btn-outline-dark {
        display: inline-block;
        background: #fff;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        font-size: .9rem;
        line-height: 1.2;
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
        border: 1px solid rgba(0,0,0,0.15);
    }
    .btn-outline-dark:hover {
        border-color: var(--primary);
        color: var(--primary-dark);
    }


    .final-dark-strip {
        background: var(--bg-dark);
        color: var(--text-white);
        text-align: center;
        padding: 3rem 1.5rem 4rem;
        box-shadow: inset 0 0 200px rgba(0, 217, 163, 0.07);
    }
    .final-headline {
        font-size: 1.2rem;
        line-height: 1.3;
        font-weight: 600;
        color: var(--text-white);
        max-width: 40ch;
        margin: 0 auto 1rem;
        text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    }
    .final-headline .accent {
        color: var(--primary);
        text-shadow: 0 0 20px rgba(0,217,163,0.8), 0 0 60px rgba(0,217,163,0.4);
    }
    .final-desc {
        color: var(--text-dim);
        font-size: .9rem;
        max-width: 50ch;
        margin: 0 auto 2rem;
        line-height: 1.5;
    }
    .final-cta {
        display: inline-block;
        background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
        color: #000;
        font-weight: 600;
        font-size: .9rem;
        line-height: 1.2;
        text-decoration: none;
        border-radius: 999px;
        padding: .9rem 1.25rem;
        box-shadow: 0 30px 80px rgba(0,217,163,0.4), 0 0 60px rgba(0,217,163,0.7);
        border: 1px solid rgba(0,0,0,0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .final-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 35px 90px rgba(0,217,163,0.5), 0 0 80px rgba(0,217,163,0.8);
    }
    

    .custom-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 999999;
        overflow: hidden; 
    }
    
    .custom-modal-overlay.active {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .custom-modal-content {
        position: relative;
        background: white;
        border-radius: 16px;
        max-width: 700px;
        width: 90%;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        margin: auto;
    }
    
    .custom-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 28px;
        font-weight: bold;
        color: #000;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        transition: all 0.2s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .custom-modal-close:hover {
        background: #000;
        color: white;
        transform: scale(1.1);
    }
    
    .custom-modal-form-wrapper {
        padding: 60px 30px 30px;
    }
    
    .custom-modal-form-wrapper h2 {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        color: #1a1a1a;
    }
    

    .custom-modal-form-wrapper .srfm-block-container {
        max-width: 100% !important;
    }
    
    /* Mobile */
    @media (max-width: 768px) {
        .custom-modal-overlay.active {
            align-items: flex-start !important;
        }
        
        .custom-modal-content {
            max-width: 100%;
            width: 100%;
            min-height: 120vh;
            border-radius: 0;
            max-height: none;
        }
        
        .custom-modal-close {
            position: fixed;
            background: #00D9A3;
            color: #000;
            top: 10px;
            right: 10px;
            width: 50px;
            height: 50px;
            font-size: 32px;
            z-index: 1000001;
        }
        
         .custom-modal-form-wrapper {
            padding: 1.5rem 1rem 2rem;
            overflow-y: auto;
            max-height: calc(100vh - 3rem);
          }
    }
        