/* ============================================
   VOYANCE FR - Style inspiré avenirtel
   Palette: bleu nuit / violet / teal / or
   ============================================ */

/* --- CSS Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

/* --- Variables --- */
:root {
    --color-primary: #1A1A3E;
    --color-primary-light: #2D2D6B;
    --color-primary-dark: #0F0F2B;
    --color-teal: #00897B;
    --color-teal-light: #26A69A;
    --color-teal-dark: #00695C;
    --color-gold: #D4A843;
    --color-gold-light: #E8C56D;
    --color-gold-dark: #B8922E;
    --color-purple: #7B1FA2;
    --color-purple-light: #9C27B0;
    --color-accent: #FF7043;
    --color-success: #4CAF50;
    --color-warning: #FF9800;
    --color-danger: #F44336;
    --color-text: #2C2C2C;
    --color-text-light: #757575;
    --color-text-muted: #9E9E9E;
    --color-bg: #F5F5F5;
    --color-bg-alt: #EEEEEE;
    --color-bg-card: #FFFFFF;
    --color-bg-dark: #0F0F2B;
    --color-border: #E0E0E0;
    --color-star: #FFB300;
    --color-star-empty: #E0E0E0;
    --color-online: #4CAF50;
    --color-offline: #9E9E9E;
    --color-busy: #FF9800;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-size-xs: 0.7rem;
    --font-size-sm: 0.85rem;
    --font-size-base: 0.95rem;
    --font-size-lg: 1.1rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    --container-max: 1200px;
    --container-narrow: 900px;
    --header-height: 60px;
    --border-radius: 6px;
    --border-radius-lg: 10px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 2px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}

/* --- Typography --- */
body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}
h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

@media (min-width: 768px) {
    h1 { font-size: var(--font-size-4xl); }
    h2 { font-size: var(--font-size-3xl); }
}

a { color: var(--color-teal); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-teal-light); }

/* --- Layout --- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-4); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--space-10) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--teal { background: var(--color-teal); color: #fff; }
.section--teal h2, .section--teal h3 { color: #fff; }

.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================
   HEADER - Style avenirtel
   ============================ */
.site-header {
    background: var(--color-primary);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Barre promo en haut */
.header-promo {
    background: var(--color-gold);
    color: var(--color-primary-dark);
    text-align: center;
    padding: var(--space-1) var(--space-4);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.header-promo strong { color: var(--color-danger); }

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) 0;
    gap: var(--space-3);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: #fff;
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    text-decoration: none;
}
.site-logo:hover { color: var(--color-gold); }
.site-logo img { height: 36px; width: auto; }
.site-logo .logo-icon { font-size: 1.5rem; }

.header-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.header-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-cta .btn-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--color-teal);
    color: #fff;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: var(--font-size-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid var(--color-teal-light);
}
.header-cta .btn-phone:hover {
    background: var(--color-teal-light);
    transform: translateY(-1px);
    color: #fff;
}
.header-cta .btn-phone svg { width: 18px; height: 18px; fill: currentColor; }

.header-cta .tarif {
    font-size: var(--font-size-xs);
    font-style: italic;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
    text-align: center;
}

/* Header Lead Form */
.header-form-toggle {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}
.header-form-toggle:hover { background: rgba(255,255,255,0.2); }

.header-lead-form-wrapper {
    background: rgba(0,0,0,0.3);
    padding: var(--space-4) 0;
    display: none;
}
.header-lead-form-wrapper.is-open { display: block; }

.header-lead-form {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .header-lead-form { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .header-lead-form { grid-template-columns: 1fr 1fr 1fr 1fr 2fr auto; align-items: end; } }

.header-lead-form input,
.header-lead-form textarea {
    width: 100%;
    padding: var(--space-2) var(--space-3);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: var(--font-size-sm);
}
.header-lead-form input::placeholder,
.header-lead-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.header-lead-form input:focus,
.header-lead-form textarea:focus { outline: none; border-color: var(--color-teal); background: rgba(255,255,255,0.12); }
.header-lead-form textarea { resize: vertical; min-height: 38px; max-height: 80px; }

/* Navigation */
.main-nav { background: var(--color-primary-light); border-top: 1px solid rgba(255,255,255,0.1); }
.main-nav ul { list-style: none; display: flex; gap: 0; flex-wrap: wrap; }
.main-nav a {
    display: block;
    padding: var(--space-2) var(--space-4);
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}
.main-nav a:hover,
.main-nav .current-menu-item a { background: rgba(255,255,255,0.08); color: var(--color-gold); }

.menu-toggle {
    display: flex; align-items: center; gap: var(--space-2);
    background: none; border: none; color: #fff;
    font-size: var(--font-size-base); cursor: pointer; padding: var(--space-2);
}
.menu-toggle .hamburger { width: 22px; height: 16px; position: relative; }
.menu-toggle .hamburger span {
    display: block; position: absolute; width: 100%; height: 2px;
    background: #fff; border-radius: 2px; transition: all var(--transition-base);
}
.menu-toggle .hamburger span:nth-child(1) { top: 0; }
.menu-toggle .hamburger span:nth-child(2) { top: 7px; }
.menu-toggle .hamburger span:nth-child(3) { top: 14px; }

@media (max-width: 767px) {
    .main-nav ul { display: none; flex-direction: column; }
    .main-nav.is-open ul { display: flex; }
}
@media (min-width: 768px) { .menu-toggle { display: none; } }

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
    padding: var(--space-2) var(--space-5); border: none; border-radius: var(--border-radius);
    font-weight: 600; font-size: var(--font-size-sm); cursor: pointer;
    text-decoration: none; transition: all var(--transition-base); line-height: 1.4;
}
.btn--primary { background: var(--color-teal); color: #fff; }
.btn--primary:hover { background: var(--color-teal-light); color: #fff; transform: translateY(-1px); }

.btn--cta {
    background: var(--color-teal); color: #fff;
    font-size: var(--font-size-base); padding: var(--space-3) var(--space-6);
    border-radius: var(--border-radius-full); box-shadow: var(--shadow-md);
}
.btn--cta:hover { background: var(--color-teal-light); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--gold { background: var(--color-gold); color: var(--color-primary-dark); }
.btn--gold:hover { background: var(--color-gold-light); color: var(--color-primary-dark); }

.btn--outline { background: transparent; color: var(--color-teal); border: 2px solid var(--color-teal); }
.btn--outline:hover { background: var(--color-teal); color: #fff; }

.btn--purple { background: var(--color-purple); color: #fff; }
.btn--purple:hover { background: var(--color-purple-light); color: #fff; }

.btn--sm { padding: var(--space-1) var(--space-3); font-size: var(--font-size-xs); }
.btn--lg { padding: var(--space-4) var(--space-10); font-size: var(--font-size-lg); }
.btn--block { display: flex; width: 100%; }
.btn--white { background: #fff; color: var(--color-primary); }
.btn--white:hover { background: var(--color-bg-alt); color: var(--color-primary-dark); }

/* ============================
   CTA PHONE BLOCK
   ============================ */
.cta-phone {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff; padding: var(--space-5); border-radius: var(--border-radius-lg); text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.cta-phone__title { font-size: var(--font-size-lg); margin-bottom: var(--space-2); color: #fff; }
.cta-phone__number { font-size: var(--font-size-2xl); font-weight: 800; margin-bottom: var(--space-1); }
.cta-phone__number a { color: var(--color-gold); text-decoration: none; }
.cta-phone__number a:hover { color: var(--color-gold-light); }
.cta-phone__tarif { font-size: var(--font-size-xs); font-style: italic; color: rgba(255,255,255,0.65); margin-bottom: var(--space-3); }

/* ============================
   VOYANT CARDS - Style avenirtel
   ============================ */
.voyant-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid var(--color-border);
}
.voyant-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.voyant-card__image { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #E8E0F0; }
.voyant-card__image img { width: 100%; height: 100%; object-fit: cover; }

.voyant-card__badge { position: absolute; top: var(--space-2); right: var(--space-2); }
.voyant-card__promo {
    position: absolute; top: var(--space-2); left: var(--space-2);
    background: var(--color-danger); color: #fff;
    font-size: var(--font-size-xs); font-weight: 700;
    padding: 2px 8px; border-radius: var(--border-radius);
    text-transform: uppercase; letter-spacing: 0.5px;
}

.voyant-card__body { padding: var(--space-3); }

.voyant-card__name { font-size: var(--font-size-base); font-weight: 700; margin-bottom: var(--space-1); }
.voyant-card__name a { color: var(--color-primary); text-decoration: none; }
.voyant-card__name a:hover { color: var(--color-teal); }

.voyant-card__subtitle {
    font-size: var(--font-size-xs); color: var(--color-text-light);
    margin-bottom: var(--space-2); font-style: italic;
}

.voyant-card__tags { display: flex; flex-wrap: wrap; gap: 3px; margin-bottom: var(--space-2); }

.voyant-card__meta {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: var(--space-2); font-size: var(--font-size-xs); color: var(--color-text-light);
}

.voyant-card__stats {
    display: flex; align-items: center; gap: var(--space-3);
    font-size: var(--font-size-xs); color: var(--color-text-light);
    margin-bottom: var(--space-2);
}

.voyant-card__price {
    font-size: var(--font-size-sm); margin-bottom: var(--space-2);
}
.voyant-card__price .price-old {
    text-decoration: line-through; color: var(--color-text-muted); margin-right: var(--space-1);
}
.voyant-card__price .price-new {
    color: var(--color-teal); font-weight: 700;
}

.voyant-card__actions { display: flex; gap: var(--space-2); }

/* ============================
   TAGS / BADGES
   ============================ */
.tag {
    display: inline-block; padding: 2px 6px;
    border-radius: 3px; font-size: 0.65rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.3px;
}
.tag--tarologue { background: #EDE9FE; color: #6D28D9; }
.tag--medium { background: #FFF3E0; color: #E65100; }
.tag--astrologue { background: #E3F2FD; color: #1565C0; }
.tag--numerologue { background: #E8F5E9; color: #2E7D32; }
.tag--cartomancien { background: #FCE4EC; color: #C62828; }
.tag--oracle { background: #FFF8E1; color: #F57F17; }
.tag--runes { background: #EFEBE9; color: #4E342E; }
.tag--voyante-pure { background: #F3E5F5; color: #7B1FA2; }

.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 8px; border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs); font-weight: 600;
}
.badge--online { background: #C8E6C9; color: #2E7D32; }
.badge--offline { background: #F5F5F5; color: #757575; }
.badge--busy { background: #FFF3E0; color: #E65100; }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge--online .badge__dot { animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============================
   STARS
   ============================ */
.stars { display: inline-flex; align-items: center; gap: 1px; }
.stars svg { width: 14px; height: 14px; }
.stars__full { fill: var(--color-star); }
.stars__half { fill: var(--color-star); }
.stars__empty { fill: var(--color-star-empty); }
.stars__value { margin-left: 3px; font-weight: 700; font-size: var(--font-size-xs); color: var(--color-text); }
.stars__count { font-size: var(--font-size-xs); color: var(--color-text-light); }

/* ============================
   COMPARISON TABLE
   ============================ */
.voyance-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.voyance-table {
    width: 100%; border-collapse: collapse;
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg); overflow: hidden;
    box-shadow: var(--shadow);
}
.voyance-table thead { background: var(--color-primary); color: #fff; }
.voyance-table th {
    padding: var(--space-2) var(--space-3); text-align: left;
    font-weight: 600; font-size: var(--font-size-xs);
    white-space: nowrap; cursor: pointer; user-select: none;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.voyance-table th:hover { background: rgba(255,255,255,0.08); }
.voyance-table td {
    padding: var(--space-2) var(--space-3);
    border-bottom: 1px solid var(--color-border); vertical-align: middle;
    font-size: var(--font-size-sm);
}
.voyance-table tbody tr:hover { background: #F5F0FF; }
.voyance-table tbody tr:nth-child(even) { background: #FAFAFA; }
.voyance-table tbody tr:nth-child(even):hover { background: #F5F0FF; }

.voyance-table__voyant { display: flex; align-items: center; gap: var(--space-2); }
.voyance-table__voyant img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-teal); }
.voyance-table__voyant-info { display: flex; flex-direction: column; }
.voyance-table__voyant-name { font-weight: 700; color: var(--color-primary); font-size: var(--font-size-sm); }
.voyance-table__voyant-name:hover { color: var(--color-teal); }
.voyance-table__actions { display: flex; gap: var(--space-2); flex-wrap: nowrap; }
.voyance-table__response-rate { font-weight: 700; color: var(--color-teal); }

/* Table mobile: cards */
@media (max-width: 767px) {
    .voyance-table thead { display: none; }
    .voyance-table tbody tr {
        display: block; padding: var(--space-3);
        margin-bottom: var(--space-3);
        border: 1px solid var(--color-border);
        border-radius: var(--border-radius); background: #fff;
    }
    .voyance-table td {
        display: flex; justify-content: space-between; align-items: center;
        padding: var(--space-1) 0; border-bottom: 1px solid #f0f0f0;
    }
    .voyance-table td:last-child { border-bottom: none; }
    .voyance-table td::before {
        content: attr(data-label); font-weight: 600;
        font-size: var(--font-size-xs); color: var(--color-text-light); margin-right: var(--space-2);
    }
}

/* ============================
   FILTERS
   ============================ */
.voyance-filters {
    background: var(--color-bg-card); padding: var(--space-3);
    border-radius: var(--border-radius-lg); box-shadow: var(--shadow);
    margin-bottom: var(--space-4); border: 1px solid var(--color-border);
}
.voyance-filters__grid { display: grid; gap: var(--space-2); grid-template-columns: 1fr; }
@media (min-width: 768px) { .voyance-filters__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .voyance-filters__grid { grid-template-columns: repeat(5, 1fr) auto; align-items: end; } }

.voyance-filters select,
.voyance-filters input {
    width: 100%; padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border); border-radius: var(--border-radius);
    font-size: var(--font-size-sm); color: var(--color-text); background: #fff;
}
.voyance-filters select:focus,
.voyance-filters input:focus { outline: none; border-color: var(--color-teal); box-shadow: 0 0 0 2px rgba(0,137,123,0.15); }
.voyance-filters label {
    display: block; font-size: var(--font-size-xs); font-weight: 600;
    color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 2px;
}
.voyance-filters__actions { display: flex; gap: var(--space-2); align-items: end; }
.voyance-filters__reset {
    font-size: var(--font-size-xs); color: var(--color-text-light);
    cursor: pointer; background: none; border: none; text-decoration: underline;
}
.voyance-filters__reset:hover { color: var(--color-teal); }
.voyance-table__loading { text-align: center; padding: var(--space-8); color: var(--color-text-light); }
.voyance-table__count { font-size: var(--font-size-sm); color: var(--color-text-light); margin-bottom: var(--space-2); }

/* ============================
   FORMS
   ============================ */
.voyance-form {
    background: var(--color-bg-card); padding: var(--space-5);
    border-radius: var(--border-radius-lg); box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
}
.voyance-form__title { margin-bottom: var(--space-4); text-align: center; font-size: var(--font-size-xl); }
.form-group { margin-bottom: var(--space-3); }
.form-group label { display: block; font-size: var(--font-size-sm); font-weight: 600; margin-bottom: 2px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border); border-radius: var(--border-radius);
    font-size: var(--font-size-base); transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--color-teal); box-shadow: 0 0 0 2px rgba(0,137,123,0.12); }
.form-group textarea { resize: vertical; min-height: 70px; }
.form-group--error input,
.form-group--error textarea { border-color: var(--color-danger); }
.form-group__error { font-size: var(--font-size-xs); color: var(--color-danger); margin-top: 2px; display: none; }
.form-group--error .form-group__error { display: block; }

.form-feedback { padding: var(--space-2) var(--space-3); border-radius: var(--border-radius); font-size: var(--font-size-sm); display: none; margin-top: var(--space-2); }
.form-feedback--success { display: block; background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.form-feedback--error { display: block; background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ============================
   HERO SECTION
   ============================ */
.hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 40%, var(--color-primary-light) 100%);
    color: #fff; padding: var(--space-10) 0; text-align: center;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0,137,123,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(123,31,162,0.15) 0%, transparent 50%);
}
.hero__content { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: var(--space-3); }
.hero__subtitle {
    font-size: var(--font-size-lg); color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-5); max-width: 650px; margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) {
    .hero { padding: var(--space-12) 0; }
    .hero__subtitle { font-size: var(--font-size-xl); }
}

/* Hero features */
.hero-features {
    display: flex; justify-content: center; gap: var(--space-6);
    flex-wrap: wrap; margin-top: var(--space-6);
}
.hero-feature {
    display: flex; align-items: center; gap: var(--space-2);
    font-size: var(--font-size-sm); color: rgba(255,255,255,0.85);
}
.hero-feature__icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: flex;
    align-items: center; justify-content: center; font-size: 1.1rem;
}

/* ============================
   SINGLE VOYANT
   ============================ */
.voyant-profile { display: grid; grid-template-columns: 1fr; gap: var(--space-6); padding: var(--space-6) 0; }
@media (min-width: 1024px) { .voyant-profile { grid-template-columns: 2fr 1fr; } }
.voyant-profile__sidebar { display: flex; flex-direction: column; gap: var(--space-4); }

.voyant-profile__header { display: flex; gap: var(--space-5); margin-bottom: var(--space-4); flex-wrap: wrap; }
.voyant-profile__photo {
    width: 180px; height: 220px; border-radius: var(--border-radius-lg);
    object-fit: cover; box-shadow: var(--shadow-md); flex-shrink: 0;
    border: 3px solid var(--color-teal);
}
.voyant-profile__info { flex: 1; min-width: 240px; }
.voyant-profile__name { margin-bottom: var(--space-1); }

.voyant-profile__stats { display: flex; gap: var(--space-3); flex-wrap: wrap; margin: var(--space-3) 0; }
.voyant-profile__stat {
    text-align: center; padding: var(--space-2) var(--space-3);
    background: #F5F0FF; border-radius: var(--border-radius);
    border: 1px solid #E8E0F0; min-width: 75px;
}
.voyant-profile__stat-value { font-size: var(--font-size-xl); font-weight: 800; color: var(--color-teal); }
.voyant-profile__stat-label { font-size: var(--font-size-xs); color: var(--color-text-light); }
.voyant-profile__description { margin: var(--space-4) 0; line-height: 1.8; }
.voyant-profile__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; margin: var(--space-4) 0; }

/* Sidebar links */
.sidebar-voyants {
    background: var(--color-bg-card); border-radius: var(--border-radius-lg);
    padding: var(--space-4); box-shadow: var(--shadow); border: 1px solid var(--color-border);
}
.sidebar-voyants__title {
    font-size: var(--font-size-base); margin-bottom: var(--space-3);
    padding-bottom: var(--space-2); border-bottom: 2px solid var(--color-teal);
}
.sidebar-voyants__list { list-style: none; }
.sidebar-voyants__item {
    display: flex; align-items: center; gap: var(--space-2);
    padding: var(--space-2) 0; border-bottom: 1px solid var(--color-border);
}
.sidebar-voyants__item:last-child { border-bottom: none; }
.sidebar-voyants__item img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.sidebar-voyants__item a { font-weight: 500; font-size: var(--font-size-sm); }

/* ============================
   REVIEWS
   ============================ */
.reviews-section { margin-top: var(--space-6); }
.review-card {
    background: var(--color-bg-card); padding: var(--space-3);
    border-radius: var(--border-radius); border: 1px solid var(--color-border);
    margin-bottom: var(--space-3);
}
.review-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-1); }
.review-card__author { font-weight: 600; font-size: var(--font-size-sm); }
.review-card__date { font-size: var(--font-size-xs); color: var(--color-text-light); }
.review-card__text { font-size: var(--font-size-sm); color: var(--color-text-light); line-height: 1.5; }

/* Star rating input */
.star-rating-input { display: flex; gap: 4px; direction: rtl; }
.star-rating-input input { display: none; }
.star-rating-input label { cursor: pointer; font-size: 22px; color: var(--color-star-empty); transition: color var(--transition-fast); }
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: var(--color-star); }

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.75);
    padding: var(--space-10) 0 var(--space-4);
}
.footer-widgets { display: grid; grid-template-columns: 1fr; gap: var(--space-6); margin-bottom: var(--space-6); }
@media (min-width: 768px) { .footer-widgets { grid-template-columns: repeat(3, 1fr); } }
.site-footer h4 { color: var(--color-gold); margin-bottom: var(--space-3); font-size: var(--font-size-base); }
.site-footer a { color: rgba(255,255,255,0.65); }
.site-footer a:hover { color: var(--color-teal-light); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: var(--space-1); }
.site-footer li a { font-size: var(--font-size-sm); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: var(--space-3); text-align: center; font-size: var(--font-size-xs);
}
.footer-disclaimer {
    font-size: 0.65rem; color: rgba(255,255,255,0.4);
    font-style: italic; margin-top: var(--space-2);
    max-width: 700px; margin-left: auto; margin-right: auto;
}

/* ============================
   BREADCRUMBS
   ============================ */
.breadcrumbs { padding: var(--space-2) 0; font-size: var(--font-size-xs); color: var(--color-text-light); }
.breadcrumbs a { color: var(--color-text-light); }
.breadcrumbs a:hover { color: var(--color-teal); }
.breadcrumbs__sep { margin: 0 var(--space-1); color: var(--color-text-muted); }

/* ============================
   MOBILE FLOATING CTA
   ============================ */
.mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
    padding: var(--space-2) var(--space-3); text-align: center;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
}
.mobile-cta a {
    color: #fff; font-weight: 700; font-size: var(--font-size-base);
    text-decoration: none; display: flex; align-items: center; justify-content: center; gap: var(--space-2);
}
.mobile-cta .tarif { display: block; font-size: var(--font-size-xs); font-style: italic; font-weight: 400; opacity: 0.85; }
@media (max-width: 767px) { .mobile-cta { display: block; } body { padding-bottom: 60px; } }

/* ============================
   PAGINATION
   ============================ */
.pagination { display: flex; justify-content: center; gap: var(--space-1); margin-top: var(--space-6); }
.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: var(--border-radius);
    font-size: var(--font-size-sm); font-weight: 600;
    border: 1px solid var(--color-border); color: var(--color-text);
    text-decoration: none; transition: all var(--transition-fast);
}
.pagination a:hover { background: var(--color-teal); color: #fff; border-color: var(--color-teal); }
.pagination .current { background: var(--color-teal); color: #fff; border-color: var(--color-teal); }

/* ============================
   SPECIALTIES GRID
   ============================ */
.specialty-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}
@media (min-width: 768px) { .specialty-grid { grid-template-columns: repeat(4, 1fr); } }

.specialty-card {
    background: var(--color-bg-card); padding: var(--space-4);
    border-radius: var(--border-radius-lg); text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base); cursor: pointer;
}
.specialty-card:hover {
    border-color: var(--color-teal); transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.specialty-card__icon { font-size: 2rem; margin-bottom: var(--space-2); }
.specialty-card__name { font-weight: 600; font-size: var(--font-size-sm); color: var(--color-primary); }
.specialty-card__count { font-size: var(--font-size-xs); color: var(--color-text-light); }

/* ============================
   ENTRY CONTENT (pages)
   ============================ */
.entry-content h2 { margin-top: var(--space-6); margin-bottom: var(--space-3); }
.entry-content h3 { margin-top: var(--space-4); margin-bottom: var(--space-2); }
.entry-content p { margin-bottom: var(--space-3); line-height: 1.7; }
.entry-content ul, .entry-content ol { margin-bottom: var(--space-3); padding-left: var(--space-6); }
.entry-content li { margin-bottom: var(--space-1); }

/* ============================
   UTILITIES
   ============================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.spinner {
    display: inline-block; width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3); border-radius: 50%;
    border-top-color: #fff; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
