/* ══════════════════════════════════════════════
   MAMZELLE PARISETTE — Template "Brume Dorée"
   Palette : #FAF8F5 (ivoire) / #C4985A (or antique) / #3A3028 (brun)
   Fonts  : Cormorant Garamond (headings) + DM Sans (body)
   ══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --bg: #FAF8F5;
    --bg-light: #F2EDE8;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F5F0EB;

    --accent: #C4985A;
    --accent-light: #D4B87A;
    --accent-dark: #A07840;
    --accent-glow: rgba(196, 152, 90, 0.3);

    --silver: #8B7B68;
    --silver-light: #6B5B48;
    --silver-muted: #A09080;

    --white: #2A2A35;
    --white-muted: #5A5048;
    --text: #3A3028;
    --text-muted: #8A7E70;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--silver-light);
}

ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    line-height: 1.2;
    font-weight: 600;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Canvas nébuleuse (désactivé, remplacé par cartes flottantes) ── */
#nebula-canvas {
    display: none;
}

/* ── Cartes de tarot flottantes (fond global) ── */
.floating-tarot-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-tarot-card {
    position: absolute;
    height: var(--card-size, 60px);
    width: auto;
    opacity: var(--card-opacity, 0.1);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform, opacity;
    filter: sepia(0.3) saturate(0.6) brightness(1.1);
}

.floating-tarot-card img {
    height: 100%;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(196, 152, 90, 0.2);
}

/* ── Traversée gauche → droite ── */
@keyframes traverse-left-right {
    0%   { left: -15%; top: var(--offset, 50%); transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
    5%   { opacity: var(--card-opacity, 0.1); }
    50%  { transform: rotate(var(--end-rot, 15deg)); }
    95%  { opacity: var(--card-opacity, 0.1); }
    100% { left: 110%; top: var(--offset, 50%); transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
}

/* ── Traversée droite → gauche ── */
@keyframes traverse-right-left {
    0%   { right: -15%; top: var(--offset, 50%); transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
    5%   { opacity: var(--card-opacity, 0.1); }
    50%  { transform: rotate(var(--end-rot, -15deg)); }
    95%  { opacity: var(--card-opacity, 0.1); }
    100% { right: 110%; top: var(--offset, 50%); transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
}

/* ── Traversée haut → bas ── */
@keyframes traverse-top-bottom {
    0%   { top: -20%; left: var(--offset, 50%); transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
    5%   { opacity: var(--card-opacity, 0.1); }
    50%  { transform: rotate(var(--end-rot, 10deg)); }
    95%  { opacity: var(--card-opacity, 0.1); }
    100% { top: 110%; left: var(--offset, 50%); transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
}

/* ── Traversée bas → haut ── */
@keyframes traverse-bottom-top {
    0%   { bottom: -20%; left: var(--offset, 50%); transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
    5%   { opacity: var(--card-opacity, 0.1); }
    50%  { transform: rotate(var(--end-rot, -10deg)); }
    95%  { opacity: var(--card-opacity, 0.1); }
    100% { bottom: 110%; left: var(--offset, 50%); transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
}

/* ── Traversée diagonale bas-gauche → haut-droite ── */
@keyframes traverse-diag-1 {
    0%   { left: -15%; bottom: -10%; transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
    5%   { opacity: var(--card-opacity, 0.1); }
    50%  { transform: rotate(var(--end-rot, 20deg)); }
    95%  { opacity: var(--card-opacity, 0.1); }
    100% { left: 110%; bottom: 110%; transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
}

/* ── Traversée diagonale haut-gauche → bas-droite ── */
@keyframes traverse-diag-2 {
    0%   { left: -15%; top: -10%; transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
    5%   { opacity: var(--card-opacity, 0.1); }
    50%  { transform: rotate(var(--end-rot, -20deg)); }
    95%  { opacity: var(--card-opacity, 0.1); }
    100% { left: 110%; top: 110%; transform: rotate(var(--start-rot, 0deg)); opacity: 0; }
}

/* Réduction du mouvement si préférence utilisateur */
@media (prefers-reduced-motion: reduce) {
    .floating-tarot-card {
        animation: none;
    }
}

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(196, 152, 90, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1;
    transition: transform var(--transition);
}

.nav-logo:hover {
    transform: scale(1.03);
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--accent-dark);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-logo img {
    display: none;
}

.footer-brand .nav-logo .logo-name {
    font-size: 1.7rem;
}

.footer-brand .nav-logo .logo-sub {
    font-size: 0.65rem;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link {
    color: var(--white-muted);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-cta {
    background: var(--accent);
    color: #FFFFFF !important;
    padding: 0.55rem 1.3rem !important;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════
   HERO — 100vh Nébuleuse
   ══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    padding-left: 5%;
}

/* ── Hero Video Background ── */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0.4) brightness(0.85) sepia(0.3) hue-rotate(10deg) contrast(1.05);
}

.hero-video .hero-overlay {
    background:
        radial-gradient(ellipse at center, rgba(250, 248, 245, 0.35) 0%, rgba(250, 248, 245, 0.6) 50%, var(--bg) 85%),
        linear-gradient(180deg, rgba(250, 248, 245, 0.2) 0%, transparent 40%, var(--bg) 95%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg) 75%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 2.5rem 3rem;
    text-align: left;
    background: radial-gradient(ellipse at center, rgba(250, 248, 245, 0.92) 0%, rgba(250, 248, 245, 0.7) 50%, rgba(250, 248, 245, 0.3) 75%, transparent 100%);
    border-radius: 20px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    text-shadow:
        0 0 15px rgba(250, 248, 245, 1),
        0 0 30px rgba(250, 248, 245, 0.8);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-title .hero-line {
    display: block;
    opacity: 0;
    transform: scale(0.5);
}

.hero-title .hero-accent {
    color: var(--accent-dark);
    -webkit-text-fill-color: var(--accent-dark);
    text-shadow:
        0 0 20px rgba(250, 248, 245, 1),
        0 0 40px rgba(250, 248, 245, 0.9),
        0 0 70px rgba(250, 248, 245, 0.7);
}

.hero-title {
    text-shadow:
        0 0 20px rgba(250, 248, 245, 1),
        0 0 40px rgba(250, 248, 245, 0.9),
        0 0 60px rgba(250, 248, 245, 0.7),
        0 0 80px rgba(250, 248, 245, 0.5);
    color: #2A2018;
}

/* Hero title reveal — slow zoom from depth */
.hero.revealed .hero-title .hero-line:nth-child(1) {
    animation: titleDepth 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero.revealed .hero-title .hero-line:nth-child(2) {
    animation: titleDepth 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes titleDepth {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #3A3028;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    text-shadow:
        0 0 15px rgba(250, 248, 245, 1),
        0 0 30px rgba(250, 248, 245, 0.9),
        0 0 50px rgba(250, 248, 245, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

/* Hero reveal animation */
.hero.revealed .hero-badge {
    animation: heroReveal 0.8s ease forwards 0.2s;
}
/* .hero-title is animated via .hero-line keyframes */
.hero.revealed .hero-subtitle {
    animation: heroReveal 0.8s ease forwards 0.6s;
}
.hero.revealed .hero-buttons {
    animation: heroReveal 0.8s ease forwards 0.8s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: heroReveal 0.8s ease forwards 1.2s;
}

.hero-scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ══════════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    padding: 1rem 2.2rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.3;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #FFFFFF;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(196, 152, 90, 0.45);
    color: #FFFFFF;
}

.btn-outline {
    background: transparent;
    color: var(--silver);
    border: 1px solid rgba(196, 152, 90, 0.3);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--white);
    background: rgba(196, 152, 90, 0.08);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 1.1em;
    transition: transform var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-text {
    display: inline;
}

/* ══════════════════════════════════════════════
   SECTIONS — Commun
   ══════════════════════════════════════════════ */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--white-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section spacing */
.section-padding {
    padding: 6rem 0;
    margin-top: 100px;
}

/* ══════════════════════════════════════════════
   DIVISEUR FOG / SMOKE
   ══════════════════════════════════════════════ */
.fog-divider {
    position: relative;
    height: 0;
    z-index: 1;
}

/* Fondu bas du hero vers le contenu — transition imperceptible */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(to bottom, transparent 0%, rgba(250, 248, 245, 0.6) 50%, var(--bg) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Première section après le hero : chevauchement pour fondu parfait */
.hero + .fog-divider + .split-section,
.hero + .fog-divider + section {
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.hero + .fog-divider + .split-section::before,
.hero + .fog-divider + section::before {
    content: none;
}

/* ══════════════════════════════════════════════
   SPLIT SECTIONS — Alternance 50/50
   ══════════════════════════════════════════════ */
.split-section {
    padding: 5rem 0;
    margin-top: 100px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Alternance : sections impaires = texte gauche / image droite (défaut)
   Sections paires = image gauche / texte droite (inversé) */
.split-section.layout-reverse .split-grid {
    direction: rtl;
}

.split-section.layout-reverse .split-grid > * {
    direction: ltr;
}

/* Décalages verticaux entre texte et image */
.split-grid .split-content {
    margin-top: 5rem;
}

/* Première section split : image remontée au niveau du bouton hero */
.hero + .fog-divider + .split-section .split-visual {
    margin-top: -34rem;
    position: relative;
    z-index: 4;
}

/* Première section split : titre aligné avec le bas de l'image */
.hero + .fog-divider + .split-section .split-grid {
    align-items: end;
}

.hero + .fog-divider + .split-section .split-grid .split-content {
    margin-top: 0;
    padding-bottom: 0.5rem;
}

/* Bloc texte pleine largeur sous le grid */
.split-fullwidth {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.split-fullwidth .split-text {
    max-width: 100%;
}

.split-fullwidth .btn {
    align-self: flex-start;
}

.split-section.layout-reverse .split-grid .split-content {
    margin-top: 0;
    align-self: center;
}

.split-section.layout-reverse .split-grid .split-visual {
    margin-top: 5rem;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.split-content .btn {
    align-self: center;
}

.split-content .section-tag {
    margin-bottom: 0;
}

.split-content .section-title {
    text-align: left;
    margin-bottom: 0;
}

.split-text {
    color: var(--white-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.split-text strong {
    color: var(--white);
    font-weight: 600;
}

.split-visual {
    position: relative;
    border-radius: 10px;
    overflow: visible;
    padding: 5px;
    background: linear-gradient(145deg,
        var(--accent) 0%,
        var(--accent-light) 15%,
        rgba(196, 152, 90, 0.2) 30%,
        rgba(212, 184, 122, 0.5) 50%,
        rgba(196, 152, 90, 0.2) 70%,
        var(--accent-light) 85%,
        var(--accent) 100%);
    box-shadow:
        0 0 10px rgba(196, 152, 90, 0.25),
        0 0 30px rgba(196, 152, 90, 0.15),
        0 0 60px rgba(196, 152, 90, 0.08),
        inset 0 0 20px rgba(196, 152, 90, 0.1),
        0 15px 50px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.split-visual:hover {
    box-shadow:
        0 0 15px rgba(196, 152, 90, 0.4),
        0 0 45px rgba(196, 152, 90, 0.2),
        0 0 80px rgba(196, 152, 90, 0.1),
        inset 0 0 25px rgba(196, 152, 90, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.split-visual img {
    width: 100%;
    border-radius: 6px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Lueur mystique extérieure */
.split-visual::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 16px;
    background: conic-gradient(
        from 0deg,
        rgba(196, 152, 90, 0.3),
        rgba(212, 184, 122, 0.1) 25%,
        rgba(196, 152, 90, 0.3) 50%,
        rgba(212, 184, 122, 0.1) 75%,
        rgba(196, 152, 90, 0.3)
    );
    opacity: 0.5;
    filter: blur(12px);
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: mysticGlow 6s ease-in-out infinite;
}

.split-visual:hover::before {
    opacity: 0.8;
}

@keyframes mysticGlow {
    0%, 100% { opacity: 0.4; filter: blur(12px); }
    50% { opacity: 0.7; filter: blur(16px); }
}

/* Ornement coin — étoile mystique */
.split-visual::after {
    content: '✦';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--accent);
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(196, 152, 90, 0.4),
        0 0 25px rgba(196, 152, 90, 0.2);
    z-index: 2;
    animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(196, 152, 90, 0.4), 0 0 25px rgba(196, 152, 90, 0.2); }
    50% { box-shadow: 0 0 15px rgba(196, 152, 90, 0.6), 0 0 35px rgba(196, 152, 90, 0.3); }
}

/* Image sans cadre (ex: schéma tirage en croix) */
.split-visual.split-visual-naked {
    background: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    transform: scale(1.25);
    transform-origin: center center;
}

.split-visual.split-visual-naked:hover {
    box-shadow: none;
    transform: none;
}

.split-visual.split-visual-naked::before,
.split-visual.split-visual-naked::after {
    content: none;
}

.split-visual.split-visual-naked img {
    border-radius: 0;
}

/* ══════════════════════════════════════════════
   FLIP CARDS
   ══════════════════════════════════════════════ */
.flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.flip-card {
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card:focus {
    outline: 2px solid var(--accent-light);
    outline-offset: 4px;
    border-radius: var(--radius);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.flip-card-front {
    background: var(--bg-card);
    border: 1px solid rgba(196, 152, 90, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.flip-card-back {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: 1px solid rgba(196, 152, 90, 0.25);
    transform: rotateY(180deg);
}

.flip-card-back p {
    color: #FFFFFF;
}

.flip-card-back p {
    font-size: 0.95rem;
    color: var(--silver-light);
    line-height: 1.7;
}

.flip-icon {
    margin-bottom: 1.2rem;
    color: var(--accent-light);
    transition: color var(--transition);
}

.flip-icon svg {
    width: 48px;
    height: 48px;
}

.flip-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(0.65) sepia(0.6) hue-rotate(10deg) saturate(1.5) brightness(1.1);
    transition: filter var(--transition);
}

.flip-card:hover .flip-icon img,
.flip-card:focus .flip-icon img {
    filter: brightness(0) invert(0.55) sepia(0.7) hue-rotate(10deg) saturate(1.8) brightness(1.0);
}

.flip-card:hover .flip-icon,
.flip-card:focus .flip-icon {
    color: var(--silver);
}

.flip-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.flip-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
}

/* ══════════════════════════════════════════════
   TIMELINE / PROCESSUS
   ══════════════════════════════════════════════ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 14px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(196, 152, 90, 0.1));
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 0 15px var(--accent-glow);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid rgba(196, 152, 90, 0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   ACCORDÉONS
   ══════════════════════════════════════════════ */
.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: var(--white-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    cursor: pointer;
    padding: 0.6rem 0 0;
    transition: color var(--transition);
    text-align: left;
}

.accordion-trigger:hover {
    color: var(--accent-light);
}

.accordion-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition);
}

.accordion-icon::before {
    top: 50%;
    left: 3px;
    right: 3px;
    height: 2px;
    transform: translateY(-50%);
}

.accordion-icon::after {
    left: 50%;
    top: 3px;
    bottom: 3px;
    width: 2px;
    transform: translateX(-50%);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-panel.open {
    max-height: 500px;
    padding-top: 0.8rem;
}

.accordion-panel p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CARDS SPÉCIALITÉS
   ══════════════════════════════════════════════ */
.specialites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.spec-card {
    background: var(--bg-card);
    border: 1px solid rgba(196, 152, 90, 0.12);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.spec-card:hover {
    border-color: rgba(196, 152, 90, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 152, 90, 0.12);
}

.spec-icon {
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.spec-icon svg {
    width: 40px;
    height: 40px;
}

.spec-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(0.65) sepia(0.6) hue-rotate(10deg) saturate(1.5) brightness(1.1);
}

.spec-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.spec-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--accent-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem 0 0;
    transition: color var(--transition);
}

.spec-toggle:hover {
    color: var(--silver);
}

.spec-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.spec-detail.open {
    max-height: 300px;
    padding-top: 0.8rem;
}

.spec-detail p {
    color: var(--white-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   BARRE DE FIABILITÉ
   ══════════════════════════════════════════════ */
.fiabilite-bar {
    position: relative;
    height: 6px;
    background: rgba(196, 152, 90, 0.1);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
}

.fiabilite-fill {
    height: 100%;
    width: var(--fill);
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px;
    transition: width 1.5s ease;
}

.fiabilite-label {
    position: absolute;
    right: 0;
    top: -22px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-light);
}

/* ══════════════════════════════════════════════
   COMPARAISON
   ══════════════════════════════════════════════ */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.compare-card {
    background: var(--bg-card);
    border: 1px solid rgba(196, 152, 90, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}

.compare-card.compare-pro {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.compare-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.compare-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(196, 152, 90, 0.1);
}

.compare-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.compare-card.compare-free .compare-icon { color: var(--text-muted); }
.compare-card.compare-pro .compare-icon { color: var(--accent-light); }

.compare-header h3 {
    font-size: 1.2rem;
}

.compare-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--white-muted);
    line-height: 1.5;
}

.list-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.85rem;
}

.list-icon.positive { color: var(--accent-light); }
.list-icon.negative { color: var(--text-muted); opacity: 0.5; }

.compare-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-style: italic;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════════════
   ENGAGEMENTS
   ══════════════════════════════════════════════ */
.engagements-grid,
.engagements-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.engagement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(196, 152, 90, 0.1);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.engagement-item:hover {
    border-color: rgba(196, 152, 90, 0.2);
}

.engagement-check {
    color: var(--accent-light);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.engagement-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.2rem;
}

.engagement-item p {
    color: var(--white-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   TÉMOIGNAGES
   ══════════════════════════════════════════════ */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.temoignage-card {
    background: var(--bg-card);
    border: 1px solid rgba(196, 152, 90, 0.1);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.temoignage-card:hover {
    border-color: rgba(196, 152, 90, 0.25);
}

.temoignage-stars {
    color: var(--accent-light);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.temoignage-text {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.temoignage-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.temoignage-author cite {
    font-style: normal;
    color: var(--silver);
    font-size: 0.9rem;
}

.temoignage-author cite strong {
    color: var(--white);
}

/* Avatar style (for pages that use it) */
.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.author-name {
    font-style: normal;
    font-weight: 600;
    color: var(--white);
    font-size: 0.92rem;
}

.author-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Carousel témoignages */
.temoignages-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.temoignages-track {
    display: flex;
    gap: 2rem;
    animation: temoignages-scroll 35s linear infinite;
    width: max-content;
}

.temoignages-track:hover {
    animation-play-state: paused;
}

.temoignages-track .temoignage-card {
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
}

@keyframes temoignages-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   SECTION FINALE / CTA
   ══════════════════════════════════════════════ */
.final-cta {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(196, 152, 90, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.final-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--accent-light);
    margin: 1.5rem 0;
    text-shadow: 0 0 30px rgba(196, 152, 90, 0.35);
}

.final-text {
    color: var(--white-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.final-text strong {
    color: var(--white);
}

.final-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   OUTIL BOULE DE CRISTAL (interactif)
   ══════════════════════════════════════════════ */
.cristal-tool {
    padding: 5rem 0;
}

.cristal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.cristal-sphere {
    position: relative;
    width: 280px;
    height: 280px;
    cursor: pointer;
}

.cristal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    transition: filter 0.5s ease;
}

.cristal-sphere:hover .cristal-img {
    filter: drop-shadow(0 0 50px rgba(196, 152, 90, 0.4));
}

.cristal-aura {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 152, 90, 0.2) 0%, transparent 70%);
    z-index: 1;
    animation: auraPulse 3s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

.cristal-aura.active {
    animation: auraActive 1s ease-in-out infinite;
    background: radial-gradient(circle, rgba(196, 152, 90, 0.35) 0%, transparent 70%);
}

@keyframes auraActive {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.cristal-response {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--accent-light);
    text-align: center;
    min-height: 2rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.cristal-response.visible {
    opacity: 1;
}

.cristal-step {
    width: 100%;
    text-align: center;
}

.cristal-instruction {
    color: var(--white-muted);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.cristal-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.cristal-input {
    width: 100%;
    max-width: 400px;
    padding: 0.9rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid rgba(196, 152, 90, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.cristal-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.cristal-input::placeholder {
    color: var(--text-muted);
}

.cristal-email-error {
    color: #e74c3c;
    font-size: 0.82rem;
    min-height: 1.2rem;
}

.cristal-confirmation {
    color: var(--accent-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cristal-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.cristal-disclaimer a {
    color: var(--accent-light);
}

/* ══════════════════════════════════════════════
   TARIFS
   ══════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(196, 152, 90, 0.1);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(196, 152, 90, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(196, 152, 90, 0.15);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-name {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.pricing-price small {
    font-size: 0.45em;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.5rem 0 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--white-muted);
}

.pricing-features li::before {
    content: '✦';
    color: var(--accent-light);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(196, 152, 90, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(196, 152, 90, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.faq-question h3 {
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.2rem;
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(196, 152, 90, 0.1);
}

.footer-top {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--silver);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(196, 152, 90, 0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-legal {
    font-size: 0.78rem !important;
    margin-top: 0.4rem;
    opacity: 0.7;
}

/* ══════════════════════════════════════════════
   STICKY CTA
   ══════════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #FFFFFF;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(196, 152, 90, 0.35);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition);
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(196, 152, 90, 0.45);
    color: #FFFFFF;
}

.sticky-cta-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    animation: stickyCTAPulse 2s ease-in-out infinite;
    border: 2px solid var(--accent-light);
    pointer-events: none;
}

@keyframes stickyCTAPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.05); opacity: 0; }
}

.sticky-cta-icon {
    font-size: 1.1rem;
}

/* ══════════════════════════════════════════════
   ANIMATIONS - Scroll reveal
   ══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glow text effect */
.glow-text {
    text-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(196, 152, 90, 0.15);
}

/* ══════════════════════════════════════════════
   MENTIONS LÉGALES — contenu texte
   ══════════════════════════════════════════════ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--silver);
}

.legal-content p {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--white);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .split-section.layout-reverse .split-grid {
        direction: ltr;
    }

    .split-content .section-title {
        text-align: center;
    }

    .split-content {
        text-align: center;
    }

    .split-grid .split-content,
    .split-section.layout-reverse .split-grid .split-content,
    .split-grid .split-visual,
    .split-section.layout-reverse .split-grid .split-visual {
        margin-top: 0;
    }

    .section-padding,
    .split-section {
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-padding {
        padding: 4rem 0;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .flip-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta-text {
        display: none;
    }

    .sticky-cta {
        padding: 1rem;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .sticky-cta-icon {
        font-size: 1.3rem;
    }
}
