/* ============================================
   HERO NEW SECTION - OPTIMISÉ PROFESSIONNEL
   Dimensions basées sur les meilleures pratiques 2024
   ============================================ */

.hero-new-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 140px var(--spacing-xl) 80px;
    padding-top: calc(140px + env(safe-area-inset-top));
    padding-bottom: 180px;
    position: relative;
    overflow: visible;
    background: #000000;
}

.hero-new-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-new-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 0;
}

/* ============================================
   BADGE - Dimensions optimales
   ============================================ */
.hero-new-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.14);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.hero-new-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.hero-new-badge i {
    font-size: 14px;
    color: #ffffff;
    animation: pulseCheck 2s ease-in-out infinite;
}

/* ============================================
   TITRE - Dimensions optimales desktop
   ============================================ */
.hero-new-title {
    font-size: clamp(56px, 7.5vw, 84px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 36px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 14px rgba(255, 255, 255, 0.25);
}

.hero-title-line {
    display: block;
    margin-bottom: 4px;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* ============================================
   DESCRIPTION - Dimensions optimales
   ============================================ */
.hero-description-wrapper {
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.hero-new-description {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 16px 0;
    font-family: 'Inter', sans-serif;
}

.hero-description-emphasis {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ============================================
   STATS - Dimensions optimales
   ============================================ */
.hero-new-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-stat-card {
    position: relative;
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    flex: 0 1 auto;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.hero-stat-check {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 14px;
    color: #ffffff;
    animation: pulseCheck 2s ease-in-out infinite;
}

.hero-stat-value {
    font-size: clamp(40px, 4.8vw, 54px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    margin-top: 8px;
    font-variant-numeric: tabular-nums;
    display: block;
    transition: transform 0.3s ease;
}

.hero-stat-card:hover .hero-stat-value {
    transform: scale(1.05);
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

/* ============================================
   CTA BUTTON - Dimensions optimales
   ============================================ */
.hero-new-cta {
    margin-bottom: 48px;
}

.hero-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 14px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.26);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.hero-cta-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.98);
}

.hero-cta-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover i {
    transform: translateX(4px);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-cta-secondary i {
    transition: transform 0.3s ease;
}

.hero-cta-secondary:hover i {
    transform: translateX(0);
}

/* ============================================
   TRUST BADGES - Dimensions optimales
   ============================================ */
.hero-cta-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.hero-trust-item:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-trust-item i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   CLIENTS - Dimensions optimales
   ============================================ */
.hero-new-clients {
    margin-top: 64px;
    padding: 56px 32px 48px;
    margin-bottom: 40px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 65%);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-clients-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 64px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.14);
    text-align: center;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.hero-clients-header i {
    font-size: 18px;
    color: #ffffff;
    animation: pulseCheck 2s ease-in-out infinite;
    background: #000000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    line-height: 1;
}

.hero-clients-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.hero-clients-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    padding: 4px 0;
}

.hero-client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 26px 24px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 210px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: visible;
}

.hero-client-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-client-card:hover {
    transform: translateY(-10px) scale(1.04);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
}

.hero-client-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.hero-client-avatar {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.hero-client-card:hover .hero-client-avatar {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.3);
    transform: scale(1.12);
}

.hero-client-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.6);
    z-index: 10;
    animation: pulseCheck 2s ease-in-out infinite;
    border: 3px solid #000000;
}

.hero-client-badge i {
    font-size: 14px;
    color: #000000;
    font-weight: 900;
    line-height: 1;
}

.hero-client-name {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
}

/* ============================================
   FEATURES
   ============================================ */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.what-is-modern-section .hero-features {
    margin-bottom: 48px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12);
}

.hero-feature-item i:first-child {
    font-size: 11px;
    color: #ffffff;
    animation: pulseCheck 2s ease-in-out infinite;
    position: absolute;
    top: 6px;
    left: 10px;
    z-index: 2;
}

.hero-feature-item i:last-child {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 6px;
    transition: all 0.3s ease;
}

.hero-feature-item:hover i:last-child {
    color: #ffffff;
    transform: scale(1.1);
}

.hero-feature-item span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.hero-feature-item:hover span {
    color: #ffffff;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulseCheck {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* ============================================
   WHAT IS MODERN SECTION
   ============================================ */
.what-is-modern-section {
    padding: 80px 0 100px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.what-is-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.what-is-modern-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.what-is-modern-header {
    text-align: center;
    margin-bottom: 48px;
}

.what-is-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.what-is-modern-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.what-is-modern-badge i {
    font-size: 12px;
    color: #ffffff;
    animation: pulseCheck 2s ease-in-out infinite;
}

.what-is-modern-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.what-is-presentation {
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: center;
}

.what-is-intro {
    margin-bottom: 40px;
}

.what-is-intro-text {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.02em;
}

.what-is-accent {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.what-is-platforms {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.what-is-platform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.what-is-platform-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.what-is-platform-item i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.what-is-platform-item span {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.what-is-description {
    margin-bottom: 40px;
    text-align: left;
}

.what-is-description-text {
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.what-is-description-text strong {
    color: var(--color-white);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

.what-is-value {
    margin-top: 40px;
    padding-top: 0;
    text-align: left;
}

.what-is-value-text {
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.what-is-highlight {
    color: var(--color-white);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

.what-is-emphasis {
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .hero-new-section {
        padding: 100px 24px 60px;
        padding-top: calc(100px + env(safe-area-inset-top));
        padding-bottom: 140px;
    }

    .hero-new-badge {
        padding: 8px 20px;
        font-size: 11px;
        margin-bottom: 32px;
    }

    .hero-new-title {
        font-size: clamp(36px, 8vw, 48px);
        margin-bottom: 24px;
    }

    .hero-description-wrapper {
        margin-bottom: 40px;
    }

    .hero-new-description {
        font-size: clamp(18px, 3vw, 22px);
    }

    .hero-description-emphasis {
        font-size: clamp(16px, 2.8vw, 20px);
    }

    .hero-new-stats {
        gap: 16px;
        margin-bottom: 40px;
    }

    .hero-stat-card {
        padding: 24px 20px;
        min-width: 160px;
    }

    .hero-stat-value {
        font-size: clamp(28px, 4vw, 36px);
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .hero-cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }

    .hero-cta-trust {
        gap: 16px;
        margin-top: 28px;
    }

    .hero-trust-item {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-new-clients {
        padding: 28px 16px 24px;
        margin-top: 32px;
        background: rgba(255, 255, 255, 0.04);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
        border-radius: 22px;
    }

    .hero-clients-header {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
        gap: 8px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        letter-spacing: 1.2px;
        border-radius: 999px;
    }

    .hero-clients-header i {
        display: flex;
        width: 20px;
        height: 20px;
        font-size: 10px;
        background: #000000;
        color: #ffffff;
        box-shadow: none;
        border: none;
    }

    .hero-clients-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 16px;
    }

    .hero-client-card {
        padding: 14px 12px;
        gap: 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.06);
        border: 1.2px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    }

    .hero-client-avatar {
        width: 88px;
        height: 88px;
    }

    .hero-client-badge {
        display: block;
        width: 24px;
        height: 24px;
        top: -4px;
        right: -4px;
        background: #ffffff;
        border: 2px solid #000000;
        box-shadow: none;
    }

    .hero-client-badge i {
        font-size: 12px;
    }

    .hero-client-name {
        font-size: 14px;
    }

    .what-is-modern-section {
        padding: 60px 24px 80px;
    }

    .what-is-modern-title {
        font-size: clamp(32px, 6vw, 40px);
        white-space: normal;
    }

    .what-is-platforms {
        gap: 16px;
    }

    .what-is-platform-item {
        padding: 10px 16px;
    }
}
