/* Hero Section Vendoprone - Design Moderne & Innovant */

.vendoprone-hero-modern {
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    background: #000000;
    padding: 80px 0 100px;
    font-family: 'Inter', sans-serif;
}

/* Background Pattern */
.hero-modern-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    z-index: 0;
}

/* Gradient Orbs */
.hero-modern-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 1;
    animation: floatOrb 20s ease-in-out infinite;
}

.hero-modern-gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation-duration: 25s;
}

.hero-modern-gradient-orb.orb-2 {
    width: 350px;
    height: 350px;
    bottom: -8%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.hero-modern-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation-duration: 35s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Geometric Shapes */
.hero-modern-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.05;
}

.hero-modern-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s ease-in-out infinite;
}

.hero-modern-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 8%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphShape 18s ease-in-out infinite reverse;
}

.hero-modern-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    animation: pulseShape 4s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
    }
    75% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
    }
}

@keyframes pulseShape {
    0%, 100% {
        transform: scale(1);
        opacity: 0.05;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* Container */
.vendoprone-hero-modern .container {
    position: relative;
    z-index: 2;
}

/* Content Section */
.hero-modern-content {
    padding-right: 50px;
}

/* Badge */
.hero-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-modern-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-modern-badge span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Main Title */
.hero-modern-title {
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 800;
    line-height: 1.1;
    color: #9a2c63 !important;
    margin-bottom: 28px;
    letter-spacing: -2px;
    font-family: 'Inter', sans-serif;
    -webkit-text-fill-color: #9a2c63;
    text-fill-color: #9a2c63;
}

.hero-modern-title .title-highlight {
    color: #9a2c63 !important;
    display: inline;
    font-weight: 900;
    -webkit-text-fill-color: #9a2c63;
    text-fill-color: #9a2c63;
}

/* Description */
.hero-modern-description {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hero-modern-description strong {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.hero-modern-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.btn-modern-primary {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: #ffffff;
    color: #d35400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 84, 0, 0.1), transparent);
    transition: left 0.5s;
}

.btn-modern-primary:hover::before {
    left: 100%;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    border-color: rgba(211, 84, 0, 0.2);
}

.btn-modern-primary svg {
    transition: transform 0.3s ease;
    stroke: #d35400;
}

.btn-modern-primary:hover svg {
    transform: translateX(5px);
}

.btn-modern-link {
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.btn-modern-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

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

.btn-modern-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-modern-link svg {
    transition: transform 0.3s ease;
}

.btn-modern-link:hover svg {
    transform: translate(3px, -3px);
}

/* Visual Section */
.hero-modern-visual {
    position: relative;
    width: 100%;
}

.hero-modern-image-wrapper {
    position: relative;
    width: 100%;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(211, 84, 0, 0.1);
    transition: transform 0.4s ease;
}

.hero-modern-visual:hover .image-frame {
    transform: translateY(-5px);
}

.image-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-modern-visual:hover .image-frame img {
    transform: scale(1.03);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-modern-visual:hover .image-glow {
    opacity: 1;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.floating-badge.badge-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 15%;
    left: -8%;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.15) 0%, rgba(230, 126, 34, 0.15) 100%);
    border-radius: 12px;
    color: #d35400;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 13px;
    font-weight: 700;
    color: #1F1F25;
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 11px;
    color: #6a6a6a;
    font-weight: 500;
}

/* Trust Indicators */
.hero-modern-trust {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.trust-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.trust-item span {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Scroll Indicator */
.hero-modern-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    margin: 0 auto;
    border-radius: 2px;
    animation: scrollAnimation 2.5s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0) scaleY(1);
    }
    50% {
        opacity: 1;
        transform: translateY(20px) scaleY(1.3);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .vendoprone-hero-modern {
        min-height: auto;
        padding: 70px 0 90px;
    }
    
    .hero-modern-content {
        padding-right: 30px;
    }
    
    .image-frame {
        padding-bottom: 75%;
    }
}

@media (max-width: 991px) {
    .vendoprone-hero-modern {
        padding: 60px 0 70px;
    }
    
    .hero-modern-content {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .hero-modern-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-modern-stats {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-modern-cta {
        justify-content: center;
    }
    
    .image-frame {
        padding-bottom: 70%;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 767px) {
    .vendoprone-hero-modern {
        padding: 50px 0 60px;
        min-height: auto;
    }
    
    .hero-modern-badge {
        padding: 6px 16px;
        margin-bottom: 24px;
    }
    
    .hero-modern-badge span {
        font-size: 11px;
    }
    
    .hero-modern-title {
        font-size: clamp(36px, 9vw, 52px);
        margin-bottom: 24px;
        letter-spacing: -1.5px;
    }
    
    .hero-modern-description {
        font-size: 17px;
        margin-bottom: 32px;
    }
    
    .hero-modern-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 36px;
    }
    
    .btn-modern-primary,
    .btn-modern-link {
        width: 100%;
        justify-content: center;
    }
    
    .image-frame {
        padding-bottom: 65%;
        border-radius: 20px;
    }
    
    .hero-modern-trust {
        flex-direction: column;
        gap: 16px;
        padding: 18px 20px;
    }
    
    .hero-modern-scroll {
        bottom: 40px;
    }
}

@media (max-width: 575px) {
    .hero-modern-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .hero-modern-description {
        font-size: 16px;
    }
    
    .btn-modern-primary,
    .btn-modern-link {
        padding: 16px 28px;
        font-size: 15px;
    }
}

/* Accessibilité */
.btn-modern-primary:focus-visible,
.btn-modern-link:focus-visible {
    outline: 3px solid #d35400;
    outline-offset: 3px;
}

/* Performance */
.image-frame img,
.floating-badge {
    will-change: transform;
}

