@charset "UTF-8";

/*!
 * Exponent - 1.1.1
 * Copyright (c) 2026 2A Digital <info@2adigital.site>
 * L’autorisation est accordée à toute personne qui en obtient une copie de ce style.
 * Il est strictement interdit de publier(vendre) sans l'autorisation préalable des auteurs.
 * Des spécialistes sont à l'origine des documents fournis.
*/

/* Avantages */
.advantage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.advantage.four {
    grid-template-columns: repeat(4, 1fr);
}

.advantage.three {
    grid-template-columns: repeat(3, 1fr);
}

.advantage.two {
    grid-template-columns: repeat(2, 1fr);
}

.advantage .card {
    position: relative;
    background: white;
    padding: 50px 35px 45px 35px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    text-align: left;
    overflow: hidden;
    border: 1px solid var(--secondary);
}

.advantage .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    background-color: var(--secondary-dark);
    color: var(--light);
}

.advantage .card:hover h3 {
    color: var(--light) !important;
}

.advantage .number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.12;
    line-height: 1;
    transition: 0.3s ease;
}

.advantage .card:hover .number {
    opacity: 0.38;
    transform: scale(1.05);
}

.advantage .card h3 {
    position: relative;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    z-index: 2;
}

.advantage .card p {
    position: relative;
    font-size: 0.96rem;
    color: var(--text-light);
    line-height: 1.7;
    z-index: 2;
}

/* Pricing */

.pricing-section {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pricing-section p {
    color: var(--text-light);
    margin-bottom: 50px;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-section .card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    width: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.pricing-section .card.pro {
    background: linear-gradient(145deg, #ffffff, #f4f3ff);
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-section .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
}

.pricing-section .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-section .price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-section .features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-section .features li {
    margin-bottom: 15px;
    padding-bottom: 7px;
    color: var(--text-light);
    border-bottom: 1px solid #e2e2e2;
}

.pricing-section .features i {
    color: var(--primary);
    margin-right: 10px;
}

/* Other pricing */

.green .s-price {
    background-color: var(--secondary-dark);
    color: var(--light) !important;
}

.orange .s-price {
    background-color: var(--primary-shiny);
}

.s-price {
    background: #022d1c0d
}

.s-price-orange {
    background: #f6d4a42e
}

.s-amount-reduce {
    font-weight: 700;
    font-size: 40px;
    background-color: var(--light);
    padding-left: 10px;
    padding-right: 10px;
    color: #000;
}

/* Countdow and cta */
.cta-urgent {
    background: linear-gradient(135deg, #ff9f1c, #ffbf69);
    /* background: linear-gradient(135deg, #ffd21c, #ffdc69); */
    position: relative;
    overflow: hidden;
}

/* Effet pulsation */
.cta-urgent::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse-bg 3s infinite;
}

@keyframes pulse-bg {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

/* Boxes countdown */
.time-box {
    /* background: rgba(0, 0, 0, 0.2); */
    background: var(--secondary-dark);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
    color: #fff;
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.time-box small {
    font-size: 0.8rem;
    opacity: 0.8;
}