/* #region Base */
.omnicanal-section {
    padding: 1rem;
    position: relative;
    overflow: visible;
    margin: 2rem auto;
    background: linear-gradient(120deg, #FFFBF5 0%, #FFF5E1 100%);
    overflow: hidden;
}

.omnicanal-section .omnicanal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .omnicanal-section .omnicanal-content {
        grid-template-columns: 1fr 0.8fr;
        gap: 1.5rem;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .omnicanal-section .omnicanal-content {
        gap: 2rem;
    }
}

/* #endregion */

/* #region Text Highlights & Animations */
.omnicanal-section .highlight-year {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.05em;
    position: relative;
    display: inline-block;
}

.omnicanal-section .highlight-brand {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.1em;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(248, 152, 0, 0.3);
}

.omnicanal-section .highlight-text {
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.omnicanal-section .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.omnicanal-section p:hover .highlight-text::after {
    transform: scaleX(1);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Fade in animation for paragraphs */
.omnicanal-section .omnicanal-text p {
    animation: fadeInUp 0.6s ease-out backwards;
}

.omnicanal-section .omnicanal-text p.first-paragraph {
    animation-delay: 0.1s;
}

.omnicanal-section .omnicanal-text p.extra-paragraph:nth-of-type(2) {
    animation-delay: 0.2s;
}

.omnicanal-section .omnicanal-text p.extra-paragraph:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* #endregion */

/* #region Card Noire */
.omnicanal-section .omnicanal-card {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 1.25rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .omnicanal-section .omnicanal-card {
        padding: 1.25rem 1rem;
    }

    .omnicanal-section {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    }
}

/* #endregion */

/* #region Text */
.omnicanal-section .omnicanal-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.omnicanal-section .omnicanal-text .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.omnicanal-section .omnicanal-text h2 {
    font-size: 1.5rem;
    margin: 0 0 0.75rem 0;
    color: #ffffff;
    line-height: 1.3;
    font-weight: 600;
}

@media (min-width: 768px) {
    .omnicanal-section .omnicanal-text h2 {
        font-size: 2rem;
    }
}

.omnicanal-section .omnicanal-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Hide extra paragraphs on mobile by default */
@media (max-width: 768px) {
    .omnicanal-section .omnicanal-text .extra-paragraph {
        display: none;
    }

    .omnicanal-section .omnicanal-text .extra-paragraph.expanded {
        display: block;
        animation: fadeIn 0.3s ease-in;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* "Lire plus" link styles */
.omnicanal-read-more-link {
    align-self: flex-start;
    color: #f89a00;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
    display: inline-block;
}

.omnicanal-read-more-link:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

@media (min-width: 769px) {
    .omnicanal-read-more-link {
        display: none;
    }

    .omnicanal-section .omnicanal-text .extra-paragraph {
        display: block;
    }
}

/* #endregion */

/* #region Testimonial Author */
.omnicanal-section .testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.omnicanal-section .testimonial-author .author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.omnicanal-section .testimonial-author .author-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.75rem 0;
}

.omnicanal-section .testimonial-author .author-rating span {
    color: var(--color-primary);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

/* #endregion */

/* #region Testimonial Badge */
.omnicanal-section .testimonial-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .omnicanal-section .testimonial-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        align-self: flex-start;
    }
}

.omnicanal-section .badge-avatars {
    display: flex;
    align-items: center;
}

.omnicanal-section .badge-avatars .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    object-fit: cover;
}

.omnicanal-section .badge-avatars .avatar:first-child {
    margin-left: 0;
}

.omnicanal-section .badge-text {
    font-size: 0.75rem;
    color: #333333;
    margin: 0;
    line-height: 1.4;
}

.omnicanal-section .badge-text strong {
    font-weight: 700;
    color: #000000;
}

/* #endregion */

/* #region Visual */
.omnicanal-section .omnicanal-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    min-height: 400px;
}

.omnicanal-section .omnicanal-visual img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 160% !important;
    padding-left: 4rem;
    margin-bottom: -300px;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.7));
}


@media (min-width: 1200px) {
    .omnicanal-section .omnicanal-visual {
        min-height: 280px;
        /* Réduit depuis 350px */
    }

    .omnicanal-section .omnicanal-visual img {
        /* Réduit depuis 140% */
        padding-left: 2rem;
    }
}


@media (min-width: 992px) {
    .omnicanal-section .omnicanal-visual {
        min-height: 280px;
        /* Réduit depuis 350px */
    }

    .omnicanal-section .omnicanal-visual img {
        height: 100%;
        padding-left: 3rem;
    }
}

@media (max-width: 991px) {

    .omnicanal-section .omnicanal-visual img,
    .omnicanal-section .omnicanal-visual {
        display: none;
    }
}

@media (max-width: 768px) {

    .omnicanal-section .omnicanal-content {
        gap: 0;
    }

}

/* #endregion */

/* #region Stats Section */
.omnicanal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .omnicanal-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem 0;
    }
}

@media (max-width: 480px) {
    .omnicanal-stats {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #0d0d0d 0%, #2a2a2a 100%);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(248, 152, 0, 0.3);
}

.stat-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(248, 152, 0, 0.3);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.25rem 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }
}

/* #endregion */