/*--------------------------------------------------------------
# Imports
--------------------------------------------------------------*/
@import "template.css";
:root {
    --color-text: #1a1a1a;
    --color-green: #3ad58c;
    --background-box: #ffffff;
}

/*==== SECTION PRÉSENTATION ====*/

.presentation-pack {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch; /* égalise la hauteur des enfants */
    justify-content: center;
}

/* Partie gauche (texte d'accroche) */
.presentation-left {
    flex: 1 1 350px;
    max-width: 600px;
    background-color: #0b0c2a;
    color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.presentation-left h2 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
}

.presentation-left h2 span {
    color: var(--color-green);
}

.presentation-left p {
    font-size: 1.1rem;
    margin-top: 20px;
    opacity: 0.85;
}

/* Partie droite (la card) */
.presentation-right {
    flex: 1 1 350px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Carte */
.card-hover {
    background: var(--background-box);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%; /* étire la carte pour égaliser */
    display: flex;
    flex-direction: column;
}

.card-hover h2 {
    font-size: 40px;
    text-align: center;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.card-hover h2 span {
    color: var(--color-green);
}

.price {
    font-size: 40px;
    text-align: center;
    color: var(--color-text);
    font-weight: bold;
}

/*==== Responsive ====*/
@media (max-width: 1007px) {
    .price {
        font-size: 30px;
    }

    .presentation-left h2 {
        font-size: 2rem;
    }

}

@media (max-width: 864px) {
    .presentation-pack {
        flex-direction: column-reverse;
    }

    .presentation-left,
    .presentation-right {
        max-width: 100%;
    }

    .presentation-left h2 {
        font-size: 2rem;
    }

    .card-hover h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 425px) {
    .card-hover h2 {
        font-size: 27px;
    }

    .price {
        font-size: 23px;
    }
    .presentation-left h2 {
        font-size: 1.6rem;
    }
}

.price-detail {
    font-size: 20px;
    text-align: center;
    color: var(--color-text);

}

.custom-separator {
    width: 100%;
    height: 2px;
    margin: 15px 0;
    border-radius: 1rem;
    background: linear-gradient(346deg, #0f4585 0%, #3ad58c 100%);
}

/* Liste des services */
.card-hover ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    color: var(--color-text);
    flex-grow: 1; /* pousse le bouton vers le bas */
}

.card-hover ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
}

.card-hover ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
}

.option-title {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
    color: var(--color-text);
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.option-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    color: var(--color-text);
}

.option-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.85;
}

.option-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #888;
    font-weight: bold;
}


/* Bouton CTA */
.cta-button {
    display: block;
    margin-top: auto;
    background-color: #2a48ff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #0f4585;
}

.cta-button {
    position: relative;
    overflow: hidden;
    font-size: 1.1em;
    transition: background 0.3s;
}

.avantages-list {
    margin-top: 15px;
    padding-left: 20px;
    line-height: 1.6;
}

.signature {
    margin-top: 20px;
    font-style: italic;
    color: #aaa;
}

.note-rassurance {
    font-size: 0.9em;
    color: #666;
    margin: 12px auto;
}
