/* ========================================
   PAGE D'ACCUEIL - DESIGN MODERNE
   ======================================== */

/* Hero Section */
.hero-home {
    background: linear-gradient(135deg, #780232 0%, #a0034a 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    fill: #fbbf24;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.highlight-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #ffffff;
    color: #780232;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    color: #a0034a;
}

.hero-cta-primary svg {
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-cta-secondary {
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
}

.hero-feature-item svg {
    flex-shrink: 0;
}

/* Hero Visual avec cartes flottantes */
.hero-visual {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 3s ease-in-out infinite;
}

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

.floating-card-2 {
    top: 45%;
    right: 10%;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

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

.card-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
    border-radius: 12px;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.card-text span {
    font-size: 13px;
    color: #64748b;
}

/* Section Solutions Rapides */
.quick-solutions {
    padding: 80px 0;
    background: #fff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.solution-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(120, 2, 50, 0.12);
    border-color: #780232;
}

.solution-card-all {
    background: linear-gradient(135deg, #fffbf0 0%, #fef9e7 .1%);
    border-color: #fbbf24;
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-icon svg {
    color: #780232;
}

.solution-content {
    flex: 1;
}

.solution-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.solution-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.solution-arrow {
    font-size: 24px;
    color: #780232;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-arrow {
    transform: translateX(8px);
}

/* Section Features */
.home-features {
    padding: 100px 0;
    background: #ffffff;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
    color: #780232;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.section-header-center h2 {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-header-center p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #e2e8f0;
}

.feature-card-highlight {
    background: linear-gradient(135deg, #fffbf0 0%, #fef9e7 100%);
    border-color: #fbbf24;
}

.feature-card-highlight:hover {
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 12px;
}

.feature-card p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

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

    .hero-visual {
        min-height: 400px;
        margin-top: 60px;
    }

    .hero-image-placeholder {
        height: 400px;
    }

    .floating-card {
        padding: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-home {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

    .quick-solutions {
        padding: 60px 0;
    }

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

    .home-features {
        padding: 60px 0;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

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

    .feature-card {
        padding: 32px 24px;
    }
}

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

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .section-header-center h2 {
        font-size: 28px;
    }
}



/* Section Partenaires - Design Minimaliste */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(120, 2, 50, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.partners-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.partners-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
    color: #780232;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-header h2 {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.partners-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.partners-logos-wrapper {
    position: relative;
    z-index: 1;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    align-items: center;
    justify-items: center;
    margin-bottom: 48px;
}

.partner-logo {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 2, 50, 0.05), transparent);
    transition: left 0.5s ease;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #780232;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.partners-cta {
    text-align: center;
    padding: 40px;
    /*background: linear-gradient(135deg, #fffbf0 0%, #fef9e7 100%);*/
    /*border: 2px solid #fbbf24;*/
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.partners-cta p {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.partners-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #780232;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(120, 2, 50, 0.2);
}

.partners-cta-btn:hover {
    background: #a0034a;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(120, 2, 50, 0.3);
    color: #ffffff;
}

.partners-cta-btn svg {
    transition: transform 0.3s ease;
}

.partners-cta-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* Responsive Partenaires */
@media (max-width: 992px) {
    .partners-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 24px;
    }

    .partner-logo {
        width: 150px;
        height: 85px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-header {
        margin-bottom: 48px;
    }

    .partners-header h2 {
        font-size: 32px;
    }

    .partners-header p {
        font-size: 16px;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo {
        width: 100%;
        height: 80px;
    }

    .partners-cta {
        padding: 32px 24px;
    }

    .partners-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .partners-header h2 {
        font-size: 28px;
    }

    .partners-logos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partner-logo {
        width: 100%;
        height: 70px;
    }

    .partners-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
