@keyframes shine {
    to {
        background-position: 200%center
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }
}

@keyframes violet-shimmer {
    0% {
        background-position: -100%center
    }

    to {
        background-position: 100%center
    }
}



:root {
    --violet: #482664;
    --lilas: #8d68b1;
    --lilas-clair: #b99bd6;
    --lilas-pale: #f4eefa;
    --blanc: #fff;
    --texte: #241238;
    --gris: #2f1a48
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body,
nav {
    background: var(--blanc)
}

body {
    font-family: "Inter", sans-serif;
    color: var(--texte);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--lilas-clair);
    justify-content: space-between;
    padding: .5rem 2rem
}

.nav-logo,
.nav-logo-svg-wrap,
nav {
    display: flex;
    align-items: center
}

.nav-logo {
    gap: clamp(.4rem, 2vw, .7rem);
    text-decoration: none;
    background: 0;
    border: 0;
    padding: 0
}

.nav-logo-svg-wrap {
    background: var(--blanc);
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(72, 38, 100, .13);
    padding: clamp(3px, 1vw, 4px) clamp(4px, 1.5vw, 6px);
    justify-content: center;
    flex-shrink: 0
}

.nav-logo-svg-wrap svg {
    height: clamp(36px, 8vw, 55px);
    width: auto;
    display: block
}

@media (max-width:380px) {
    .nav-logo-svg-wrap svg {
        height: 32px
    }
}

.nav-logo:hover .nav-logo-svg-wrap {
    box-shadow: 0 2px 12px rgba(72, 38, 100, .22)
}

.nav-links {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(.6rem, 2vw, 1.5rem);
    list-style: none
}

.nav-links a {
    text-decoration: none;
    color: var(--gris);
    font-size: clamp(.72rem, 1.6vw, .9rem);
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--lilas)
}

.nav-dropdown {
    position: relative
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: baseline
}

.nav-dropdown-arrow {
    font-size: .7rem;
    margin-left: .25rem;
    transition: transform .2s;
    display: inline-block
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg)
}

.nav-dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--blanc);
    border: 1px solid var(--lilas-clair);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(72, 38, 100, .18);
    min-width: 190px;
    padding: .4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 200
}

.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(2px)
}

.nav-dropdown-menu li a {
    display: block;
    padding: .6rem .8rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--gris)
}

.nav-dropdown-menu li a:hover {
    background: var(--lilas-pale);
    color: var(--violet)
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #2bbf5c;
    border-radius: 50%;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 2px 8px rgba(43, 191, 92, .35);
    flex-shrink: 0
}

.nav-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(43, 191, 92, .45)
}

.mobile-menu.open,
.nav-whatsapp svg {
    display: block
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: 0;
    border: 0;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--violet);
    border-radius: 2px;
    transition: all .3s
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu,
.mobile-menu a {
    border-bottom: 1px solid var(--lilas-clair)
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanc);
    padding: .5rem 0;
    z-index: 99;
    box-shadow: 0 8px 20px rgba(141, 104, 177, .08)
}

.mobile-menu a {
    display: block;
    padding: .85rem 1.5rem;
    text-decoration: none;
    color: var(--texte);
    font-size: 1rem;
    font-weight: 500;
    transition: background .15s, color .15s
}

.mobile-menu a:last-child {
    border-bottom: 0
}

.mobile-menu a:hover {
    background: var(--lilas-pale);
    color: var(--violet)
}

.mobile-accordion,
.mobile-accordion-panel a {
    border-bottom: 1px solid var(--lilas-clair)
}

.mobile-accordion-row {
    display: flex;
    align-items: stretch
}

.mobile-accordion-link {
    flex: 1;
    border-bottom: 0 !important
}

.mobile-accordion-toggle {
    background: 0;
    border: 0;
    border-left: 1px solid var(--lilas-clair);
    padding: 0 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.accordion-arrow {
    font-size: .8rem;
    color: var(--violet);
    transition: transform .25s ease
}

.mobile-accordion-toggle.open .accordion-arrow {
    transform: rotate(180deg)
}

.mobile-accordion-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--lilas-pale);
    transition: max-height .3s ease
}

.mobile-accordion-panel.open {
    max-height: 160px
}

.mobile-accordion-panel a {
    display: block;
    padding: .75rem 1.5rem .75rem 2.5rem;
    text-decoration: none;
    color: var(--texte);
    font-size: .92rem;
    font-weight: 500;
    transition: background .15s, color .15s
}

.mobile-accordion-panel a:last-child,
table.tarifs tr:last-child td {
    border-bottom: 0
}

.mobile-accordion-panel a:hover {
    background: var(--blanc);
    color: var(--violet)
}

.hero {
    background: var(--blanc);
    padding: 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    max-width: 900px;
    margin: 1.2rem auto 0;
    position: relative;
    border: 1.5px solid var(--lilas-clair)
}

.btn-primary {
    display: inline-block;
    background: #8d68b1;
    color: var(--blanc);
    padding: clamp(.5rem, 2vw, .6rem) clamp(.7rem, 3vw, .9rem);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(.85rem, 3vw, 1rem);
    white-space: nowrap;
    cursor: pointer;
    border: 0;
    transition: .2s, transform .1s, box-shadow .2s;
    animation: pulse 1.3s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(72, 38, 100, .08)
}

.btn-primary:hover {
    background: #fac517;
    transform: translateY(-2px)
}

@media (max-width:400px) {
    .btn-primary {
        font-size: .8rem;
        padding: .5rem .7rem
    }
}

.card .btn-primary {
    background: var(--violet);
    color: var(--blanc);
    box-shadow: 0 6px 20px rgba(72, 38, 100, .35)
}

.card .btn-primary:hover {
    background: #4a2366;
    box-shadow: 0 8px 28px rgba(72, 38, 100, .45)
}

.hero-line1 {
    font-family: "Inter", sans-serif;
    font-size: clamp(.85rem, 2vw, 1rem);
    font-weight: 400;
    color: var(--texte);
    text-align: center;
    letter-spacing: .01em;
    margin: 0 0 .25rem;
    line-height: 1.4
}

.hero-line1 strong {
    font-weight: 700
}

.hero-toulouse {
    font-size: 1.4em;
    color: var(--violet)
}

.hero-line2 {
    font-size: clamp(.82rem, 1.4vw, 1rem);
    color: var(--gris);
    text-align: center;
    font-weight: 400;
    margin: 0 0 .7rem;
    line-height: 1.4
}

.hero-text,
.logo-overlay {
    display: flex;
    align-items: center
}

.hero-text {
    flex-direction: column;
    gap: .6rem;
    text-align: center
}

.logo-overlay {
    overflow-y: auto;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(36, 18, 56, .92);
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    padding: 2rem
}

.logo-overlay.open {
    opacity: 1;
    pointer-events: all
}

.logo-overlay-inner {
    background: var(--blanc);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(141, 104, 177, .35);
    position: relative;
    transform: translateY(20px);
    transition: transform .35s;
    overflow-y: auto;
    max-height: 85vh
}

.logo-overlay.open .logo-overlay-inner {
    transform: translateY(0)
}

.logo-overlay-img {
    width: clamp(80px, 20%, 160px);
    height: auto;
    display: block;
    margin: 0 auto 1rem
}

.logo-overlay h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--violet);
    margin-bottom: .8rem;
    line-height: 1.3
}

.logo-overlay div,
.logo-overlay p {
    font-size: .88rem;
    color: var(--gris);
    line-height: 1.75;
    margin-bottom: 0
}

.logo-overlay-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: 0;
    border: 0;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--gris);
    line-height: 1;
    padding: .2rem .5rem;
    border-radius: 50%;
    transition: .15s
}

.logo-overlay-close:hover {
    background: var(--lilas-clair)
}

@media (max-width:600px) {
    .logo-overlay {
        padding: .75rem;
        align-items: flex-end
    }

    .logo-overlay-inner {
        padding: 1.5rem 1.1rem 1.8rem;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 80vh
    }

    .logo-overlay h3 {
        font-size: .95rem
    }

    .logo-overlay div,
    .logo-overlay p {
        font-size: .82rem;
        line-height: 1.65
    }
}

.hero {
    box-shadow: 0 8px 32px rgba(72, 38, 100, .18);
    margin-bottom: 2rem
}

section {
    padding: 3.5rem 2.5rem
}

.section-inner {
    max-width: 960px;
    margin: 0 auto
}

.section-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(#b27ec5);
    margin-bottom: .3rem;
    display: block
}

.card h3,
h2,
h3 {
    font-weight: 700;
    color: var(--violet)
}

h2 {
    font-size: clamp(1.4rem, 2.1vw, 2rem);
    margin-bottom: .7rem;
    letter-spacing: -.5px;
    line-height: 1.2
}

.card h3,
h3 {
    font-size: 1.2rem
}

.section-desc {
    color: var(--blanc);
    max-width: 540px;
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 0
}

#concept,
#services {
    background: var(--violet)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 1.8rem;
    align-items: stretch
}

.card {
    border: 1.5px solid var(--violet);
    border-radius: 14px;
    padding: 1.4rem;
    transition: box-shadow .2s;
    background: var(--blanc);
    display: flex;
    flex-direction: column;
    height: 100%
}

.card:hover {
    box-shadow: 0 6px 24px rgba(141, 104, 177, .15)
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.card-icon {
    font-size: 1.3em;
    line-height: 1;
    width: 1.4em;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .3rem
}

.card p {
    font-size: .9rem;
    color: var(--gris);
    line-height: 1.65;
    flex: 1;
    min-height: 5.5rem;
    margin-bottom: .8rem
}

.btn-tarifs,
.card-detail {
    margin-top: auto;
    border-top: 1px solid var(--lilas-clair);
    font-weight: 600
}

.card-detail {
    padding-top: .8rem;
    font-size: .8rem;
    color: var(--gris)
}

.btn-tarifs {
    display: block;
    padding: 1.2rem 0 0;
    background: 0 0;
    border: 0;
    color: var(--violet);
    border-radius: 0;
    font-size: .82rem;
    cursor: pointer;
    transition: color .2s;
    font-family: "Inter", sans-serif;
    text-align: left;
    width: 100%;
    text-decoration: none
}

.btn-tarifs:hover {
    color: #3d1f5c
}

.tarifs-category {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lilas);
    margin: 2rem 0 .5rem
}

.tarifs-category:first-of-type {
    margin-top: 0
}

table.tarifs {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem
}

table.tarifs th {
    text-align: left;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--gris);
    padding: .5rem .6rem;
    border-bottom: 1.5px solid var(--lilas-clair)
}

table.tarifs th:last-child {
    text-align: right
}

table.tarifs td {
    padding: .65rem .6rem;
    color: var(--texte);
    border-bottom: 1px solid var(--lilas-clair);
    vertical-align: middle;
    line-height: 1.5
}

table.tarifs td:last-child {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
    color: var(--violet)
}

.tarifs-note {
    margin-top: 1.5rem;
    font-size: .85rem;
    color: var(--gris);
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid var(--lilas-clair)
}

.na-tag {
    color: var(--gris);
    font-weight: 400;
    font-size: .88rem
}

.mot-tooltip {
    color: #b8a0c8;
    cursor: pointer;
    position: relative;
    display: inline-block;
    font-weight: 700
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.mot-tooltip .tooltip-bulle {
    border-radius: 10px;
    border: 1.5px solid var(--lilas-clair);
    font-family: "Inter", sans-serif;
    color: var(--texte)
}

.mot-tooltip .tooltip-bulle {
    visibility: hidden;
    opacity: 0;
    background: var(--lilas-pale);
    -webkit-text-fill-color: var(--texte);
    font-size: .82rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.55;
    padding: 10px 14px;
    width: 260px;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    box-shadow: 0 6px 20px rgba(72, 38, 100, .12);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 200;
    pointer-events: none;
    text-transform: none;
    letter-spacing: 0;
    background-clip: unset;
    -webkit-background-clip: unset
}

.mot-tooltip .tooltip-bulle::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--lilas-clair)
}

.mot-tooltip:hover .tooltip-bulle {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

#concept .section-label {
    color: var(--lilas-clair)
}

#concept .section-desc,
#concept h2,
#contact h2 {
    color: var(--blanc)
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem
}

.concept-item {
    background: var(--blanc);
    border-radius: 12px;
    padding: 1.1rem;
    border-left: 4px solid var(--lilas)
}

.concept-item h4 {
    font-weight: 700;
    color: var(--violet);
    margin-bottom: .4rem;
    font-size: 1rem
}

.concept-item p {
    font-size: .9rem;
    color: var(--texte);
    line-height: 1.65
}

.highlight-box {
    margin-top: 1.2rem;
    background: linear-gradient(135deg, var(--lilas-clair), var(--lilas-pale));
    color: var(--texte);
    border-radius: 14px;
    padding: 1.4rem 1.8rem;
    font-size: .95rem;
    line-height: 1.7;
    border: 1.5px solid var(--lilas);
    box-shadow: 0 2px 12px rgba(72, 38, 100, .1)
}

.highlight-box strong {
    font-weight: 800;
    color: var(--violet)
}

#pourquoi {
    background: #f8f5fc
}

.raisons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem
}

.raison,
.raison-body {
    background: var(--blanc)
}

.raison {
    border: 1.5px solid var(--violet);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s
}

.raison:hover {
    box-shadow: 0 8px 28px rgba(72, 38, 100, .16);
    transform: translateY(-2px)
}

.raison h4 {
    font-size: .75rem;
    font-weight: 700;
    margin: 0;
    padding: .7rem 1.1rem .6rem;
    letter-spacing: .12em;
    text-transform: uppercase
}

.raison-body {
    flex: 1;
    padding: 1rem 1.1rem 1.1rem;
    border-top: 1.5px dashed var(--violet)
}

.raison p {
    font-size: .88rem;
    color: var(--violet);
    line-height: 1.7;
    margin: 0
}

#contact {
    background: var(--violet)
}

.raison h4 {
    background: var(--violet)
}

#contact .section-label {
    color: rgba(255, 255, 255, .85)
}

#contact .section-desc,
.contact-info h3,
.contact-info p,
.raison h4,
.tel-block:hover {
    color: var(--blanc)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    align-items: start
}

.contact-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.contact-btns {
    display: flex;
    gap: .7rem;
    margin-bottom: 1rem;
    flex-wrap: wrap
}

.tel-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s, transform .1s, box-shadow .2s;
    font-size: .82rem;
    background: var(--lilas-clair);
    background-size: 200%auto;
    color: var(--violet);
    cursor: pointer
}

.tel-block:hover {
    background: linear-gradient(90deg, var(--lilas)0, var(--violet) 50%, var(--lilas) 100%);
    background-size: 200%auto;
    animation: violet-shimmer 2s linear infinite;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 16px rgba(72, 38, 100, .35)
}

.tel-block.whatsapp {
    background: #2bbf5c;
    color: var(--blanc)
}

.tel-block.whatsapp:hover {
    background: #24a84d;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 191, 92, .45)
}

.tel-block .tel-icon {
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center
}

.tel-block .tel-icon svg {
    width: 16px;
    height: 16px
}

.tel-block .tel-num {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .2px
}

#page-cgv,
#page-mentions-legales,
#page-tarifs-pack,
.tel-block .tel-label {
    display: none
}

.zone-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    color: var(--blanc);
    border: 1px solid rgba(255, 255, 255, .35);
    padding: .3rem .8rem;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
    margin: .25rem .25rem 0 0
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: .8rem 1rem;
    font-size: .95rem;
    background: var(--blanc);
    transition: border-color .2s;
    outline: 0;
    resize: none
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--lilas)
}

.contact-form input,
.contact-form select {
    height: 44px
}

.contact-form textarea {
    height: 110px
}

.btn-send {
    background: var(--lilas-clair);
    color: var(--violet);
    background-size: 200%auto;
    padding: .6rem 1.6rem;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: .9rem;
    font-family: "Inter", sans-serif;
    transition: .2s, transform .1s, box-shadow .2s;
    align-self: center;
    width: fit-content
}

.btn-send:hover {
    background: linear-gradient(90deg, var(--lilas)0, var(--violet) 50%, var(--lilas) 100%);
    background-size: 200%auto;
    animation: violet-shimmer 2s linear infinite;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 16px rgba(72, 38, 100, .35);
    color: var(--blanc)
}

#page-cgv.active,
#page-mentions-legales.active,
#page-tarifs-pack.active {
    display: block
}

.page-content {
    min-height: 60vh;
    padding: 5rem 2.5rem;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column
}

.page-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--violet);
    margin-bottom: .5rem
}

.page-content h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--texte);
    margin-top: 2rem;
    margin-bottom: .4rem
}

.page-content p,
.page-content ul {
    color: var(--gris);
    font-size: .95rem
}

.page-content p {
    line-height: 1.75;
    margin-bottom: .8rem
}

.page-content ul {
    padding-left: 1.4rem;
    line-height: 1.9
}

.back-btn,
.footer-links a {
    text-decoration: none;
    cursor: pointer
}

.back-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--violet);
    font-size: .9rem;
    margin-bottom: 2rem;
    background: 0;
    border: 0;
    font-family: "Inter", sans-serif;
    padding: 0;
    margin-left: auto;
    width: fit-content
}

.back-btn:hover {
    text-decoration: underline
}

footer {
    background: var(--texte);
    color: rgba(255, 255, 255, .5);
    text-align: center;
    padding: 2rem;
    font-size: .82rem
}

.back-btn,
footer span {
    font-weight: 600
}

.footer-links {
    margin-top: .6rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem
}

.footer-links a {
    color: rgba(255, 255, 255, .4);
    font-size: .8rem;
    transition: color .2s
}

.footer-links a:hover,
footer span {
    color: var(--lilas)
}

#map-zones {
    position: relative;
    z-index: 0
}

.hero-logo-wrap,
.logo-overlay-logo {
    display: flex;
    justify-content: center;
    margin: 0 auto 1.2rem
}

.hero-logo-wrap svg,
.logo-overlay-logo svg {
    height: 130px;
    width: auto;
    display: block
}

.hero-logo-wrap {
    margin: 0 auto .8rem;
    padding: .7rem .7rem .3rem;
    overflow: hidden;
    max-width: 100%;
    width: 100%
}

.hero-logo-wrap svg {
    height: 190px;
    width: auto;
    max-width: 100%;
    overflow: hidden
}

.pene-irise {
    background: linear-gradient(90deg, #7c3aed, #b47ce4, #e879f9, #b47ce4, #7c3aed);
    background-size: 200%auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
    font-weight: 700
}

#apropos {
    background: linear-gradient(to bottom, var(--violet), var(--lilas))
}

#apropos .apropos-text p,
#apropos .section-label,
#apropos h2,
#services .section-desc,
#services h2,
.apropos-text p {
    color: var(--blanc)
}

#apropos .apropos-text strong {
    color: var(--blanc);
    font-weight: 700
}

.apropos-text p {
    font-size: .95rem;
    line-height: 1.75;
    margin: 0
}

.apropos-text p+p,
.hero-dispo {
    margin-top: 1rem
}

.hero-dispo {
    font-weight: 700;
    color: #c8860a;
    font-size: 1.1rem;
    letter-spacing: .05em;
    animation: pulse 1.5s ease-in-out infinite
}

@keyframes roue-rotation {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes roue-rotation-hover {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}


#roue {
    transform-origin: 50% 50%;
    animation: roue-rotation 3.4s ease-out
}

.hero-logo-wrap svg:hover #roue,
.hero-logo-wrap svg:focus #roue,
.hero-logo-wrap svg:active #roue {
    animation: roue-rotation-hover 3.4s ease-out
}

#roue.roue-replay {
    animation: roue-rotation-hover 3.4s ease-out
}

@media (prefers-reduced-motion: reduce) {

    #roue,
    .hero-logo-wrap svg:hover #roue,
    .hero-logo-wrap svg:focus #roue,
    .hero-logo-wrap svg:active #roue,
    #roue.roue-replay {
        animation: none
    }
}

.gradient-separator {
    height: 30px;
    background: gradient(to bottom, var(--blanc), var(--violet))
}

@media (max-width:860px) {
    .services-grid {
        grid-template-columns: 1fr
    }

    .card-featured {
        max-width: 100%
    }

    .concept-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    nav {
        padding: .5rem 1.2rem;
        position: relative
    }

    .nav-logo-svg-wrap {
        max-width: 36px;
        display: flex;
        align-items: center;
        gap: .7rem;
        cursor: pointer;
        text-decoration: none;
        background: 0;
        border: 0;
        padding: 0
    }

    .nav-whatsapp {
        width: 32px;
        height: 32px
    }

    .nav-whatsapp svg {
        width: 17px;
        height: 17px
    }

    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero {
        padding: 1.8rem 1rem;
        margin: .8rem auto 0
    }

    .hero-logo-wrap svg {
    height: 190px;
    width: auto;
    max-width: 100%;
    overflow: hidden
}
    .hero-dispo {
        font-size: .95rem
    }

    section {
        padding: 2.5rem 1.2rem
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .page-content {
        padding: 2rem 1.2rem
    }

    #zones .section-inner>div {
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important
    }

    .concept-grid,
    .raisons {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {
    .hero {
        padding: 1.4rem .7rem
    }

    .hero-logo-wrap svg {
        height: 130px;
        width: auto;
        max-width: 100%;
        display: block;
        overflow: hidden
    }

    .concept-grid,
    .services-grid {
        grid-template-columns: 1fr
    }

    .tarifs-category {
        font-size: .65rem
    }

    .table.tarifs {
        font-size: .85rem
    }

    h2 {
        font-size: clamp(1.2rem, 2vw, 1.6rem)
    }
}

@media (max-width:360px) {
    .hero-logo-wrap svg {
        height: 130px;
        width: auto;
        max-width: 100%;
        display: block;
        overflow: hidden
    }

    .hero {
        padding: 1rem .6rem;
        margin: .6rem auto 0
    }

    .hero-line1 {
        font-size: clamp(.78rem, 3.2vw, 1rem);
        line-height: 1.4;
        padding: 0 .5rem
    }

    .section-label {
        font-size: .6rem
    }
}

@media (min-width:641px) {
    .hamburger {
        display: none
    }

    .mobile-menu {
        display: none !important
    }
}

.custom-separator {
    height: 2px;
    background: linear-gradient(to right, var(--violet), var(--lilas), var(--violet));
    margin: 2rem auto;
    width: 80%
}

.apropos-content {
    display: grid;
    gap: 1.5rem;
    align-items: start;
    max-width: 100%
}

.apropos-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto
}

.apropos-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover
}

@media (min-width:861px) {
    .apropos-content {
        grid-template-columns: 300px 1fr;
        align-items: center
    }

    .apropos-image {
        width: 300px;
        margin: 0
    }
}

@media (max-width:860px) {
    .apropos-content {
        grid-template-columns: 1fr
    }
}

#services .section-label,
.faq-velo .faq-item summary,
.faq-velo .faq-item summary::after {
    color: var(--lilas-clair)
}

@media (max-width:768px) {
    .services-grid {
        flex-direction: column;
        align-items: center
    }

    .card {
        flex: 1 1 100%;
        width: 100%;
        margin-bottom: 20px
    }
}

.rdv-field-group {
    display: flex;
    flex-direction: column;
    gap: 0
}

.rdv-field-hint {
    font-size: .75rem;
    color: rgba(255, 255, 255, .65);
    margin-top: .3rem;
    margin-bottom: 0
}

.prix-toggle-bar {
    display: none
}

.tarifs-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 0 1.5rem;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 2.5rem;
    align-items: start;
    width: 100%
}

.tarifs-main-col {
    min-width: 0;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0
}

.prix-toggle-widget,
.tarifs-side-col {
    display: flex;
    flex-direction: column;
    align-items: center
}

.tarifs-side-col {
    position: sticky;
    top: 60px;
    padding-top: 6rem
}

.prix-toggle-widget {
    gap: .6rem;
    background: 0 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none
}

.prix-toggle-legend {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    width: 100%;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--lilas-clair);
    margin-bottom: .1rem
}

.prix-toggle-legend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .1rem;
    font-size: .58rem;
    font-weight: 500;
    color: var(--lilas);
    line-height: 1.2;
    text-align: center
}

.prix-toggle-legend-item span:last-child {
    font-size: .52rem;
    color: var(--lilas)
}

.prix-toggle {
    background: var(--lilas-pale);
    border: 2.5px solid var(--lilas-clair);
    cursor: pointer;
    transition: border-color .18s, background .18s, transform .12s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 2px 8px rgba(72, 38, 100, .15)
}

.prix-toggle:hover {
    border-color: var(--violet);
    background: var(--lilas-clair);
    transform: translateY(-1px)
}

.prix-toggle.actif {
    background: var(--violet);
    color: var(--blanc)
}

@media (max-width:640px) {
    .tarifs-page-wrapper {
        display: grid;
        grid-template-columns: 1fr 44px;
        gap: 0 .75rem;
        padding: 0 1rem
    }

    .tarifs-side-col {
        position: sticky;
        top: 60px;
        padding-top: 4rem;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0
    }

    .prix-toggle-legend,
    .prix-toggle-widget {
        flex-direction: column;
        gap: .4rem
    }

    .prix-toggle-legend {
        border-bottom: 1px solid var(--lilas-clair);
        border-right: none;
        padding-bottom: .3rem;
        padding-right: 0;
        margin-bottom: .1rem;
        gap: .1rem;
        align-items: center
    }

    .prix-toggle-legend-item {
        flex-direction: column;
        text-align: center;
        gap: .05rem
    }

    .prix-toggle-legend-item .legend-icon {
        font-size: .75rem
    }

    .prix-toggle-legend-item span:last-child {
        font-size: .46rem
    }

    .prix-toggle {
        width: 32px;
        height: 32px;
        font-size: .85rem;
        border-radius: 50%;
        border-width: 2px
    }
}

.tarif-fixe-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lilas);
    padding: .75rem .2rem .3rem;
    border-bottom: 1.5px solid var(--lilas-clair);
    margin-bottom: 0;
    overflow: hidden
}

.tarif-fixe {
    margin-bottom: 1rem
}

.tarifs-page-wrapper::after {
    content: "";
    display: table;
    clear: both
}

.tarif-accordeon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: 0 0;
    border: 0;
    border-bottom: 1.5px solid var(--lilas-clair);
    padding: .75rem .2rem;
    font-family: "Inter", sans-serif;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--violet);
    cursor: pointer;
    text-align: left;
    margin-top: 1.2rem;
    transition: color .2s
}

.tarif-accordeon:first-of-type {
    margin-top: 0
}

.faq-item summary:hover,
.tarif-accordeon:hover {
    color: var(--violet)
}

.accord-arrow {
    font-size: .85rem;
    transition: transform .25s;
    display: inline-block;
    color: var(--lilas)
}

.tarif-accordeon.ouvert .accord-arrow {
    transform: rotate(90deg);
    color: var(--violet)
}

.tarif-panel {
    display: none;
    overflow: hidden
}

.tarif-panel.ouvert {
    display: block
}

table.tarifs td.prix-ferie,
table.tarifs td.prix-nuit,
table.tarifs td.prix-semaine {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
    color: var(--violet);
    width: 110px
}

.prix-toggle-widget {
    width: 54px;
    padding: .3rem
}

.prix-toggle-legend-item .legend-icon {
    font-size: .9rem
}

.prix-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    font-size: 1rem;
    padding: 0
}

.prix-toggle.actif {
    border-color: var(--violet);
    background: var(--lilas-pale);
    box-shadow: 0 2px 8px rgba(72, 38, 100, .18)
}

@media (max-width:640px) {
    .prix-toggle-widget {
        width: 42px
    }

    .prix-toggle {
        width: 32px;
        height: 32px;
        font-size: .85rem
    }
}

.prix-toggle-legend-ext {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    margin-bottom: .5rem;
    flex-wrap: wrap
}

.prix-toggle-legend-ext .prix-toggle-legend-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .25rem;
    font-size: .62rem;
    font-weight: 500;
    color: var(--lilas);
    white-space: normal;
    line-height: 1.2
}

.prix-toggle-legend-ext .legend-icon {
    font-size: .8rem;
    flex-shrink: 0
}

@media (max-width:480px) {
    .prix-toggle-legend-ext {
        gap: .4rem
    }

    .prix-toggle-legend-ext .prix-toggle-legend-item {
        font-size: .58rem
    }
}

@media (max-width:640px) {
    .prix-toggle-legend-ext {
        flex-direction: column;
        gap: .3rem
    }
}

.tarif-titre-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .6rem 1.2rem;
    margin-bottom: .2rem
}

.tarif-legende-bandeau,
.tarif-legende-inline {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    font-size: .72rem;
    color: var(--lilas);
    font-weight: 500;
    align-items: center
}

.tarif-legende-bandeau {
    gap: .35rem .6rem;
    background: var(--lilas-clair);
    color: var(--violet);
    font-weight: 600;
    padding: .5rem .8rem;
    border-radius: 12px;
    margin: .5rem 0 1rem
}

.tarif-legende-bandeau .legende-icone {
    font-size: .85rem;
    margin-right: .15rem
}

.tarif-legende-bandeau .legende-sep {
    color: var(--lilas);
    font-weight: 400
}

@media (max-width:640px) {
    .tarif-legende-bandeau {
        font-size: .68rem;
        padding: .45rem .7rem;
        gap: .3rem .5rem
    }

    .tarif-legende-bandeau .legende-sep {
        display: none
    }
}

.prix-toggle-legend,
.prix-toggle-legend-ext {
    display: none
}

.contact-form-new {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .05rem
}

.form-field label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--lilas-clair);
    letter-spacing: .02em
}

.contact-form-new input[type=email],
.contact-form-new input[type=tel],
.contact-form-new input[type=text],
.contact-form-new textarea {
    padding: .6rem .8rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, .25);
    font-family: "Inter", sans-serif;
    font-size: .85rem;
    color: var(--texte);
    background: var(--blanc);
    transition: border-color .2s, box-shadow .2s;
    outline: 0;
    resize: none;
    width: 100%
}

.contact-form-new textarea {
    height: 80px
}

.field-error {
    font-size: .7rem;
    color: #f0b0b0;
    font-weight: 500;
    min-height: .8rem;
    display: block
}

.form-feedback.erreur,
.form-feedback.succes {
    color: #f0b0b0;
    font-size: .8rem;
    margin-top: .5rem
}

.form-feedback.succes {
    color: #a8e6a3
}

.field-char-count {
    font-size: .65rem;
    color: rgba(255, 255, 255, .5);
    text-align: right;
    margin-top: .1rem
}

@media (max-width:600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: .5rem
    }

    .contact-form-new {
        max-width: 90%
    }
}

.contact-columns {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 1.5rem;
    justify-content: start;
    align-items: stretch
}

.contact-columns .contact-form-new {
    max-width: 400px;
    width: 100%;
    margin: 0 0 0 auto;
    gap: .45rem
}

.hours-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 1.5rem 1.5rem 1.4rem;
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box
}

.hours-card-title {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--blanc);
    margin: 0 0 1.1rem;
    letter-spacing: .01em
}

.hours-card-title svg {
    color: var(--lilas-clair);
    flex-shrink: 0
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: .6rem;
    padding: .62rem .15rem;
    border-bottom: 1px dashed rgba(255, 255, 255, .16);
    font-size: .88rem;
    color: rgba(255, 255, 255, .85)
}

.hours-row:last-child {
    border-bottom: none
}

.hours-row span:first-child {
    font-weight: 600;
    color: var(--blanc)
}

.hours-row.is-today {
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 7px;
    padding-left: .6rem;
    padding-right: .6rem;
    margin: 0-.15rem
}

.hours-row.is-today span:first-child {
    color: var(--blanc);
    font-weight: 700
}

.hours-row.is-today span:last-child {
    color: var(--blanc);
    font-weight: 700
}

.hours-bottom {
    margin-top: auto
}

.hours-note {
    font-size: .7rem;
    color: rgba(255, 255, 255, .45);
    font-style: italic;
    margin: 1.1rem 0 1rem;
    line-height: 1.4
}

.gbp-link,
.politique-content h3 {
    font-weight: 700;
    color: var(--violet)
}

.gbp-badge,
.gbp-link {
    display: flex;
    align-items: center;
    justify-content: center
}

.gbp-link {
    gap: .55rem;
    width: 100%;
    padding: .55rem 1rem;
    border-radius: 999px;
    background: var(--lilas-clair);
    background-size: 200%auto;
    border: 0;
    font-size: .8rem;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    transition: .2s, transform .1s, box-shadow .2s;
    box-sizing: border-box;
    cursor: pointer
}

.gbp-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blanc);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15)
}

.gbp-link:hover {
    background: linear-gradient(90deg, var(--lilas)0, var(--violet) 50%, var(--lilas) 100%);
    background-size: 200%auto;
    animation: violet-shimmer 2s linear infinite;
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 6px 16px rgba(72, 38, 100, .35);
    color: var(--blanc)
}

@media (max-width:860px) {
    .contact-columns {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        justify-content: stretch
    }

    .hours-card {
        box-sizing: border-box;
        height: auto
    }

    .contact-columns .contact-form-new,
    .hours-card {
        max-width: 500px;
        width: 100%;
        margin: 0 auto
    }
}

@media (max-width:600px) {
    .mot-tooltip .tooltip-bulle {
        width: 180px;
        font-size: .75rem;
        left: 0;
        transform: translateX(0) translateY(4px)
    }

    .mot-tooltip .tooltip-bulle::after {
        left: 30px;
        transform: none
    }

    .mot-tooltip:hover .tooltip-bulle {
        transform: translateX(0) translateY(0)
    }
}

.politique-content h2 {
    font-size: 1.3rem;
    color: var(--violet);
    margin-bottom: .1rem
}

.politique-content h3 {
    font-size: .92rem;
    margin: 1rem 0 .2rem
}

.politique-content p {
    font-size: .88rem;
    color: var(--gris);
    line-height: 1.65;
    margin-bottom: .3rem
}

.politique-overlay {
    overflow-y: auto;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(36, 18, 56, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    padding: 2rem
}

.politique-overlay.open {
    opacity: 1;
    pointer-events: all
}

.politique-inner {
    background: var(--blanc);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform .35s;
    overflow-y: auto;
    max-height: 85vh;
    box-shadow: 0 20px 60px rgba(141, 104, 177, .35)
}

.politique-overlay.open .politique-inner {
    transform: translateY(0)
}

.politique-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: 0;
    border: 0;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--gris);
    line-height: 1;
    padding: .2rem .5rem;
    border-radius: 50%;
    transition: .15s
}

.politique-close:hover {
    background: var(--lilas-clair)
}

.politique-date {
    font-size: .82rem;
    color: var(--lilas);
    margin-bottom: 1.2rem
}

.politique-content a {
    color: var(--violet);
    text-decoration: underline
}

@media (max-width:600px) {
    .politique-overlay {
        padding: .75rem;
        align-items: flex-end
    }

    .politique-inner {
        padding: 1.5rem 1.1rem 1.8rem;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 82vh
    }
}

.rgpd-label {
    font-size: .78rem;
    color: var(--lilas-clair)
}

.contact-tel-btn,
.link-modal {
    border: 0;
    cursor: pointer;
    font-family: "Inter", sans-serif
}

.link-modal {
    background: 0 0;
    padding: 0;
    font-size: inherit;
    color: var(--lilas-clair);
    text-decoration: underline
}

.faq-velo .faq-item summary:hover,
.faq-velo .faq-item[open] summary::after,
.faq-velo h2,
.link-modal:hover {
    color: var(--blanc)
}

.contact-tel-btn {
    background: var(--blanc);
    color: var(--violet);
    background-size: 200%auto;
    display: block;
    width: fit-content;
    margin: .8rem 0 1rem;
    padding: .6rem 1.4rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 2px 10px rgba(36, 18, 56, .25);
    transition: .2s, transform .1s, box-shadow .2s
}

.contact-tel-btn:hover {
    background: linear-gradient(90deg, var(--lilas)0, var(--violet) 50%, var(--lilas) 100%);
    background-size: 200%auto;
    animation: violet-shimmer 2s linear infinite;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 16px rgba(72, 38, 100, .35);
    color: var(--blanc)
}

.contact-btns-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: .8rem 0 1rem
}

.contact-btns-row .contact-tel-btn {
    margin: 0
}

.faq-serrurerie,
.faq-velo {
    background: var(--lilas-pale);
    border: 1.5px solid var(--lilas-clair);
    border-radius: 16px;
    padding: 1.3rem 1.5rem 1.6rem;
    box-shadow: 0 4px 14px rgba(72, 38, 100, .06)
}

.faq-serrurerie {
    margin-top: 1rem
}

.faq-velo {
    margin-top: 1.8rem;
    background: var(--violet);
    border-color: var(--violet)
}

.faq-velo h2 {
    border-bottom: 2px solid rgba(255, 255, 255, .25)
}

.faq-velo .faq-item {
    border-bottom-color: rgba(255, 255, 255, .18)
}

.faq-velo .faq-item p {
    color: var(--lilas-pale)
}

.faq-item summary,
.faq-serrurerie h2 {
    font-family: "Inter", sans-serif;
    color: var(--violet)
}

.faq-serrurerie h2,
.faq-velo h2 {
    font-size: 1.15rem;
    margin-bottom: .8rem;
    padding-bottom: .6rem
}

.faq-serrurerie h2 {
    border-bottom: 2px solid var(--lilas-clair)
}

.faq-velo h2 {
    font-family: "Inter", sans-serif
}

.faq-item {
    border-bottom: 1.5px solid var(--lilas-clair);
    padding: .5rem 0
}

.faq-item summary {
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    padding: .5rem .2rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: "▾";
    font-size: .85rem;
    color: var(--lilas);
    transition: transform .25s;
    margin-left: 1rem
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
    color: var(--violet)
}

.faq-item p {
    color: var(--texte);
    font-size: .9rem;
    padding: .5rem .2rem 1rem;
    line-height: 1.6
}