/* ==========================================
   REFLEXES HARMONIE - Psychomotricienne
   Light mode — 5 ambiances de fond
   Accent fixe : Ocean (bleu / cyan)
   ========================================== */

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === ACCENT UNIQUE OCEAN (fixe) === */
:root {
    --accent: #1A8A82;
    --accent-hover: #14726B;
    --accent-glow: rgba(26, 138, 130, 0.2);
    --accent-subtle: rgba(26, 138, 130, 0.08);
    --accent-light: #3DBCB2;
    --gradient-accent: linear-gradient(135deg, #1D6FA3, #0E8C7F, #2D9A6E);
    --gradient-accent-r: linear-gradient(135deg, #2D9A6E, #0E8C7F, #1D6FA3);

    /* Couleurs de base claires */
    --bg-dark: #FAFBFE;
    --bg-section: #F1F5F9;
    --bg-card: rgba(255, 255, 255, 0.55);
    --bg-card-hover: rgba(255, 255, 255, 0.7);

    --border: #E2E8F0;
    --border-light: #CBD5E1;

    --text: #1E293B;
    --text-dim: #475569;
    --text-muted: #94A3B8;

    --green: #16A34A;

    /* Ombres claires */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 4px 16px rgba(26, 138, 130, 0.18);

    /* Spacing */
    --container: 1100px;
    --section-py: 100px;

    /* Radius */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* === 5 AMBIANCES DE FOND (via data-bg) === */

/* 1. Serenite (defaut) — Blanc bleute */
:root,
[data-bg="serenite"] {
    --bg-dark: #FAFBFE;
    --bg-section: #F1F5F9;
}

/* 2. Nature — Vert d'eau */
[data-bg="nature"] {
    --bg-dark: #F0FDF9;
    --bg-section: #ECFDF5;
}

/* 3. Douceur — Creme chaud */
[data-bg="douceur"] {
    --bg-dark: #FFFBF0;
    --bg-section: #FEF9EE;
}

/* 4. Ciel — Bleu pale */
[data-bg="ciel"] {
    --bg-dark: #F0F7FF;
    --bg-section: #EFF6FF;
}

/* 5. Lavande — Mauve pale */
[data-bg="lavande"] {
    --bg-dark: #F8F5FF;
    --bg-section: #F5F3FF;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: url('assets/fond-degrade.webp') center/cover fixed no-repeat;
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Tout le contenu au-dessus du fond anime */
.header, .hero, section, .footer {
    position: relative;
    z-index: 1;
}

/* Smooth fade-in/fade-out pour toutes les sections de contenu */
section::before,
section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 0;
}
section::before {
    top: -60px;
    background: linear-gradient(180deg, transparent, var(--section-bg, rgba(255, 255, 255, 0.55)));
}
section::after {
    bottom: -60px;
    background: linear-gradient(180deg, var(--section-bg, rgba(255, 255, 255, 0.55)), transparent);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--accent-subtle);
    border-radius: var(--radius-full);
    border: 1px solid rgba(26, 138, 130, 0.15);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.text-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 138, 130, 0.25);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   HEADER / NAV
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    border-radius: 6px;
    flex-shrink: 0;
    object-fit: contain;
}

.nav-logo-text {
    color: var(--text);
    white-space: nowrap;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-link {
    padding: 8px 11px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dim);
    white-space: nowrap;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--accent-subtle);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 138, 130, 0.25);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-close {
    display: none;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    margin-bottom: 120px;
    background: rgba(255, 255, 255, 0.55);
}

/* Smooth fade-out en bas du hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
    pointer-events: none;
}

/* Cache hero-bg et hero-gradient (le body porte deja le fond degrade) */
.hero-bg,
.hero-gradient,
.hero-pattern {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(26, 138, 130, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-title-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-dim);
    box-shadow: var(--shadow-md);
    animation: scrollBounce 2s infinite;
    transition: color 0.3s, border-color 0.3s;
}

.hero-scroll-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   PRESENTATION
   ========================================== */
.presentation {
    padding: var(--section-py) 0;
    margin-bottom: 120px;
    --section-bg: rgba(255, 255, 255, 0.55);
    background: var(--section-bg);
}

.pres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pres-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
    box-shadow: var(--shadow-sm);
}

.pres-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 138, 130, 0.25);
}

.pres-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--accent-subtle);
    color: var(--accent);
    margin-bottom: 20px;
}

.pres-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.pres-card p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ==========================================
   PSYCHOMOTRICITE
   ========================================== */
.psychomotricite {
    padding: var(--section-py) 0;
    margin-bottom: 120px;
    --section-bg: rgba(240, 253, 249, 0.5);
    background: var(--section-bg);
}

.psycho-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.psycho-text p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 16px;
}

.psycho-text p:last-child {
    margin-bottom: 0;
}

.psycho-text strong {
    color: var(--text);
    font-weight: 600;
}

/* Infographie psychomotricite — pleine largeur */
.psycho-infographie {
    max-width: var(--container);
    margin: 48px auto 0;
    padding: 0 24px;
}

.psycho-infographie img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* Slider photos psychomotricite */
.psycho-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.slider-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.slider-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* === SECTION IMAGES (paires d'images d'ambiance) === */
.section-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--bg-card);
}

.section-images--single {
    grid-template-columns: 1fr;
    max-width: 500px;
}

.section-images--single img {
    height: 280px;
}

.section-images--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}

.section-images--three img {
    height: 200px;
}

/* ==========================================
   CONSULTATIONS
   ========================================== */
.consultations {
    padding: var(--section-py) 0;
    margin-bottom: 120px;
    --section-bg: rgba(240, 247, 255, 0.55);
    background: var(--section-bg);
}

.consult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.consult-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
}

.consult-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.consult-block h3 svg {
    color: var(--accent);
    flex-shrink: 0;
}

.consult-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.consult-block ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.consult-block ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.consult-block p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 12px;
}

.consult-block p strong {
    color: var(--text);
}

/* ==========================================
   REFLEXES ARCHAIQUES
   ========================================== */
.reflexes {
    padding: var(--section-py) 0;
    margin-bottom: 120px;
    --section-bg: rgba(255, 251, 240, 0.5);
    background: var(--section-bg);
}

.reflexes-intro {
    max-width: 800px;
    margin: 0 auto 48px;
}

.reflexes-intro blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    color: var(--text);
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
}

.reflexes-intro blockquote::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 0 auto 16px;
    border-radius: 3px;
}

.reflexes-intro blockquote cite {
    display: block;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--text-muted);
}

.reflexes-intro p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    text-align: center;
}

.reflexes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.reflex-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
    box-shadow: var(--shadow-sm);
}

.reflex-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 138, 130, 0.25);
}

.reflex-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.reflex-card h3 span {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.reflex-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Impact */
.reflexes-impact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.reflexes-impact h3 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impact-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-section);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.impact-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-item p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Rôle des réflexes */
.reflexes-role {
    max-width: 800px;
    margin: 48px auto;
    text-align: center;
}

.reflexes-role h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.reflexes-role blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
    padding: 16px 0;
}

.reflexes-role blockquote cite {
    display: block;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--text-muted);
}

.reflexes-role p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Impact intro text */
.reflexes-impact-intro {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 24px;
}

/* Que faire — action */
.reflexes-action {
    margin-top: 48px;
}

.reflexes-action h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 28px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.action-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.action-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.action-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.action-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.action-item a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.action-item a:hover {
    color: var(--accent-hover);
}

/* Bilan psychomoteur */
.reflexes-bilan {
    max-width: 800px;
    margin: 48px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.reflexes-bilan h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 20px;
}

.reflexes-bilan p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 12px;
}

.reflexes-bilan p:last-child {
    margin-bottom: 0;
}

/* Bienfaits */
.reflexes-bienfaits {
    max-width: 800px;
    margin: 48px auto 0;
}

.reflexes-bienfaits h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 20px;
}

.reflexes-bienfaits p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: center;
}

/* Public cible */
.reflexes-public {
    max-width: 700px;
    margin: 48px auto 0;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.reflexes-public h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.reflexes-public p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.reflexes-public strong {
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================
   QUI SUIS-JE
   ========================================== */
.about {
    padding: var(--section-py) 0;
    margin-bottom: 120px;
    --section-bg: rgba(248, 245, 255, 0.55);
    background: var(--section-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: flex-start;
}

.about-photo {
    text-align: center;
    position: sticky;
    top: 120px;
}

.about-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.about-photo-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
}

.about-photo-title {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-formations {
    margin-top: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.about-formations h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.about-formations h3 svg {
    color: var(--accent);
}

.about-formations ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-formations ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dim);
}

.about-formations ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================
   TARIFS
   ========================================== */
.tarifs {
    padding: var(--section-py) 0;
    margin-bottom: 120px;
    --section-bg: rgba(236, 253, 245, 0.5);
    background: var(--section-bg);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.tarif-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
    box-shadow: var(--shadow-sm);
}

.tarif-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 138, 130, 0.25);
}

.tarif-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
    position: relative;
}

.tarif-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 4px 16px;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.tarif-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--accent-subtle);
    color: var(--accent);
    margin: 0 auto 20px;
}

.tarif-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.tarif-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.tarif-price span {
    font-size: 1.2rem;
    color: var(--text-dim);
}

.tarif-desc {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Info tarifs */
.tarifs-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.tarifs-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.tarifs-info h3 svg {
    color: var(--accent);
}

.tarifs-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tarifs-info-block h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.tarifs-info-block p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.tarifs-info-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tarifs-info-block ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-dim);
}

.tarifs-info-block ul li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    padding: var(--section-py) 0;
    margin-bottom: 120px;
    --section-bg: rgba(240, 247, 255, 0.6);
    background: var(--section-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}

.contact-item:hover {
    border-color: rgba(26, 138, 130, 0.25);
    box-shadow: var(--shadow-md);
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--accent-subtle);
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 2px;
}

/* Horaires */
.contact-hours {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.contact-hours h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.contact-hours h3 svg {
    color: var(--accent);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.hours-time {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.hours-note {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* CTA Contact */
.contact-cta {
    margin-top: auto;
}

/* === FORMULAIRE DE CONTACT === */
.contact-form-wrapper {
    margin-top: 32px;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.contact-form-card h3 svg {
    color: var(--accent);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #EF4444;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

select.form-input option {
    background: #fff;
    color: var(--text);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, opacity 0.3s;
    box-shadow: var(--shadow-accent);
    margin-top: 8px;
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 138, 130, 0.25);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-submit svg {
    flex-shrink: 0;
}

/* Status message apres envoi */
.form-status {
    grid-column: 1 / -1;
    text-align: center;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(22, 163, 74, 0.1);
    color: #16A34A;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Spinner dans le bouton */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.map-facade {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-card);
    color: var(--text-dim);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1;
}

.map-facade:hover {
    color: var(--accent);
}

.map-facade.loaded {
    display: none;
}

.map-facade span {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.contact-map iframe.visible {
    opacity: 1;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 24px 0 16px;
    background: rgba(255, 255, 255, 0.55);
}

/* Smooth fade-in en haut du footer */
.footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55));
    pointer-events: none;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-img {
    height: 32px;
    width: auto;
    border-radius: 6px;
}

.footer-brand strong {
    font-size: 0.9rem;
    color: var(--text);
}

.footer-brand p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-dim);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: color 0.3s, background 0.3s, border-color 0.3s;
}

.footer-social a:hover {
    color: var(--accent);
    background: var(--accent-subtle);
    border-color: rgba(26, 138, 130, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 0;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================
   THEME SWITCHER (Ambiance de fond)
   ========================================== */
.theme-switcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--accent);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.theme-options {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    box-shadow: var(--shadow-lg);
    min-width: 170px;
}

.theme-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

.theme-option:hover {
    background: var(--bg-section);
    color: var(--text);
}

.theme-option.active {
    background: var(--accent-subtle);
    color: var(--accent);
}

.theme-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
}

.theme-dot.serenite { background: #FAFBFE; border-color: #93C5FD; }
.theme-dot.nature { background: #D1FAE5; border-color: #34D399; }
.theme-dot.douceur { background: #FEF3C7; border-color: #FBBF24; }
.theme-dot.ciel { background: #DBEAFE; border-color: #60A5FA; }
.theme-dot.lavande { background: #EDE9FE; border-color: #A78BFA; }

/* ==========================================
   PAGES LEGALES
   ========================================== */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 0.92rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--accent);
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.legal-section ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-dim);
}

.legal-section ul li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.legal-section code {
    background: var(--bg-section);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--accent);
    border: 1px solid var(--border);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .pres-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .reflexes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .action-grid {
        grid-template-columns: 1fr;
    }

    .section-images {
        grid-template-columns: 1fr;
    }

    .section-images img {
        height: 180px;
    }

    .section-images--three {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 280px;
        margin: 0 auto;
        position: static;
    }

    .tarifs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 36px;
    }

    .tarifs-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    :root {
        --section-py: 64px;
    }

    /* Mobile NAV */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        border-left: 1px solid var(--border);
        padding: 80px 32px 32px;
        transform: translateX(100%);
        transition: transform 0.3s;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        display: block;
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--bg-section);
        border: 1px solid var(--border);
        border-radius: 50%;
        color: var(--text);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 10px;
    }

    /* Mobile HERO */
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile grids */
    .psycho-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .consult-grid {
        grid-template-columns: 1fr;
    }

    .reflexes-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }

    /* Mobile footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-links {
        justify-content: center;
    }

    /* Mobile theme switcher */
    .theme-switcher {
        bottom: 16px;
        right: 16px;
    }

    .theme-toggle-btn {
        width: 42px;
        height: 42px;
    }
}

/* Nav back (pages legales) */
.nav-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-back:hover {
    color: var(--accent);
}
