@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* =========================================================
   NADIA THERAPEUTE - DESIGN SYSTEM GLOBAL
   ========================================================= */
:root {
    --color-bg: #fcfaf8;
    --color-text: #3b2f33;
    --color-text-soft: #5b4b4f;
    --color-accent-mauve: rgba(196, 168, 224, 0.48);
    --color-accent-sauge: rgba(194, 213, 201, 0.45);
    --color-glass: rgba(255, 255, 255, 0.6);
    --color-glass-strong: rgba(255, 255, 255, 0.75);
    --color-border-soft: rgba(59, 47, 51, 0.12);
    --color-border-glass: rgba(255, 255, 255, 0.82);
    --text-prune: #3b2f33;
    --mauve-soft: rgba(196, 168, 224, 0.48);
    --sauge-soft: rgba(194, 213, 201, 0.45);

    /* Boutons — mauve & vert (tons proches des accents du site) */
    --btn-mauve: #a98cd6;
    --btn-mauve-deep: #8e6cc7;
    --btn-sauge: #5f8068;
    --btn-sauge-deep: #4d6a55;
    --btn-on-accent: #fcfaf8;

    --font-body: 'Montserrat', sans-serif;
    --font-editorial: 'Cormorant Garamond', serif;

    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4.5rem;
    --space-7: 6rem;

    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 1.75rem;
    --radius-pill: 999px;

    --shadow-soft: 0 12px 36px rgba(59, 47, 51, 0.06);
    --shadow-air: 0 24px 60px rgba(59, 47, 51, 0.08);
}

/* =========================================================
   BASE + RESET
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image: url("fondteleph.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
}

main section {
    padding: var(--space-6) 5%;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    margin: 0 0 var(--space-2);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.08em;
}

h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
}

h2 {
    font-size: clamp(1.45rem, 5.5vw, 2.2rem);
}

h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
}

p {
    margin: 0 0 var(--space-3);
}

/* =========================================================
   COMPOSANTS COMMUNS
   ========================================================= */
.cursive {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: clamp(1.45rem, 5vw, 2rem);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.glass-card {
    background: var(--color-glass);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.glass-card--mauve {
    background: color-mix(in srgb, var(--mauve-soft) 34%, rgba(255, 255, 255, 0.74) 66%);
}

.glass-card--sauge {
    background: color-mix(in srgb, var(--sauge-soft) 34%, rgba(255, 255, 255, 0.74) 66%);
}

.btn-pill {
    display: inline-block;
    padding: 0.9rem 1.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
    color: var(--btn-on-accent);
    border-color: transparent;
    background: var(--color-text);
    box-shadow: 0 10px 28px rgba(59, 47, 51, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(59, 47, 51, 0.28);
    background: #5b4b4f;
}

.btn-primary:focus-visible {
    outline: 2px solid var(--btn-sauge);
    outline-offset: 3px;
}

.btn-outline {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.55);
    border-color: color-mix(in srgb, var(--btn-sauge) 55%, transparent);
}

.btn-outline:hover {
    transform: translateY(-2px);
    color: var(--color-text);
    border-color: var(--btn-sauge-deep);
    background: color-mix(in srgb, var(--sauge-soft) 50%, rgba(255, 255, 255, 0.88) 50%);
    box-shadow: 0 10px 26px rgba(77, 106, 85, 0.18);
}

.btn-outline:focus-visible {
    outline: 2px solid var(--btn-mauve);
    outline-offset: 3px;
}

.testimonials-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.35);
}

.testimonials-grid {
    max-width: 1020px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.testimonial-card {
    text-align: left;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    background: var(--color-glass);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
}

blockquote {
    margin: 0 0 var(--space-2);
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.28rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

cite {
    display: block;
    margin-bottom: 0.3rem;
    font-style: normal;
    font-weight: 500;
}

.testimonial-meta {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.site-footer {
    margin-top: var(--space-3);
    padding: var(--space-6) 5% var(--space-5);
    background: rgba(255, 255, 255, 0.65);
    border-top: 1px solid var(--color-border-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.footer-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.footer-phone {
    display: inline-block;
    margin: 0.8rem 0;
    font-weight: 500;
}

.map-wrapper {
    min-height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(18%);
}

/* =========================================================
   NAVIGATION / HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    width: 100%;
    margin-bottom: var(--space-3);
    margin-inline: 0;
    padding: 0.9rem 5%;
    background: rgba(252, 250, 248, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(59, 47, 51, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.page-accueil .site-header {
    margin-bottom: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    margin-inline: auto;
    background: var(--color-text);
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: var(--space-1) 5% var(--space-2);
    background: var(--color-glass-strong);
    border: 1px solid rgba(59, 47, 51, 0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header.menu-open .nav-links {
    display: flex;
}

.nav-links a {
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.7rem 0;
}

.nav-links a.active {
    font-weight: 500;
}

.site-header > .btn-pill {
    display: none;
}

/* =========================================================
   DECORS
   ========================================================= */
@keyframes float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.05);
    }
}

.aquarelle-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.85;
    z-index: -2;
    pointer-events: none;
    animation: float 11s ease-in-out infinite;
}

.aquarelle-blob--mauve {
    width: 360px;
    height: 360px;
    top: -120px;
    left: -140px;
    background: var(--color-accent-mauve);
}

.aquarelle-blob--sauge {
    width: 280px;
    height: 280px;
    top: 42%;
    right: -120px;
    background: var(--color-accent-sauge);
    animation-delay: 1.8s;
}

/* =========================================================
   PAGE ACCUEIL
   ========================================================= */
.hero {
    min-height: calc(100svh - 6.2rem);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(
        180deg,
        rgba(252, 250, 248, 0.1) 0%,
        rgba(252, 250, 248, 0.24) 55%,
        rgba(252, 250, 248, 0.88) 100%
    );
}

.hero .glass-card {
    width: min(100%, 520px);
    padding: var(--space-4);
    margin-bottom: var(--space-5);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.intro-text {
    position: relative;
    margin-top: -88px;
    padding-top: calc(var(--space-6) + 0.6rem);
    z-index: 2;
}

.intro-text::before {
    content: none;
}

.intro-text::after {
    content: none;
}

.intro-layout {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(2rem, 4.5vw, 3.4rem) clamp(0.8rem, 2.8vw, 2rem);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.2rem, 5vw, 4rem);
    align-items: center;
}

.intro-message {
    text-align: left;
    padding: clamp(1rem, 2vw, 1.6rem) 0;
    display: block;
}

.intro-message h2 {
    font-size: clamp(1.7rem, 4.8vw, 2.7rem);
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin: 0;
    text-wrap: balance;
}

.intro-message p {
    max-width: 760px;
    line-height: 1.9;
    letter-spacing: 0.025em;
    margin: 0;
}

.intro-card-item {
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 8px 24px rgba(59, 47, 51, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    animation: bubbleFloat 7s ease-in-out infinite;
}

.intro-card-title {
    padding: 1.2rem 1.35rem;
}

.intro-keywords {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    min-height: 560px;
    background: transparent;
    isolation: isolate;
}

.keyword-word {
    position: absolute;
    display: inline-block;
    width: max-content;
    max-width: min(88vw, 280px);
    padding: 0.4em 0.65em;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    hyphens: auto;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(59, 47, 51, 0.06);
    text-shadow: none;
}

.keyword-1 {
    top: 2%;
    left: 4%;
    font-family: var(--font-editorial);
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-style: italic;
    letter-spacing: 0.04em;
    color: var(--text-prune);
    z-index: 4;
    animation: drift-rise-soft 15s ease-in-out infinite;
    animation-delay: 0.2s;
}

.keyword-2 {
    top: 18%;
    right: 1%;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-text-soft);
    z-index: 5;
    animation: drift-rise-wide 18s ease-in-out infinite;
    animation-delay: 1.1s;
}

.keyword-3 {
    top: 61%;
    left: 9%;
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2.8vw, 1.45rem);
    letter-spacing: 0.06em;
    color: rgba(59, 47, 51, 0.62);
    z-index: 3;
    animation: drift-rise-tilt 13s ease-in-out infinite;
    animation-delay: 2.2s;
}

.keyword-4 {
    top: 39%;
    left: 13%;
    font-family: var(--font-editorial);
    font-size: clamp(1.45rem, 4vw, 1.95rem);
    font-style: italic;
    letter-spacing: 0.05em;
    color: rgba(59, 47, 51, 0.42);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.6);
    z-index: 1;
    animation: drift-rise-blur 22s ease-in-out infinite;
    animation-delay: 0.9s;
}

.keyword-5 {
    top: 84%;
    left: 37%;
    font-family: var(--font-editorial);
    font-size: clamp(1.45rem, 3.4vw, 1.8rem);
    letter-spacing: 0.07em;
    color: color-mix(in srgb, var(--sauge-soft) 40%, var(--text-prune) 60%);
    z-index: 4;
    animation: drift-rise-sway 16s ease-in-out infinite;
    animation-delay: 1.8s;
}

.keyword-6 {
    top: 8%;
    left: 58%;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    color: color-mix(in srgb, var(--sauge-soft) 32%, var(--text-prune) 68%);
    z-index: 6;
    animation: drift-rise-pulse 14s ease-in-out infinite;
    animation-delay: 2.8s;
}

.keyword-7 {
    top: 33%;
    left: 2%;
    font-family: var(--font-editorial);
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--text-prune);
    z-index: 5;
    animation: drift-rise-soft 17s ease-in-out infinite;
    animation-delay: 3.4s;
}

.keyword-8 {
    top: 56%;
    right: 7%;
    font-family: var(--font-editorial);
    font-size: clamp(1.5rem, 4.2vw, 2rem);
    font-style: italic;
    letter-spacing: 0.04em;
    color: rgba(59, 47, 51, 0.32);
    z-index: 0;
    animation: drift-rise-blur 24s ease-in-out infinite;
    animation-delay: 4.1s;
}

.keyword-9 {
    top: 76%;
    right: 1%;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-soft);
    z-index: 6;
    animation: drift-rise-wide 19s ease-in-out infinite;
    animation-delay: 1.6s;
}

.keyword-10 {
    top: 92%;
    right: 12%;
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2.6vw, 1.28rem);
    letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--sauge-soft) 52%, var(--text-prune) 48%);
    z-index: 4;
    animation: drift-rise-pulse 18s ease-in-out infinite;
    animation-delay: 2.9s;
}

@keyframes drift-rise-soft {
    0%, 100% { transform: translate(0, 0) rotate(-1deg); }
    50% { transform: translate(10px, -14px) rotate(1deg); }
}

@keyframes drift-rise-wide {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-14px, -18px); }
}

@keyframes drift-rise-tilt {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(8px, -20px) rotate(1.5deg); }
}

@keyframes drift-rise-blur {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, -24px); }
}

@keyframes drift-rise-sway {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, -16px); }
}

@keyframes drift-rise-pulse {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -14px); }
}

@keyframes bubbleFloat {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -6px;
    }
}

.pain-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.34);
}

.subtitle {
    color: var(--color-text-soft);
    margin-bottom: var(--space-5);
}

.subtitle-cursive {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
}

.pain-grid,
.cards-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.pain-item,
.method-card {
    padding: var(--space-4) var(--space-3);
    border-radius: var(--radius-md);
    background: var(--color-glass);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pain-icon,
.method-icon {
    font-size: 2rem;
    margin-bottom: var(--space-2);
    opacity: 0.8;
}

.method-section {
    text-align: center;
}

.about {
    display: block;
}

.about-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    align-items: center;
    max-width: 1120px;
    margin-inline: auto;
}

@media (max-width: 767px) {
    .about-panel {
        padding: var(--space-4);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.85);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

.about-img-box {
    position: relative;
}

.about-img-box img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-air);
}

.about-circle-deco {
    position: absolute;
    left: -24px;
    bottom: -24px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--color-accent-mauve);
    filter: blur(36px);
    z-index: -1;
}

.check-list {
    margin: var(--space-3) 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.check-list i {
    color: #5f7266;
}

/* =========================================================
   PAGE ACCOMPAGNEMENTS + QUIZ
   ========================================================= */
.page-header,
.hero-tarifs,
.contact-hero,
.blog-hero {
    padding: var(--space-7) 5% var(--space-5);
    text-align: center;
    position: relative;
}

.page-header p,
.hero-tarifs p,
.contact-hero p,
.blog-subtitle {
    max-width: 760px;
    margin-inline: auto;
}

.page-header-quote {
    font-family: var(--font-editorial);
    font-size: clamp(1.35rem, 4.2vw, 1.8rem);
    font-style: italic;
}

.wave-bottom {
    width: 100%;
    margin-top: var(--space-4);
    line-height: 0;
}

.wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

.why-consult,
.method-steps,
.locations {
    text-align: center;
}

.grid-symptoms {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}

.symptom-item {
    padding: var(--space-3);
    border-radius: var(--radius-md);
    background: var(--color-glass);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
}

.symptom-item h3 {
    font-size: clamp(0.95rem, 2.6vw, 1.12rem);
    line-height: 1.35;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.icon-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.quiz-section {
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
}

.quiz-subtitle {
    margin-bottom: var(--space-4);
    color: var(--color-text-soft);
}

.quiz-card {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, color-mix(in srgb, var(--mauve-soft) 20%, rgba(255, 255, 255, 0.8) 80%), color-mix(in srgb, var(--sauge-soft) 12%, rgba(255, 255, 255, 0.76) 88%));
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-air);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.quiz-progress-wrap {
    height: 8px;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-4);
    background: rgba(59, 47, 51, 0.12);
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    width: 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, #7e5968, #3b2f33);
    transition: width 0.35s ease;
}

.quiz-counter {
    margin-bottom: var(--space-1);
    font-size: 0.8rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.quiz-question {
    margin-bottom: var(--space-3);
    font-size: 1.05rem;
    font-weight: 500;
}

.quiz-question.quiz-fade-out {
    opacity: 0;
}

.quiz-answers {
    display: grid;
    gap: 0.7rem;
}

.quiz-answer-btn {
    width: 100%;
    border: 1px solid rgba(59, 47, 51, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.95rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.quiz-answer-btn:hover {
    background: rgba(217, 197, 226, 0.35);
    transform: translateX(2px);
}

.quiz-answer-btn:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 2px;
}

.quiz-result {
    display: none;
    text-align: center;
}

.quiz-result.is-visible {
    display: block;
}

.quiz-result-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #7e5968, #3b2f33);
}

.quiz-result-title {
    margin-bottom: 0.8rem;
}

.quiz-result-message {
    max-width: 440px;
    margin-inline: auto;
}

.quiz-result-cta.cta-mauve {
    background: linear-gradient(135deg, #7e5968, #3b2f33);
    color: #fff;
}

.quiz-result-cta.cta-outline {
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
}

.steps-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.step-card {
    padding: var(--space-4) var(--space-3);
    border-radius: var(--radius-md);
    background: var(--color-glass);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
}

.step-number {
    font-family: var(--font-editorial);
    font-size: 1.7rem;
    margin-bottom: var(--space-1);
}

.locations-container {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.location-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-glass);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.location-image img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

.location-image--cabinet img {
    max-height: 300px;
    object-position: center 45%;
}

.location-card h3,
.location-card p {
    padding-inline: var(--space-3);
}

.location-card h3 {
    margin-top: var(--space-3);
}

.location-card p {
    padding-bottom: var(--space-3);
    margin-bottom: 0;
}

/* =========================================================
   PAGE TARIFS
   ========================================================= */
.pricing-section {
    text-align: center;
    padding-top: var(--space-4);
}

.pricing-container {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    align-items: stretch;
}

.pricing-card {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: linear-gradient(
        155deg,
        color-mix(in srgb, var(--mauve-soft) 20%, rgba(255, 255, 255, 0.88) 80%) 0%,
        color-mix(in srgb, var(--sauge-soft) 18%, rgba(255, 255, 255, 0.88) 82%) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 42px rgba(59, 47, 51, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(59, 47, 51, 0.1);
}

.hero-tarifs {
    padding-bottom: var(--space-3);
}

.pricing-card-head {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-card .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.8rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: none;
    color: var(--text-prune);
    font-size: 1.45rem;
}

.pricing-card--visio .icon-box {
    background: color-mix(in srgb, var(--mauve-soft) 75%, rgba(255, 255, 255, 0.45) 25%);
}

.pricing-card--cabinet .icon-box {
    background: color-mix(in srgb, var(--sauge-soft) 75%, rgba(255, 255, 255, 0.45) 25%);
}

.pricing-card h3 {
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
    font-family: var(--font-editorial);
    font-size: clamp(1.65rem, 3vw, 2rem);
    text-transform: none;
}

.pricing-subtitle {
    margin-bottom: 1.1rem;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    color: var(--color-text-soft);
    opacity: 0.95;
}

.price-list {
    margin: var(--space-2) 0 0;
    padding: 0;
    list-style: none;
}

.price-list li {
    margin-bottom: 1.15rem;
    padding: 0.2rem 0;
    color: var(--color-text-soft);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.6rem;
}

.price-label {
    white-space: nowrap;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(59, 47, 51, 0.3);
    margin-inline: 0.35rem;
    transform: translateY(-0.28rem);
}

.price-highlight {
    font-weight: 600;
    color: var(--text-prune);
    font-size: 1.15rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin-left: 0;
}

.price-separator-item {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(59, 47, 51, 0.15);
}

.pricing-card .btn-pill {
    margin-top: auto;
    align-self: stretch;
    width: 100%;
    text-align: center;
}

.legal-note {
    max-width: 860px;
    margin: calc(var(--space-4) + 0.5rem) auto 0;
    color: var(--color-text-soft);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.legal-note p {
    margin: 0;
}

.legal-note p + p {
    margin-top: 0.85rem;
}

/* =========================================================
   PAGE CONTACT
   ========================================================= */
.contact-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.info-card,
.form-card {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--color-glass);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
}

.form-card .contact-form {
    position: relative;
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-success-banner {
    margin-bottom: var(--space-3);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    background: rgba(194, 213, 201, 0.55);
    border: 1px solid rgba(59, 47, 51, 0.12);
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: var(--space-2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.info-content p {
    margin-bottom: 0;
}

.contact-access-note {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
}

.form-group {
    margin-bottom: var(--space-2);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(59, 47, 51, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font: inherit;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.8);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(59, 47, 51, 0.35);
    outline-offset: 2px;
}

.btn-submit {
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font: inherit;
    color: var(--btn-on-accent);
    background: linear-gradient(150deg, var(--btn-sauge) 0%, var(--btn-sauge-deep) 100%);
    padding: 0.9rem 1.6rem;
    border-radius: var(--radius-pill);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(77, 106, 85, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(77, 106, 85, 0.34);
    background: linear-gradient(150deg, #6a8f74 0%, var(--btn-sauge) 100%);
}

.btn-submit:focus-visible {
    outline: 2px solid var(--btn-mauve);
    outline-offset: 3px;
}

.map-section {
    position: relative;
    min-height: 420px;
    padding: 0;
}

.map-section iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.map-overlay-card {
    position: absolute;
    left: 5%;
    bottom: 2rem;
    max-width: 330px;
    padding: var(--space-3);
    border-radius: var(--radius-md);
    background: var(--color-glass-strong);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
}

.map-overlay-title {
    margin-bottom: 5px;
}

.map-overlay-text {
    margin: 0;
    font-size: 0.9rem;
}

.map-overlay-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    text-decoration: underline;
}

/* =========================================================
   PAGE BLOG
   ========================================================= */
.blog-page {
    background-image: url("fondteleph.png");
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.03em;
}

.blog-hero-title {
    font-family: var(--font-body);
    font-size: clamp(2.15rem, 6.5vw, 3.45rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: 0.02em;
    max-width: 920px;
    margin: 0 auto var(--space-2);
    color: var(--text-prune);
    text-wrap: balance;
    position: relative;
    padding-bottom: var(--space-3);
}

.blog-hero-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(280px, 55vw);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, var(--mauve-soft) 80%, rgba(59, 47, 51, 0.35) 20%),
        transparent
    );
}

.blog-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 5% var(--space-6);
}

.blog-content h2 {
    margin-top: var(--space-5);
}

.blog-content h2:first-of-type {
    margin-top: 0;
}

.blog-tip-card {
    display: flex;
    gap: var(--space-2);
    align-items: flex-start;
    margin-bottom: 0.95rem;
    padding: var(--space-3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
}

.blog-tip-card:nth-of-type(odd) {
    background: color-mix(in srgb, var(--mauve-soft) 26%, rgba(255, 255, 255, 0.78) 74%);
}

.blog-tip-card:nth-of-type(even) {
    background: color-mix(in srgb, var(--sauge-soft) 24%, rgba(255, 255, 255, 0.8) 76%);
}

.blog-tip-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #7e5968, #3b2f33);
}

.blog-cta-box {
    margin-top: var(--space-5);
    padding: var(--space-4);
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(155deg, color-mix(in srgb, var(--mauve-soft) 26%, rgba(255, 255, 255, 0.82) 74%), color-mix(in srgb, var(--sauge-soft) 20%, rgba(255, 255, 255, 0.86) 80%));
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
}

.blog-cta-text {
    margin-bottom: 0;
}

.blog-cta-box .btn-pill + .btn-pill {
    margin-top: var(--space-2);
}

.blog-faq {
    margin-top: var(--space-5);
}

.blog-faq h2 {
    margin-bottom: var(--space-3);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

details.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    background: color-mix(in srgb, var(--mauve-soft) 18%, rgba(255, 255, 255, 0.88) 82%);
}

details.faq-item:nth-of-type(even) {
    background: color-mix(in srgb, var(--sauge-soft) 16%, rgba(255, 255, 255, 0.9) 84%);
}

details.faq-item[open] {
    box-shadow: var(--shadow-air);
}

.faq-summary {
    margin: 0;
    padding: var(--space-3);
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2.6vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.35;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    text-align: left;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: "";
    flex: 0 0 auto;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    translate: 0 -2px;
    opacity: 0.55;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

details.faq-item[open] .faq-summary::after {
    transform: rotate(-135deg);
    translate: 0 2px;
    opacity: 0.85;
}

.faq-summary:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 2px;
}

.faq-panel {
    padding: 0 var(--space-3) var(--space-3);
}

.faq-answer {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text);
}

/* =========================================================
   BLOC PASSERELLE GUIDE -> BLOG -> QUIZ
   ========================================================= */
.guide-bridge-section {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-6) 5%;
}

.guide-bridge-card {
    padding: clamp(1.8rem, 5vw, 3rem);
    background: linear-gradient(160deg, color-mix(in srgb, var(--mauve-soft) 25%, rgba(255, 255, 255, 0.82) 75%), color-mix(in srgb, var(--sauge-soft) 18%, rgba(255, 255, 255, 0.85) 82%));
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-air);
}

.editorial-title {
    font-family: var(--font-editorial);
    font-style: italic;
    letter-spacing: 0.03em;
}

.guide-bridge-title {
    font-size: clamp(1.8rem, 4.5vw, 2.2rem);
    margin-bottom: var(--space-3);
}

.guide-bridge-intro {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: var(--space-3);
}

.guide-bridge-lead {
    margin-bottom: var(--space-2);
}

.guide-bridge-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5);
    display: inline-block;
    text-align: left;
}

.guide-bridge-list li {
    margin-bottom: 0.8rem;
}

.guide-bridge-list li:last-child {
    margin-bottom: 0;
}

.guide-bridge-list i {
    margin-right: 12px;
    color: var(--color-text-soft);
}

.guide-bridge-actions {
    margin-bottom: var(--space-2);
}

.guide-bridge-separator {
    border: none;
    border-top: 1px solid rgba(59, 47, 51, 0.12);
    margin: var(--space-5) 0;
}

.guide-bridge-outro {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-4);
}


/* =========================================================
   RESPONSIVE TABLETTE / DESKTOP
   ========================================================= */
@media (min-width: 768px) {
    body {
        background-image: url("Vagues douces en dégradé pastel.png");
    }

    .blog-page {
        background-image: url("Vagues douces en dégradé pastel.png");
    }

    main section {
        padding: var(--space-7) 8%;
    }

    .site-header {
        width: 100%;
        padding: 1rem 8%;
    }


    .burger {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        width: auto;
        flex: 1;
        justify-content: center;
        flex-direction: row;
        align-items: center;
        gap: 1.4rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header > .btn-pill {
        display: inline-block;
    }

    .hero {
        justify-content: flex-end;
        min-height: calc(100svh - 7rem);
        margin-top: 0;
        padding-top: 0;
        padding-right: 8%;
    }

    .intro-text {
        margin-top: -100px;
    }

    .intro-text::before {
        content: none;
    }

    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }

    .intro-message {
        text-align: left;
    }

    .intro-keywords {
        min-height: 470px;
    }

    .pain-grid,
    .cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-panel {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-5);
    }

    .grid-symptoms {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .steps-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .locations-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr 1.4fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .blog-content {
        padding-inline: 8%;
    }
}


@media (min-width: 1024px) {
    .site-header {
        width: 100%;
    }

    main section,
    .page-header,
    .hero-tarifs,
    .contact-hero,
    .blog-hero {
        padding-inline: 10%;
    }

    .hero {
        min-height: calc(100svh - 7.3rem);
        padding-top: 0;
        padding-right: 10%;
    }

    .steps-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .blog-content {
        padding-inline: 10%;
    }
}

/* =========================================================
   RESPONSIVE MOBILE PRIORITAIRE
   ========================================================= */
@media (max-width: 900px) {
    .site-header {
        padding: 0.8rem 5%;
    }

    .burger {
        display: inline-flex;
    }

    .site-header > .btn-pill {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0.5rem 5% 0.9rem;
        border: 0;
        border-radius: 0;
        background: #fcfaf8;
        box-shadow: 0 14px 30px rgba(59, 47, 51, 0.14);
        z-index: 999;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header.menu-open .nav-links {
        display: flex;
    }

    .site-header.menu-open .nav-links a {
        padding: 0.8rem 0;
    }
}

@media (max-width: 768px) {
    .site-header {
        margin-bottom: var(--space-1);
    }

    body.page-accueil .site-header {
        margin-bottom: 0;
    }

    main section,
    .page-header,
    .hero-tarifs,
    .contact-hero,
    .blog-hero {
        padding: 4rem 5%;
    }

    main section.hero {
        padding-top: 0.75rem;
        padding-bottom: var(--space-5);
        padding-inline: 5%;
    }

    .hero {
        min-height: min(72svh, 560px);
        align-items: center;
        justify-content: center;
    }

    .hero .bg-video,
    .hero .video-overlay {
        display: none;
    }

    .hero .glass-card {
        margin-bottom: 0;
    }

    .intro-text {
        margin-top: -64px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-message {
        order: 1;
    }

    .intro-keywords {
        order: 2;
        max-width: 100%;
        min-height: 500px;
    }

    .intro-layout {
        padding-inline: clamp(0.55rem, 3vw, 1rem);
    }

    .intro-message .intro-card-item {
        margin-inline: -0.35rem;
        width: calc(100% + 0.7rem);
        max-width: none;
    }

    .keyword-1 {
        top: 2%;
        left: 2%;
        font-size: 1.55rem;
    }

    .keyword-2 {
        top: 14%;
        right: 2%;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    .keyword-3 {
        top: 56%;
        left: 4%;
        font-size: 1.1rem;
    }

    .keyword-4 {
        top: 37%;
        left: 7%;
        font-size: 1.4rem;
    }

    .keyword-5 {
        top: 86%;
        left: 30%;
    }

    .keyword-6 {
        top: 7%;
        left: 50%;
        font-size: 0.95rem;
    }

    .keyword-7 {
        top: 27%;
        left: 2%;
        font-size: 1.18rem;
    }

    .keyword-8 {
        top: 64%;
        right: 2%;
        font-size: 1.5rem;
    }

    .keyword-9 {
        top: 76%;
        right: 2%;
        font-size: 0.72rem;
        letter-spacing: 0.09em;
    }

    .keyword-10 {
        top: 94%;
        right: 5%;
        font-size: 0.98rem;
    }

    .grid-symptoms,
    .pain-grid,
    .cards-grid,
    .steps-container,
    .locations-container,
    .pricing-container,
    .contact-grid,
    .footer-container,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .aquarelle-blob--mauve {
        width: 230px;
        height: 230px;
        left: -120px;
        top: -70px;
    }

    .aquarelle-blob--sauge {
        width: 200px;
        height: 200px;
        right: -110px;
        top: 56%;
    }

    .blog-page .blog-hero {
        background: transparent;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.92);
        box-shadow: var(--shadow-soft);
        margin-inline: 4%;
        padding: var(--space-4) 1.15rem;
    }

    .blog-page .blog-content {
        background: transparent;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.92);
        box-shadow: var(--shadow-soft);
        margin-inline: 4%;
        margin-top: var(--space-3);
        padding: var(--space-4) 1.15rem var(--space-5);
    }
}

/* =========================================================
   MOBILE (≤768px) — mauve / vert : accueil + contact, tarifs, accomp., blog
   ========================================================= */
@media (max-width: 768px) {
    /* Carte héros : dégradé mauve → vert, même niveau de transparence qu’avant (~0,45) */
    .page-accueil .hero .glass-card {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.45) 0%,
            rgba(194, 213, 201, 0.45) 100%
        );
        border-color: rgba(255, 255, 255, 0.55);
        border-top-color: rgba(255, 255, 255, 0.75);
        border-left-color: rgba(255, 255, 255, 0.65);
    }

    /* Section intro : vert doux */
    .page-accueil .intro-text {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.34) 0%,
            rgba(194, 213, 201, 0.12) 100%
        );
    }

    /* Carte « Et si vous preniez… » : mauve */
    .page-accueil .intro-message .intro-card-item {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.62) 0%,
            rgba(176, 148, 208, 0.52) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    /* Mots-clés : impairs mauve, pairs vert */
    .page-accueil .intro-keywords .keyword-word:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accueil .intro-keywords .keyword-word:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.52) 0%,
            rgba(178, 205, 188, 0.44) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    /* Bloc symptômes : fond mauve léger */
    .page-accueil .pain-section {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.3) 0%,
            rgba(196, 168, 224, 0.1) 100%
        );
    }

    /* Cartes 1 / 3 mauve, carte 2 vert */
    .page-accueil .pain-item:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.62) 0%,
            rgba(176, 148, 208, 0.52) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accueil .pain-item:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.55) 0%,
            rgba(178, 205, 188, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    /* Section Méthode : fond vert doux (alterne avec pain en mauve) */
    .page-accueil .method-section {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.26) 0%,
            rgba(194, 213, 201, 0.08) 100%
        );
    }

    /* Comprendre + Libérer : mauve bien visible (plus de « blanc » dominé par le vert) */
    .page-accueil .method-card:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.62) 0%,
            rgba(176, 148, 208, 0.52) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    /* Apaiser : vert sauge */
    .page-accueil .method-card:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.55) 0%,
            rgba(178, 205, 188, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    /* Qui suis-je : panneau mauve (alterne après section Méthode verte) */
    .page-accueil .about-panel {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.62) 0%,
            rgba(176, 148, 208, 0.5) 100%
        );
        border-color: rgba(255, 255, 255, 0.78);
    }

    /* Témoignages : bandeau vert, cartes mauve / vert */
    .page-accueil .testimonials-section {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.3) 0%,
            rgba(194, 213, 201, 0.1) 100%
        );
    }

    .page-accueil .testimonial-card:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accueil .testimonial-card:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.52) 0%,
            rgba(178, 205, 188, 0.44) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accueil .site-footer {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.38) 0%,
            rgba(196, 168, 224, 0.16) 100%
        );
    }

    /* ---------- Contact ---------- */
    .page-contact .contact-hero {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.34) 0%,
            rgba(194, 213, 201, 0.1) 100%
        );
    }

    .page-contact .contact-section {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.18) 0%,
            rgba(196, 168, 224, 0.06) 100%
        );
    }

    .page-contact .info-card {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.62) 0%,
            rgba(176, 148, 208, 0.52) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-contact .form-card {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.55) 0%,
            rgba(178, 205, 188, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-contact .testimonials-section {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.3) 0%,
            rgba(194, 213, 201, 0.1) 100%
        );
    }

    .page-contact .testimonial-card:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-contact .testimonial-card:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.52) 0%,
            rgba(178, 205, 188, 0.44) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-contact .map-overlay-card {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border: 1px solid rgba(255, 255, 255, 0.72);
    }

    .page-contact .site-footer {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.32) 0%,
            rgba(194, 213, 201, 0.12) 100%
        );
    }

    /* ---------- Tarifs ---------- */
    .page-tarifs .hero-tarifs {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.32) 0%,
            rgba(196, 168, 224, 0.1) 100%
        );
    }

    .page-tarifs .pricing-section {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.22) 0%,
            rgba(194, 213, 201, 0.06) 100%
        );
    }

    .page-tarifs .pricing-card:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.62) 0%,
            rgba(176, 148, 208, 0.52) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-tarifs .pricing-card:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.55) 0%,
            rgba(178, 205, 188, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-tarifs .legal-note {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.42) 0%,
            rgba(176, 148, 208, 0.32) 100%
        );
        border-color: rgba(255, 255, 255, 0.78);
    }

    .page-tarifs .testimonials-section {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.28) 0%,
            rgba(194, 213, 201, 0.08) 100%
        );
    }

    .page-tarifs .testimonial-card:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-tarifs .testimonial-card:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.52) 0%,
            rgba(178, 205, 188, 0.44) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-tarifs .site-footer {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.34) 0%,
            rgba(196, 168, 224, 0.14) 100%
        );
    }

    /* ---------- Accompagnements ---------- */
    .page-accompagnements .page-header {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.28) 0%,
            rgba(194, 213, 201, 0.08) 100%
        );
    }

    .page-accompagnements .why-consult {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.22) 0%,
            rgba(196, 168, 224, 0.06) 100%
        );
    }

    .page-accompagnements .symptom-item:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .symptom-item:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.52) 0%,
            rgba(178, 205, 188, 0.44) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .guide-bridge-card {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(194, 213, 201, 0.42) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .quiz-section {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.24) 0%,
            rgba(194, 213, 201, 0.06) 100%
        );
    }

    .page-accompagnements .quiz-card {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .method-steps {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.2) 0%,
            rgba(194, 213, 201, 0.05) 100%
        );
    }

    .page-accompagnements .step-card:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .step-card:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.52) 0%,
            rgba(178, 205, 188, 0.44) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .locations {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.2) 0%,
            rgba(196, 168, 224, 0.06) 100%
        );
    }

    .page-accompagnements .location-card:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .location-card:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.52) 0%,
            rgba(178, 205, 188, 0.44) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .testimonials-section {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.28) 0%,
            rgba(194, 213, 201, 0.08) 100%
        );
    }

    .page-accompagnements .testimonial-card:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .testimonial-card:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.52) 0%,
            rgba(178, 205, 188, 0.44) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    .page-accompagnements .site-footer {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.32) 0%,
            rgba(194, 213, 201, 0.12) 100%
        );
    }

    /* ---------- Blog (body.blog-page) ---------- */
    body.blog-page .blog-hero {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.46) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    body.blog-page .blog-content {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.38) 0%,
            rgba(178, 205, 188, 0.22) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    body.blog-page .blog-tips > .blog-tip-card:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.58) 0%,
            rgba(176, 148, 208, 0.48) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    body.blog-page .blog-tips > .blog-tip-card:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.52) 0%,
            rgba(178, 205, 188, 0.44) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    body.blog-page .faq-accordion .faq-item:nth-child(odd) {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.48) 0%,
            rgba(176, 148, 208, 0.38) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    body.blog-page .faq-accordion .faq-item:nth-child(even) {
        background: linear-gradient(
            180deg,
            rgba(194, 213, 201, 0.46) 0%,
            rgba(178, 205, 188, 0.36) 100%
        );
        border-color: rgba(255, 255, 255, 0.72);
    }

    body.blog-page .blog-cta-box {
        background: linear-gradient(
            145deg,
            rgba(196, 168, 224, 0.55) 0%,
            rgba(194, 213, 201, 0.45) 100%
        );
        border-color: rgba(255, 255, 255, 0.75);
    }

    body.blog-page .site-footer {
        background: linear-gradient(
            180deg,
            rgba(196, 168, 224, 0.34) 0%,
            rgba(196, 168, 224, 0.12) 100%
        );
    }
}
