* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --grad1: #b9ded9;
    --grad2: #fee9f2;
    --grad3: #ce9dd9;
    --color-1: #cc7b9a;
    --color-2: #8c6097;
    --color-white: #ffffff;
    --color-black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.4)
}

body {
    font-family: Quicksand, sans-serif;
    color: #333;
    background: linear-gradient(135deg, #ebfbf8, #fff5f9, #f1e9f3, #ebfbf8);
    overflow-x: hidden
}

.logo,
h1,
h2,
h3 {
    font-family: "Playfair Display", serif
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999
}

#header {
    width: 90%;
    margin: auto;
    background: linear-gradient(to right, rgba(255, 255, 255, .75) 8%, rgba(255, 255, 255, .15) 92%);
    backdrop-filter: blur(10px);
    transition: background-color .3s ease;
    border-radius: 30px;
    margin-top: 46px;
}

@media (max-width: 767px) {
    #header {
        margin-top: 80px !important;
        /* ajuste la valeur selon ce qu'il faut pour dégager ton message */
    }
}

#header.scrolled {
    background-color: rgba(255, 255, 255, .36)
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 15px
}

.navbar .logo {
    font-size: 1.4rem;
    color: var(--color-2);
    transition: color .3s;
    display: flex;
    gap: .5rem;
    text-decoration: none
}

.navbar .logo:hover {
    color: var(--color-1)
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: color .3s
}

#header.scrolled .nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #555;
    transition: color .3s
}

.nav-links a:hover {
    color: var(--color-1)
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url(img/bg2.jpg) no-repeat center/cover;
    padding: 0 1rem;
    filter: brightness(1.1) contrast(1.1)
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-top: 80px;
    color: #fff
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-in-out
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    animation: fadeInUp 1.5s ease-in-out
}

.cta-btn {
    position: relative;
    display: inline-block;
    color: #fff;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    padding: .9rem 1.8rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s ease;
    overflow: hidden;
    animation: fadeInUp 2s ease-in-out;
    font-size: 1.1em
}

.cta-btn:hover {
    background: var(--color-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-20deg);
    transition: all .5s ease
}

.cta-btn:hover::before {
    left: 200%
}

@keyframes fadeInUp {
    from {
        opacity: .2;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.wave {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden
}

.wave svg {
    width: 100%;
    height: 100%;
    display: block
}

section {
    padding: 3rem 1rem;
    position: relative
}

.section-content,
.inscription-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-2);
    animation: fadeInUp 1s ease-in-out
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #555;
    animation: fadeInUp 1.5s ease-in-out
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem
}

.glass-card {
    width: 320px;
    min-height: 220px;
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1.8rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
    color: #333;
    transition: transform .3s ease, box-shadow .3s;
    animation: fadeInUp 1s ease-in-out
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15)
}

.glass-card h3 {
    margin-bottom: .5rem;
    color: var(--color-1);
    font-size: 1.4rem
}

.glass-card p {
    font-size: 1rem;
    line-height: 1.5
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem
}

.service-card {
    width: 400px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    animation: fadeInUp 1s ease-in-out
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15)
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.service-card h3 {
    margin: 1rem 0 .5rem;
    color: var(--color-1);
    font-size: 1.3rem
}

.service-card p {
    padding: 0 1.2rem 1.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.5
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem
}

.testimonial {
    width: 320px;
    background: rgba(255, 255, 255, .9);
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    transition: transform .3s ease;
    animation: fadeInUp 1s ease-in-out
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15)
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem
}

.testimonial span {
    display: block;
    text-align: right;
    font-weight: 700;
    color: var(--color-1);
    font-size: 1rem
}

.contact-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-in-out
}

.form-group label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 600;
    color: var(--color-2)
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .3s
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-1);
    outline: 0
}

.send-btn {
    background: var(--color-2);
    color: #fff;
    border: none;
    padding: 1rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .2s ease
}

.send-btn:hover {
    background: var(--color-1);
    transform: scale(1.05)
}

footer {
    background: var(--color-2);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center
}

footer p {
    margin: .3rem 0
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 .5rem;
    transition: opacity .3s
}

.social-links a:hover {
    opacity: .8
}

@media (max-width:768px) {
    .hero-content h1 {
        font-size: 2.5rem
    }

    .glass-card,
    .service-card,
    .testimonial {
        width: 90%
    }
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer
}

.menu-line {
    height: 3px;
    width: 100%;
    background-color: var(--color-2);
    transition: all .3s ease
}

@media (max-width:768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: rgba(255, 255, 255, .9);
        display: none;
        padding: 1rem;
        border-radius: 30px
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        color: var(--color-1)
    }

    .menu-icon {
        display: flex
    }

    .nav-links.active {
        display: flex;
        color: var(--color-1)
    }
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--color-1);
    z-index: 9999
}

.why-mysti {
    background: var(--glass-bg);
    padding: 2rem 3rem 0;
    border-radius: 20px;
    text-align: center;
}

.why-mysti h3 {
    font-size: 2rem;
    color: var(--color-2);
    margin-bottom: 1.5rem;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap
}

.why-item {
    width: 280px;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--grad1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15)
}

.why-item h4 {
    font-size: 1.4rem;
    color: var(--color-1);
    margin-top: 1rem
}

.why-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6
}

.why-item svg {
    width: 40px;
    height: 40px;
    color: var(--color-2)
}

.why-item {
    width: 280px;
    padding: 1.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
    color: #333
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12)
}

.why-item h4 {
    font-size: 1.5rem;
    color: var(--color-2);
    margin-top: 1rem;
    font-weight: 700
}

.why-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6
}

.why-item svg {
    width: 45px;
    height: 45px;
    color: var(--color-1);
    background: rgba(255, 255, 255, .2);
    padding: 10px;
    border-radius: 50%
}

#inscription {
    text-align: center
}

.inscription-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-2);
    animation: fadeInUp 1s ease-in-out;
}

.highlight {
    color: var(--color-1);
    font-weight: 700
}

.inscription-content p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto
}

.inscription-steps {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap
}

.step {
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    text-align: center;
    width: 250px;
    transition: transform .3s ease, box-shadow .3s ease
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12)
}

.step p {
    font-size: 1.1rem;
    color: #444;
    margin-top: .8rem
}

.inscription-steps svg {
    width: 45px;
    height: 45px;
    color: var(--color-1)
}

.bonus-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    color: var(--color-2);
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 1rem
}

.bonus-list svg {
    width: 30px;
    height: 30px;
    color: var(--color-1)
}

.inscription-form {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .45);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08)
}

.form-group {
    margin-bottom: 1.5rem
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-2);
    margin-bottom: .5rem;
    font-size: 1.1rem
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgb(230 230 230);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, .3);
    color: #333
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-2)
}

.form-checkbox input {
    width: 18px;
    height: 18px
}

.cta-btn {
    display: inline-block;
    color: #fff;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    margin-top: 1rem
}

.cta-btn:hover {
    background: var(--color-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

.offer-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .3));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .1);
    text-align: center;

    margin: 2rem auto;
    border: 1px solid rgba(255, 255, 255, .3)
}

.offer-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-2);
    margin-bottom: 1rem
}

.bonus-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    color: var(--color-2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem auto;
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: 1rem;
    transition: all .3s ease
}

.bonus-list li:hover {
    background: rgba(255, 255, 255, .35);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08)
}

.bonus-list svg {
    width: 32px;
    height: 32px;
    color: var(--color-1)
}

footer {
    background: linear-gradient(135deg, color-mix(in oklab, #ab465f 70%, black), color-mix(in oklab, #5dc0ff 70%, black));
    color: #fff;
    padding: 40px 20px;
    text-align: center
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto
}

.footer-column {
    width: 30%;
    min-width: 250px;
    text-align: left
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase
}

.footer-column p,
.footer-column ul {
    font-size: .9rem
}

.footer-column ul {
    list-style: none;
    padding: 0
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color .3s
}

.footer-column ul li a:hover {
    color: #ffb6c1
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, .2);
    color: #fff
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bdd1d1;
}

.contact-form textarea {
    height: 80px
}

.contact-form button {
    background: #cc7b9a;
    border: none;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    border-radius: 5px
}

.contact-form button:hover {
    background: #a85f80
}

.footer-bottom {
    margin-top: 30px;
    font-size: .8rem
}

@media (max-width:768px) {
    .footer-container {
        flex-direction: column;
        text-align: center
    }

    .footer-column {
        width: 100%;
        margin-bottom: 20px
    }

    .contact-form form {
        align-items: center
    }

    .contact-form button,
    .contact-form input,
    .contact-form textarea {
        max-width: 90%
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    text-align: left
}

.footer-links li {
    margin-bottom: 8px
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: .9rem;
    transition: color .3s ease, transform .2s ease;
    display: inline-block
}

.footer-links a:hover {
    color: #ffb6c1;
    transform: translateX(4px)
}

.logo {
    font-family: Rowdies, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #e0c3fc;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: transform .3s ease-in-out;
    font-family: Rowdies, serif;
    font-weight: 700;
    font-style: normal
}

.logo .highlight {
    color: #d4a5ff
}

.logo:hover {
    transform: scale(1.05)
}

#guides-exception {
    padding: 4rem 1rem;
    text-align: center
}

#guides-exception .section-content h2 {
    font-size: 2rem;
    color: var(--color-2);
    margin-bottom: 1rem
}

#guides-exception .section-content p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem auto
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem
}

.service-card {
    width: 400px;
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15)
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--color-1);
    margin-bottom: .5rem
}

.service-card .expert-title {
    font-size: 1rem;
    color: var(--color-2);
    font-weight: 600;
    margin-bottom: .8rem
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6
}

.service-card blockquote {
    font-style: italic;
    color: var(--color-1);
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700
}

@media (max-width:768px) {
    .services-cards {
        flex-direction: column;
        align-items: center
    }

    .service-card {
        width: 90%
    }

    .nav-links a {
        color: #261f28 !important
    }
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all .8s ease
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: color .3s ease
}

.nav-links a.active {
    color: #fff;
    font-weight: 700
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 50%;
    height: 3px;
    background: var(--color-1);
    transition: width .3s ease, left .3s ease;
    transform: translateX(-50%);
    border-radius: 2px
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: auto
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%
}

.carousel {
    display: flex;
    transition: transform .5s ease-in-out
}

.service-card {
    flex: 0 0 calc(100% / 3);
    padding: 1rem;
    text-align: center
}

.carousel-next,
.carousel-prev {
    background: rgba(255, 255, 255, .6);
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
}

.carousel-prev {
    left: -40px
}

.carousel-next {
    right: -40px
}

@media (max-width:1024px) {
    .service-card {
        flex: 0 0 50%
    }
}

@media (max-width:768px) {
    .service-card {
        flex: 0 0 100%
    }

    .carousel-next,
    .carousel-prev {
        top: 60%
    }
}

.service-card h3 {
    margin-bottom: 0 !important
}

.service-card .expert-title {
    margin-bottom: 0 !important
}

.service-card p {
    margin-bottom: 0 !important
}

.service-card blockquote {
    margin-top: 0 !important
}

@keyframes waveMove {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(15px)
    }

    100% {
        transform: translateX(0)
    }
}

.animated-wave {
    position: relative;
    width: 100%;
    height: auto
}

.wave1 {
    animation: waveMove 6s infinite ease-in-out
}

.wave2 {
    animation: waveMove 8s infinite ease-in-out reverse;
    opacity: .6
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease-out, transform .8s ease-out;
    will-change: opacity, transform
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

@keyframes zoomGlow {
    0% {
        opacity: 0;
        transform: scale(.8);
        text-shadow: 0 0 0 rgba(255, 255, 255, .2)
    }

    50% {
        opacity: .5;
        transform: scale(1.05);
        text-shadow: 0 0 10px rgba(255, 255, 255, .3)
    }

    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 255, 255, .6)
    }
}

.hero-content h1 {
    opacity: 0;
    transform: scale(.8);
    animation: zoomGlow 1.5s ease-out forwards .5s
}

.offer-box {
    background: linear-gradient(135deg, color-mix(in oklab, #ab465f 70%, black), color-mix(in oklab, #5dc0ff 70%, black));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .1);
    text-align: center;
    margin: 2rem auto;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    position: relative
}

.offer-box h3,
.offer-box li,
.offer-box p {
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, .6)
}

.offer-box h3 {
    color: #fff !important;
    text-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important
}

.offer-box ul li {
    background: rgba(0, 0, 0, .4);
    border-radius: 12px;
    padding: 1rem;
    transition: all .3s ease;
    backdrop-filter: blur(6px)
}

.star {
    position: fixed;
    width: 10px;
    height: 10px;
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle .8s ease-out;
    pointer-events: none;
    z-index: 10000
}

@keyframes twinkle {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .8;
        transform: scale(1.2)
    }

    100% {
        opacity: 0;
        transform: scale(.8)
    }
}

.logo-text {
    font-size: 1.7rem;
    color: var(--color-2);
    font-family: Italianno, cursive;
    font-weight: 700;
    margin-right: 20px;
}

.service-card {
    width: 350px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
    text-align: center;
    opacity: .9
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    opacity: 1
}




/* Styles spécifiques pour le popup */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    /* Fond semi-transparent */
    overflow: auto;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    /* Flou d'arrière-plan pour les navigateurs le supportant */
}

.popup-content {
    background: linear-gradient(135deg, #ebfbf8, #fff5f9, #f1e9f3, #ebfbf8);
    /* Fond légèrement transparent */
    margin: 20px auto;

    border-radius: 10px;

    max-width: 700px;
    /* Largeur maximale du popup */
    box-shadow: 0 0 24px #000000;
    transform: scale(0.95);
    /* Légèrement plus petit pour l'animation */
    transition: transform 0.3s, opacity 0.3s;
    /* Douce transition pour l'apparition */
    color: black;
}

#popupContent {
    padding: 2rem;
    width: 96%;
    margin: auto;
}

.close {
    color: var(--color-1);
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: var(--color-2);
    /* Couleur plus sombre au survol */
    text-decoration: none;
    cursor: pointer;
}

/* Styles pour les titres, textes et boutons du popup */
.popup h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #bb5b80;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-in-out;
}

.popup h3 {
    color: #63306f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@keyframes glow {
    from {
        text-shadow:
            3px 3px 5px rgba(0, 0, 0, 0.7),
            0 0 15px rgba(255, 255, 255, 0.5);
    }

    to {
        text-shadow:
            5px 5px 10px rgba(0, 0, 0, 0.9),
            0 0 20px rgba(255, 255, 255, 1);
    }
}

.popup p {
    color: var(--color-black);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.popup button {
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    /* Utilisez la couleur principale de votre site */
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup button:hover {
    background: var(--color-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
        /* Assombrir le bouton au survol */
}

/* Réactivité */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 1.5rem;
    }

    .close {
        right: 0.5rem;
        top: 0.5rem;
    }
}

/* Animation d'ouverture/fermeture du popup */
@keyframes popup-in {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popup-out {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Ajouter ces styles lorsque le popup est ouvert/fermé pour animer */
.popup.open .popup-content {
    animation: popup-in 0.3s forwards;
}

.popup.close .popup-content {
    animation: popup-out 0.3s forwards;
}

.popup-content ul {
    margin-left: 3rem;
    margin-bottom: 2rem;
}

.gradient-bg {
    background: linear-gradient(135deg, #6e45e2 0%, #89d4cf 100%);
}

.promo-badge {
    animation: pulse 2s infinite;
    text-align: center;
    padding: 10px;
    background: red;
    color: white;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


.t-slider {
    --card-gap: 1.25rem;
}

.t-viewport {
    position: relative;
}

.t-track {
    display: flex;
    gap: var(--card-gap);
    transition: transform .45s ease;
    flex-wrap: nowrap;
}

/* Carte */
.t-card {
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(6px);
    border: 1px solid #ebe7f0;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px rgba(17, 12, 46, .06);
    padding: 1.25rem;
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.t-avatar {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 9999px;
    box-shadow: 0 6px 16px rgba(17, 12, 46, .12);
    margin-bottom: .75rem;
}

.t-avatar-lg {
    width: 112px;
    height: 112px;
}

.t-stars {
    color: #f59e0b;
    margin-bottom: .5rem;
}

.t-quote {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: .5rem;
}

.t-text {
    color: #4b5563;
}

.t-text-long {
    line-height: 1.6;
}

.t-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    font-weight: 600;
}

.t-meta-left {
    justify-content: flex-start;
}

.t-name {
    color: #6b21a8;
}

.t-verified {
    color: #059669;
    font-weight: 700;
    font-size: .9em;
    display: flex;
    align-items: center;
    gap: .25rem;
}

/* Story layout interne (garde design mais text-left sur desktop) */
.t-story .t-story-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 16px;
    align-items: start;
    text-align: left;
}

@media (max-width: 640px) {
    .t-story .t-story-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .t-story .t-meta {
        justify-content: center;
    }
}

/* Flèches */
.t-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .95);
    border: 1px solid #e5e7eb;
    color: #4b5563;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 9999px;
    box-shadow: 0 8px 20px rgba(17, 12, 46, .08);
    cursor: pointer;
    z-index: 5;
}

.t-prev {
    left: -12px;
}

.t-next {
    right: -12px;
}

.t-arrow:hover {
    background: #fff;
    color: #111827;
}

/* Dots */
.t-dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: .9rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: #e5e7eb;
}

.t-dot[aria-current="true"] {
    background: #7c3aed;
}

.date-error {
    color: #ff4444;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}

.birthdate-fields input.invalid {
    border-color: #ff4444;
    animation: shake 0.5s;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.switch input:checked+span {
    background: #8a5cff;
}

.switch input:checked+span+span {
    transform: translateX(22px);
}

/* ===== Badge preuve sociale ===== */
/* === Social Proof Badge v2 (propre, responsive) === */
.spb {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9999;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
    max-width: 380px;
    width: clamp(280px, 44vw, 380px);
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #ede9fe;
    box-shadow: 0 14px 30px rgba(17, 12, 46, .10);
    color: #111827;
    transition: transform .25s ease, box-shadow .2s ease, width .25s ease, left .25s ease, right .25s ease;
    backdrop-filter: saturate(140%) blur(6px);
    font: 500 14px/1.35 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

.spb__close {
    position: absolute;
    top: 6px;
    right: 8px;
    border: 0;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}

.spb__close:hover {
    color: #111827;
}

.spb__row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.spb__row--top {
    flex-wrap: wrap;
}

.spb__row--mid {
    gap: 12px;
    flex-wrap: wrap;
}

.spb__stars {
    color: #f59e0b;
    letter-spacing: .5px;
    font-size: 14px;
}

.spb__text {
    color: #374151;
    font-weight: 600;
    font-size: clamp(13px, 1.4vw, 14px);
}

.spb__pill {
    background: #f5e9ff;
    color: #6d28d9;
    border: 1px solid #e9d5ff;
    padding: 3px 8px;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 12px;
}

.spb__left strong {
    color: #6d28d9;
}

.spb__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    color: black !important;
    border: 1px solid #7c3aed33;
    box-shadow: 0 8px 18px rgba(124, 58, 237, .25);
}

.spb__cta:hover {
    filter: brightness(.98);
}

.spb__cta-ico {
    font-size: 16px;
}

.spb__meter {
    height: 6px;
    border-radius: 9999px;
    overflow: hidden;
    border: 1px solid #ede9fe;
    background: #f3f4f6;
}

#spb-meter {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    transition: width .35s ease;
}

/* États */
.spb--hidden {
    transform: translateY(140%);
}

.spb--compact {
    /* état initial */
}

.spb--cta {
    /* Desktop : compact+ */
    max-width: 400px;
}

/* Mobile : full width, jamais tronqué */
@media (max-width: 640px) {

    .spb,
    .spb.spb--cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
    }

    .spb__row--top,
    .spb__row--mid {
        flex-wrap: wrap;
    }

    .spb__text {
        flex: 1 1 100%;
    }
}

/* Accessibilité motion */
@media (prefers-reduced-motion: reduce) {
    .spb {
        backdrop-filter: none;
        transition: none;
    }
}

.bonus-list svg {
    flex-shrink: 0;
    /* empêche le recadrage */
    align-self: center;
    /* aligne au centre verticalement */
    width: 32px;
    height: 32px;
}




/* Couleurs EXACTES de ta wave */
:root {
    --wave-c1: #F78DA7;
    --wave-c2: #8ED1FC;
}

/* On fait glisser un calque, l’anim ne se coupe pas */
@keyframes waveSlide {
    0% {
        transform: translateX(-50%);
    }

    50% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Boutons existants, SANS toucher au HTML */
html body .cta-btn {
    position: relative;
    overflow: hidden;
    /* respecte le border-radius */
    color: black !important;
    background: transparent !important;
    /* on neutralise tes anciens backgrounds */
    background-image: none !important;
    z-index: 0;
    /* crée un stacking context */
}

/* Calque dégradé ANIMÉ placé DERRIÈRE le texte */
html body .cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 200%;
    /* plus large pour glisser */
    border-radius: inherit;
    background: linear-gradient(90deg, var(--wave-c1), var(--wave-c2));
    animation: waveSlide 4s linear infinite;
    /* même tempo que tes waves */
    will-change: transform;
    pointer-events: none;
    z-index: -1;
    /* <-- le texte repasse AU-DESSUS */
}

/* Hover : on garde l’élévation sans casser l’anim */
html body .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .20);
}

/* Optionnel : si un autre :hover remet un fond fixe ailleurs */
html body .cta-btn:hover,
html body .cta-btn:focus {
    background: transparent !important;
    background-image: none !important;
}

/* HOVER SEULEMENT — pas de transparence, on inverse le dégradé et on bloque le slide */
html body .cta-btn:hover {
    background: transparent !important;
    /* on ne remet pas de couleur fixe */
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .20);
    color: black;
    /* texte bien lisible */
}

html body .cta-btn:hover::before {
    left: 0 !important;
    /* annule ton left:200% (qui faisait "disparaître") */
    transform: none !important;
    /* annule le skew/slide existant */
    width: 200% !important;
    /* garde le calque large pour l’anim */
    background-image: linear-gradient(90deg, var(--wave-c2), var(--wave-c1)) !important;
    /* inversion */
    opacity: 1 !important;
    /* plein, pas transparent */
    z-index: -1 !important;
    /* reste derrière le texte */
    transition: none !important;
    /* empêche une transition résiduelle de le décaler */
}

/* --- Ombre par défaut + animation bombée (hors hover) --- */
@keyframes btnPuff {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
    }

    50% {
        transform: translateY(-1px) scale(1.03);
        /* effet "bombe" très léger */
        box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
    }
}

/* état NORMAL du bouton (sans survol) */
html body .cta-btn {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
    /* ombre par défaut */
    will-change: transform, box-shadow;
    /* perf */
    transform: translateZ(0);
    /* anti-flou GPU */
}

/* on joue l’animation seulement quand il N’EST PAS en hover */
html body .cta-btn:not(:hover) {
    /* on garde ton fadeInUp et on ajoute la pulsation bombée */
    animation: fadeInUp 2s ease-in-out, btnPuff 5s ease-in-out infinite;
}

/* (sécurité) keyframes si pas déjà en place */
@keyframes waveSlide {
    0% {
        transform: translateX(-50%);
    }

    50% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes btnPuff {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
    }

    50% {
        transform: translateY(-1px) scale(1.03);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
    }
}

/* même rendu que .cta-btn : dégradé animé #F78DA7 → #8ED1FC derrière le texte */
html body .spb__cta {
    position: relative;
    overflow: hidden;
    z-index: 0;
    /* texte au-dessus */
    color: black !important;

    /* on neutralise le fond violet statique existant */
    background: transparent !important;
    background-image: none !important;

    /* ombre par défaut (comme cta-btn amélioré) */
    box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

/* calque dégradé animé (identique à cta-btn) */
html body .spb__cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 200%;
    border-radius: inherit;
    background-image: linear-gradient(90deg, var(--wave-c1), var(--wave-c2));
    animation: waveSlide 4s linear infinite;
    /* même tempo que tes waves */
    will-change: transform;
    pointer-events: none;
    z-index: -1;
    /* derrière le texte */
}

/* “bombe” légère en continu quand PAS en hover (comme cta-btn) */
html body .spb__cta:not(:hover) {
    animation: btnPuff 5s ease-in-out infinite;
}

/* hover: on garde ton filtre + on inverse juste le dégradé, rien d’autre */
html body .spb__cta:hover::before {
    background-image: linear-gradient(90deg, var(--wave-c2), var(--wave-c1)) !important;
    opacity: 1 !important;
    z-index: -1 !important;
}