@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* =========================
   VARIABLES
========================= */
:root {
    --color-primary: #1E3A5F;
    --color-primary-light: #3B6CB0;
    --color-gold: #C9A84C;
    --color-gold-hover: #A68C2E;
    --color-bg: #f8fafc;
    --color-white: #ffffff;
    --color-text: #0F172A;
    --color-text-soft: #475569;
    --color-border: #BFDBFE;
    --color-surface: #EFF6FF;
    --color-surface-2: #DBEAFE;
    --color-muted: #EFF6FF;
    --color-success: #065F46;
    --color-shadow: 0 18px 50px rgba(30, 58, 95, 0.08);
    --color-shadow-soft: 0 10px 30px rgba(30, 58, 95, 0.06);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --container: 1200px;

    --transition: 0.25s ease;
}

/* =========================
   RESET
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(30, 58, 95, 0.06), transparent 22%),
        linear-gradient(180deg, #fcfcfd 0%, #f8fafc 45%, #EFF6FF 100%);
    color: var(--color-text);
    line-height: 1.65;
}

main.theme-boheme {
    background:
        radial-gradient(circle at top left, rgba(30, 58, 95, 0.06), transparent 22%),
        linear-gradient(180deg, #fdfcf9 0%, #fbf8f3 48%, #f8fafc 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

/* =========================
   LAYOUT
========================= */
.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-alt,
.section.alt {
    background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(241,245,249,0.9));
}

.center,
.text-center {
    text-align: center;
}

.max-800 {
    max-width: 800px;
    margin: 0 auto;
}

/* =========================
   TYPO
========================= */
h1,
h2,
h3,
h4 {
    margin: 0 0 14px;
    line-height: 1.15;
    color: var(--color-primary);
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
}

h3 {
    font-size: 1.18rem;
    font-weight: 700;
}

p {
    margin: 0 0 16px;
    color: var(--color-text-soft);
}

.eyebrow,
.section-tag,
.badge,
.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.eyebrow,
.section-tag {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.12);
    color: #78490A;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading,
.section-header {
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-heading p,
.section-header p {
    font-size: 1.04rem;
}

/* =========================
   Home un peu
========================= */

/* ── Hero Slider ── */
.hero { position: relative; overflow: hidden; min-height: 580px; display: flex; flex-direction: column; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center center;
    opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slider-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,.85) 0%, rgba(30,58,95,.70) 60%, rgba(10,22,40,.60) 100%);
}
/* Dots */
.hero-dots {
    position: absolute; bottom: 68px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.35); border: none; cursor: pointer; padding: 0;
    transition: background .2s, transform .2s;
}
.hero-dot.active { background: #C9A84C; transform: scale(1.35); }
/* Hero texte couleur claire */
.hero-inner { flex: 1; position: relative; z-index: 2; }
.hero-eyebrow    { background: rgba(201,168,76,.18) !important; color: #C9A84C !important; border: 1px solid rgba(201,168,76,.3) !important; }
.hero h1         { color: #F8FAFC; }
.hero h1 em      { color: #C9A84C; }
.hero .hero-subtitle { color: rgba(248,250,252,.72); }
.hero .hero-search { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); backdrop-filter: blur(12px); }
.hero .hero-search .form-group label { color: rgba(248,250,252,.55); }
.hero .hero-search .form-group input,
.hero .hero-search .form-group select { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #F8FAFC; }
.hero .hero-search .form-group select option { background: #1E3A5F; }
.hero .hero-search .form-group input::placeholder { color: rgba(248,250,252,.4); }
.hero .hero-search .form-group input:focus,
.hero .hero-search .form-group select:focus { border-color: rgba(201,168,76,.6); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
.hero .stat-chip { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15); color: rgba(248,250,252,.75); }
.hero .stat-chip strong { color: #C9A84C; }
.hero .hero-main-card { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.15); backdrop-filter: blur(10px); }
.hero .hero-main-card h3 { color: #F8FAFC; }
.hero .hero-main-card p  { color: rgba(248,250,252,.65); }
.hero .hero-mini-card    { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.12); }
.hero .hero-mini-card-role { background: rgba(201,168,76,.2); color: #C9A84C; }
.hero .hero-mini-card p  { color: rgba(248,250,252,.65); }
/* Vague sur fond sombre */
.hero .wave-divider path { fill: #ffffff; }

/* ── Section prestataires à la une ── */
.section-featured {
    padding: 80px 0;
    background: var(--bg, #F8FAFC);
    border-top: 1px solid var(--border, #BFDBFE);
}
.section-featured-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 16px; flex-wrap: wrap; margin-bottom: 32px;
}
.featured-see-all {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: var(--primary-m, #3B6CB0);
    text-decoration: none; white-space: nowrap; transition: color .14s;
    flex-shrink: 0;
}
.featured-see-all:hover { color: var(--primary, #1E3A5F); }

/* Carousel */
.featured-carousel {
    display: flex; gap: 18px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; padding: 8px 2px 18px;
    cursor: grab;
}
.featured-carousel::-webkit-scrollbar { display: none; }
.featured-carousel:active { cursor: grabbing; }
.featured-carousel .prov-card { flex: 0 0 280px; min-width: 280px; scroll-snap-align: start; }

/* Badge à la une */
.badge-une {
    position: absolute; bottom: 10px; right: 12px;
    background: #C9A84C; color: #0A1628;
    font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 999px;
}

/* Nav carousel */
.carousel-nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 4px; }
.carousel-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; border: 1.5px solid var(--border, #BFDBFE);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer; color: var(--primary, #1E3A5F);
    transition: background .14s, border-color .14s, transform .14s;
}
.carousel-btn:hover { background: var(--primary, #1E3A5F); color: #fff; border-color: var(--primary, #1E3A5F); transform: scale(1.05); }


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(30, 58, 95, 0.22);
}

.btn-primary:hover {
    background: var(--color-primary-light);
}

.btn-secondary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: var(--color-shadow-soft);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
}

.btn-outline {
    background: #fff;
    border-color: var(--color-border);
    color: var(--color-primary);
}

.btn-outline:hover {
    border-color: rgba(201, 168, 76, 0.5);
    color: #78490A;
}

.btn-light {
    background: #fff;
    color: var(--color-primary);
    box-shadow: var(--color-shadow-soft);
}

.btn-light:hover {
    background: #f8fafc;
}

.btn-full {
    width: 100%;
}

.btn-lg {
    min-height: 54px;
    padding: 0 28px;
    font-size: 1rem;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content.center {
    max-width: 860px;
    margin: 0 auto;
}

.hero-text {
    max-width: 680px;
    font-size: 1.06rem;
    margin-bottom: 28px;
}

.hero-actions {
    margin-top: 26px;
}

.hero-visual {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card,
.hero-showcase {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--color-shadow);
    padding: 34px;
}

.visual-main {
    width: 100%;
    max-width: 420px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.visual-main h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.badge {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(30, 58, 95, 0.06);
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: var(--color-shadow-soft);
    width: 220px;
}

.floating-card p {
    margin: 8px 0 0;
    font-size: 0.96rem;
    color: var(--color-text);
}

.floating-card-one {
    top: 15px;
    left: 0;
}

.floating-card-two {
    bottom: 36px;
    right: 6px;
}

.mini-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #78490A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =========================
   SEARCH CARD
========================= */
.search-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--color-shadow);
    margin: 30px 0 28px;
}

.search-grid {
    display: grid;
    gap: 18px;
    align-items: end;
}

.search-grid-3 {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group textarea {
    min-height: 140px;
    padding: 14px 16px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201, 168, 76, 0.8);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.14);
}

.search-button-wrap {
    min-width: 180px;
}

.hidden-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}



.form-group select {
    appearance: none;
}


/* =========================
   STATS
========================= */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.stat-box {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: var(--color-shadow-soft);
}

.stat-box strong {
    display: block;
    font-size: 1.45rem;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.stat-box span {
    color: var(--color-text-soft);
    font-size: 0.95rem;
}

/* =========================
   GENERIC GRIDS
========================= */
.card-grid,
.grid-4,
.grid-2,
.event-grid,
.steps-grid,
.provider-grid {
    display: grid;
    gap: 24px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.event-grid {
    grid-template-columns: repeat(4, 1fr);
}

.categories-grid {
    grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

.provider-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* =========================
   CARDS
========================= */
.card,
.feature-card,
.event-card,
.step-card,
.provider-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: var(--color-shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover,
.feature-card:hover,
.event-card:hover,
.step-card:hover,
.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--color-shadow);
    border-color: rgba(201, 168, 76, 0.45);
}

.card {
    padding: 24px;
}

.card p:last-child,
.event-card p:last-child,
.feature-card p:last-child,
.step-card p:last-child {
    margin-bottom: 0;
}

/* =========================
   EVENT CARDS
========================= */
.event-card {
    padding: 28px 24px;
    text-align: left;
}

.event-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(201, 168, 76, 0.12);
    font-size: 1.8rem;
    margin-bottom: 18px;
}

/* =========================
   FEATURE CARDS / CATEGORIES
========================= */
.feature-card {
    display: block;
    padding: 28px 24px;
}

.icon-circle {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.08));
    font-size: 1.5rem;
    margin-bottom: 18px;
}

/* =========================
   STEPS / CONCEPT
========================= */
.step-card {
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

.step-number {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: var(--color-shadow-soft);
    text-align: center;
}

.step span {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), #D4A84C);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

/* =========================
   PROVIDERS
========================= */
.provider-card {
    overflow: hidden;
}

.provider-cover {
    height: 180px;
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.86), rgba(15, 31, 53, 0.72)),
        radial-gradient(circle at top left, rgba(30, 58, 95, 0.06), transparent 22%);
}

.provider-body {
    padding: 24px;
}

.provider-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.provider-top h3 {
    margin-bottom: 0;
}

.provider-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.10);
    color: var(--color-success);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.provider-meta {
    font-size: 0.94rem;
    margin-bottom: 10px;
    color: #78490A;
    font-weight: 600;
}

.provider-text {
    margin-bottom: 18px;
}

.provider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.provider-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--color-surface);
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 600;
}

/* =========================
   LISTS
========================= */
.features-list {
    list-style: none;
    display: grid;
    gap: 16px;
}

.features-list li {
    position: relative;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 16px;
    padding: 16px 18px;
    color: var(--color-text);
    box-shadow: var(--color-shadow-soft);
}

/* =========================
   CTA
========================= */
.cta-section {
    padding-top: 70px;
    padding-bottom: 100px;
}

.cta-box {
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.98), rgba(15, 31, 53, 0.96)),
        radial-gradient(circle at top right, rgba(201, 168, 76, 0.25), transparent 30%);
    color: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--color-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.cta-box h2,
.cta-box p,
.cta-box .section-tag {
    color: #fff;
}

.cta-box .section-tag {
    background: rgba(255,255,255,0.12);
}

.cta-box p {
    max-width: 700px;
    opacity: 0.88;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   UTILITIES
========================= */
.hero-content.center,
.section-header.center,
.section-heading.center {
    text-align: center;
}

.hero-content.center .section-tag,
.hero-content.center .eyebrow,
.section-header.center .section-tag,
.section-heading.center .section-tag {
    margin-left: auto;
    margin-right: auto;
}

.section-header.center p,
.section-heading.center p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .hero-grid,
    .grid-4,
    .event-grid,
    .steps-grid,
    .provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        min-height: 360px;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 72px 0;
    }

    .hero {
        padding: 72px 0 52px;
    }

    .hero-grid,
    .grid-2,
    .search-grid-3,
    .steps {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .search-button-wrap {
        min-width: unset;
    }

    .hero-visual {
        min-height: auto;
    }

    .floating-card {
        position: static;
        width: 100%;
    }

    .hero-visual {
        display: grid;
        gap: 16px;
    }

    .visual-main {
        max-width: 100%;
    }

    .cta-box {
        padding: 30px 24px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .grid-4,
    .event-grid,
    .categories-grid,
    .steps-grid,
    .provider-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .search-card,
    .card,
    .event-card,
    .feature-card,
    .step-card,
    .provider-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .provider-top {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================
   INDEX — HERO REDESIGN
========================= */
.hero {
    padding: 72px 0 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% -10%, rgba(30,58,95,.08), transparent),
        linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding-bottom: 72px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.12);
    color: #78490A;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
    border: .5px solid rgba(201,168,76,.25);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 700;
    color: #1E3A5F;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 18px;
}

.hero h1 em {
    font-style: italic;
    color: #3B6CB0;
}

.hero-subtitle {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.75;
    max-width: 540px;
    margin: 0 0 32px;
}

/* ── Search form hero ── */
.hero-search {
    background: #fff;
    border: 1px solid #BFDBFE;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(30,58,95,.08);
    margin-bottom: 28px;
}

.hero-search-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.hero-search .form-group label {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 6px;
    display: block;
}

.hero-search input,
.hero-search select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    background: #F8FAFC;
    color: #1E3A5F;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
    font-family: inherit;
}

.hero-search input:focus,
.hero-search select:focus {
    border-color: #3B6CB0;
    box-shadow: 0 0 0 3px rgba(59,108,176,.12);
    background: #fff;
}

.hero-search select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.hero-search .btn-search {
    height: 48px;
    padding: 0 24px;
    background: #1E3A5F;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    font-family: inherit;
}

.hero-search .btn-search:hover {
    background: #3B6CB0;
    transform: translateY(-1px);
}

/* ── Stats chips ── */
.hero-stats-row {
    display: flex;
    gap: 6px;
}

.stat-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #EFF6FF;
    border: .5px solid #BFDBFE;
    border-radius: 10px;
    padding: 10px 16px;
}

.stat-chip strong {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1E3A5F;
    font-family: 'Cormorant Garamond', serif;
}

.stat-chip span {
    font-size: .82rem;
    color: #475569;
}

/* ── Hero visual column ── */
.hero-visual-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-main-card {
    background: linear-gradient(145deg, #1E3A5F, #0F1F35);
    border-radius: 24px;
    padding: 34px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-main-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(201,168,76,.22), transparent 65%);
    pointer-events: none;
}

.hero-main-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,.15);
    color: #C9A84C;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 20px;
    border: .5px solid rgba(201,168,76,.3);
}

.hero-main-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.15;
}

.hero-main-card p {
    color: rgba(255,255,255,.7);
    font-size: .92rem;
    line-height: 1.65;
    margin: 0 0 22px;
}

.hero-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-mini-card {
    background: rgba(255,255,255,.06);
    border: .5px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 14px;
}

.hero-mini-card-role {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 6px;
    display: block;
}

.hero-mini-card p {
    margin: 0;
    font-size: .85rem;
    color: rgba(255,255,255,.82);
}

/* ── Wave divider ── */
.wave-divider {
    width: 100%;
    display: block;
    line-height: 0;
    margin-top: -1px;
}

/* =========================
   INDEX — COMMENT ÇA MARCHE
========================= */
.section-how {
    padding: 88px 0;
    background: #fff;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #3B6CB0;
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: #C9A84C;
    border-radius: 2px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #1E3A5F;
    line-height: 1.15;
    margin: 0 0 14px;
}

.section-desc {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.how-card {
    background: #F8FAFC;
    border: .5px solid #BFDBFE;
    border-radius: 18px;
    padding: 26px 22px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(30,58,95,.08);
    border-color: #93C5FD;
}

.how-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(30,58,95,.1);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.how-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #1E3A5F;
    margin: 0 0 8px;
}

.how-card p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* =========================
   INDEX — CATÉGORIES
========================= */
.section-cat {
    padding: 88px 0;
    background: #EFF6FF;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.cat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: .5px solid #BFDBFE;
    border-radius: 16px;
    padding: 20px 22px;
    text-decoration: none;
    color: inherit;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30,58,95,.10);
    border-color: #C9A84C;
}

.cat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: #EFF6FF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: .5px solid #BFDBFE;
    transition: background .22s;
}

.cat-card:hover .cat-icon {
    background: #DBEAFE;
}

.cat-info h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #1E3A5F;
    margin: 0 0 4px;
}

.cat-info p {
    font-size: .82rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.cat-arrow {
    margin-left: auto;
    font-size: .9rem;
    color: #BFDBFE;
    flex-shrink: 0;
    transition: color .22s, transform .22s;
}

.cat-card:hover .cat-arrow {
    color: #C9A84C;
    transform: translateX(3px);
}

/* =========================
   INDEX — TYPES D'ÉVÉNEMENTS
========================= */
.section-events {
    padding: 88px 0;
    background: #fff;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.event-type-card {
    background: #F8FAFC;
    border: .5px solid #BFDBFE;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
}

.event-type-card:hover {
    background: #EFF6FF;
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(30,58,95,.09);
    border-color: #93C5FD;
}

.event-emoji {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.event-type-card h3 {
    font-size: 1.02rem;
    font-weight: 500;
    color: #1E3A5F;
    margin: 0 0 8px;
}

.event-type-card p {
    font-size: .84rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px;
}

.btn-evt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 18px;
    background: #1E3A5F;
    color: #fff;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
}

.btn-evt:hover {
    background: #3B6CB0;
}

.btn-evt.disabled {
    background: #DBEAFE;
    color: #3B6CB0;
    cursor: not-allowed;
    pointer-events: none;
}

/* =========================
   INDEX — CTA SPLIT
========================= */
.section-cta {
    padding: 88px 0;
    background: linear-gradient(160deg, #1E3A5F 0%, #0F1F35 100%);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.14), transparent 60%);
    pointer-events: none;
}

.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,.06);
    border-radius: 24px;
    overflow: hidden;
    border: .5px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 2;
}

.cta-half {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-half:first-child {
    border-right: .5px solid rgba(255,255,255,.06);
}

.cta-half-tag {
    display: inline-flex;
    width: fit-content;
    padding: 5px 12px;
    background: rgba(201,168,76,.15);
    color: #C9A84C;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 999px;
    border: .5px solid rgba(201,168,76,.25);
}

.cta-half h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.cta-half p {
    color: rgba(255,255,255,.68);
    font-size: .96rem;
    line-height: 1.7;
    margin: 0;
}

.cta-half-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 22px;
    background: #C9A84C;
    color: #1a1000;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    font-family: inherit;
}

.btn-cta-main:hover {
    background: #d9b85c;
    transform: translateY(-1px);
}

.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 22px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.82);
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 500;
    text-decoration: none;
    border: .5px solid rgba(255,255,255,.12);
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
}

.btn-cta-ghost:hover {
    background: rgba(255,255,255,.12);
    color: #fff;
}

/* =========================
   INDEX — RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .how-grid         { grid-template-columns: repeat(2, 1fr); }
    .event-types-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 960px) {
    /* Hero : 1 colonne, la carte droite passe en bas */
    .hero-inner        { grid-template-columns: 1fr; gap: 24px; padding: 36px 24px 56px; }
    .hero-visual-col   { order: 1; } /* passe APRÈS le contenu, pas avant */
    .hero-main-card    { max-width: 100%; }
    .hero-mini-cards   { grid-template-columns: 1fr 1fr; }
    .cat-grid          { grid-template-columns: 1fr 1fr; }
    .cta-split         { grid-template-columns: 1fr; }
    .cta-half:first-child {
        border-right: none;
        border-bottom: .5px solid rgba(255,255,255,.06);
    }
}
 
@media (max-width: 680px) {
    /* Hero : masquer la carte droite sur petits écrans */
    .hero-visual-col   { display: none; }
    .hero              { min-height: auto; }
    .hero-inner        { padding: 36px 20px 64px; gap: 20px; }
    .hero-content h1   { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .hero-search       { padding: 14px 16px; }
    .hero-search-row   { grid-template-columns: 1fr; gap: 10px; }
    .btn-search        { width: 100%; }
    .hero-stats-row    { gap: 8px; flex-wrap: wrap; }
    .stat-chip         { font-size: 12px; padding: 6px 12px; }
    .how-grid          { grid-template-columns: 1fr; }
    .cat-grid          { grid-template-columns: 1fr; }
    .event-types-grid  { grid-template-columns: 1fr 1fr; }
    .cta-half          { padding: 32px 24px; }
    .hero-mini-cards   { grid-template-columns: 1fr; }
    .hero-dots         { bottom: 20px; }
}
 
@media (max-width: 480px) {
    .event-types-grid  { grid-template-columns: 1fr; }
    .hero-inner        { padding: 28px 16px 56px; }
    .hero-stats-row    { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   11. ANNUAIRE v2 — prestataires.php
   Palette marine foncé + or — couleurs issues du redesign PHP
   #0A1628 marine très foncé · #1E3A5F marine · #C9A84C or
   ================================================================ */

/* Variables locales annuaire (complètent les vars global.css) */
.ann { --ann-dark: #0A1628; --ann-gold: #C9A84C; --ann-navy: #1E3A5F; }
.ann * { box-sizing: border-box; }

/* ── Hero annuaire ── */
.ann-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
    padding: 52px 32px 44px; text-align: center;
    position: relative; overflow: hidden;
}
.ann-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 50% 80% at 20% 60%, rgba(59,108,176,.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(201,168,76,.08) 0%, transparent 55%);
}
.ann-hero-inner { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.ann-hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: #C9A84C; margin-bottom: 14px;
}
.ann-hero-tag::before, .ann-hero-tag::after { content: ''; width: 24px; height: 1px; background: #C9A84C; }
.ann-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 700;
    color: #F8FAFC; margin: 0 0 10px; letter-spacing: -.02em; line-height: 1.1;
}
.ann-hero p { font-size: 15px; color: rgba(248,250,252,.55); margin: 0 0 32px; line-height: 1.65; }

/* Barre de recherche */
.ann-search {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px; padding: 18px 20px;
    backdrop-filter: blur(10px);
    display: grid; grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px; align-items: end;
    max-width: 820px; margin: 0 auto;
    position: relative; z-index: 1;
}
.ann-sg { display: flex; flex-direction: column; gap: 5px; }
.ann-sg label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(248,250,252,.4); }
.ann-sg input, .ann-sg select {
    height: 44px; background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; color: #F8FAFC;
    padding: 0 14px; outline: none; appearance: none;
    transition: border-color .14s, background .14s;
}
.ann-sg select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23F8FAFC' stroke-width='1.5' stroke-linecap='round' opacity='.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; cursor: pointer;
}
.ann-sg select option { background: #1E3A5F; color: #F8FAFC; }
.ann-sg input::placeholder { color: rgba(248,250,252,.3); }
.ann-sg input:focus, .ann-sg select:focus { border-color: rgba(201,168,76,.5); background: rgba(255,255,255,.16); }
.ann-search-btn {
    height: 44px; padding: 0 22px; background: #C9A84C; color: #0A1628;
    border: none; border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(201,168,76,.3);
    transition: transform .15s, box-shadow .15s;
}
.ann-search-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }

/* Catégories pills */
.ann-cats {
    background: #fff; border-bottom: 1px solid #E8F0FB;
    display: flex; align-items: center; gap: 0;
    overflow-x: auto; scrollbar-width: none; padding: 0 24px;
}
.ann-cats::-webkit-scrollbar { display: none; }
.ann-cat {
    display: inline-flex; align-items: center;
    padding: 14px 16px; font-size: 13px; font-weight: 600;
    color: #475569; text-decoration: none; white-space: nowrap; flex-shrink: 0;
    border-bottom: 2px solid transparent;
    transition: color .14s, border-color .14s;
}
.ann-cat:hover     { color: #1E3A5F; }
.ann-cat.is-active { color: #1E3A5F; border-bottom-color: #C9A84C; }

/* Corps résultats */
.ann-body { max-width: 1200px; margin: 0 auto; padding: 0 32px 80px; }
.ann-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 20px 0 14px; border-bottom: 1px solid #E8F0FB; flex-wrap: wrap;
}
.ann-count { font-size: 14px; font-weight: 700; color: #0F172A; }
.ann-count span { font-weight: 400; color: #94A3B8; }
.ann-reset {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; color: #3B6CB0; text-decoration: none;
    padding: 5px 12px; border-radius: 999px; border: 1px solid #BFDBFE; background: #EFF6FF;
    transition: background .14s;
}
.ann-reset:hover { background: #DBEAFE; }

/* Grille 3 colonnes */
.ann-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 18px; padding-top: 20px;
}

/* ── Card prestataire ── */
.prov-card {
    background: #fff; border: 1px solid #BFDBFE; border-radius: 18px;
    overflow: hidden; display: flex; flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.prov-card:hover { box-shadow: 0 12px 36px rgba(30,58,95,.1); transform: translateY(-3px); }

.prov-cover {
    height: 108px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    position: relative;
}
.prov-av-wrap { position: absolute; bottom: -22px; left: 18px; }
.prov-avatar {
    width: 58px; height: 58px; border-radius: 14px;
    border: 3px solid #fff; object-fit: cover; display: block;
    box-shadow: 0 4px 12px rgba(30,58,95,.12); background: #fff;
}
.prov-av-ph {
    width: 58px; height: 58px; border-radius: 14px;
    border: 3px solid #fff; box-shadow: 0 4px 12px rgba(30,58,95,.12);
    background: #1E3A5F; display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: #F8FAFC;
}
.prov-cat-pill {
    position: absolute; top: 10px; left: 12px;
    padding: 4px 10px; border-radius: 999px;
    font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    background: rgba(30,58,95,.75); color: #F8FAFC; backdrop-filter: blur(4px);
}
.prov-fav {
    position: absolute; top: 10px; right: 12px;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,.88); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #94A3B8;
    box-shadow: 0 2px 8px rgba(30,58,95,.1);
    transition: background .14s, color .14s, transform .15s;
}
.prov-fav:hover { background: #fff; transform: scale(1.12); }
.prov-fav.is-fav { color: #E11D48; }

.prov-body { padding: 34px 18px 16px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.prov-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 700; color: #0F172A; margin: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.25;
}
.prov-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.prov-meta-loc { font-size: 12px; color: #94A3B8; }
.prov-stars { display: flex; align-items: center; gap: 2px; }
.prov-star { font-size: 11px; }
.prov-star.on  { color: #C9A84C; }
.prov-star.off { color: #E2E8F0; }
.prov-note-txt { font-size: 12px; font-weight: 600; color: #475569; }
.prov-sep { color: #CBD5E1; font-size: 11px; }
.prov-desc {
    font-size: 13px; color: #475569; line-height: 1.65; margin: 0; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prov-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.prov-tag {
    padding: 3px 9px; border-radius: 999px;
    border: 1px solid #BFDBFE; font-size: 11px; font-weight: 600;
    color: #1E3A5F; background: #EFF6FF;
}
.prov-footer {
    display: flex; align-items: center; gap: 8px;
    padding-top: 12px; border-top: 1px solid #F1F5F9;
}
.prov-link {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    padding: 9px 14px; border-radius: 10px;
    font-size: 13px; font-weight: 600; color: #1E3A5F;
    border: 1.5px solid #BFDBFE; text-decoration: none;
    transition: background .14s, border-color .14s;
}
.prov-link:hover { background: #EFF6FF; border-color: #93C5FD; }
.prov-devis {
    display: inline-flex; align-items: center;
    padding: 9px 14px; border-radius: 10px;
    font-size: 13px; font-weight: 700; color: #0A1628;
    background: #C9A84C; text-decoration: none;
    box-shadow: 0 3px 10px rgba(201,168,76,.25);
    transition: transform .15s, box-shadow .15s; white-space: nowrap;
}
.prov-devis:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(201,168,76,.35); }

/* Empty state annuaire */
.ann-empty { text-align: center; padding: 60px 20px; }
.ann-empty strong {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: #0F172A; margin-bottom: 10px;
}
.ann-empty p { font-size: 14px; color: #94A3B8; line-height: 1.65; max-width: 320px; margin: 0 auto 20px; }

/* Responsive annuaire */
@media (max-width: 1060px) { .ann-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 840px)  { .ann-search { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
    .ann-grid { grid-template-columns: 1fr; }
    .ann-hero { padding: 40px 20px 36px; }
    .ann-body { padding: 0 20px 60px; }
    .ann-search { grid-template-columns: 1fr; }
    .ann-search-btn { width: 100%; }
    .ann-cats { padding: 0 16px; }
}


/* ================================================================
   12. VITRINE PRESTATAIRE v2 — prestataire.php
   Luxury editorial — marine foncé + or
   ================================================================ */
.vit * { box-sizing: border-box; }

/* ── Hero vitrine ── */
.vit-hero {
    background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);
    position: relative; overflow: hidden;
}
.vit-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 55% 70% at 85% 40%, rgba(201,168,76,.09) 0%, transparent 65%),
        radial-gradient(ellipse 35% 50% at 5% 90%,  rgba(59,108,176,.15) 0%, transparent 55%);
}
.vit-hero-inner {
    max-width: 1160px; margin: 0 auto;
    padding: 60px 32px 52px;
    display: grid; grid-template-columns: 1fr 280px;
    gap: 48px; align-items: center;
    position: relative; z-index: 1;
}
.vit-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: #C9A84C; margin-bottom: 18px;
}
.vit-kicker::before { content: ''; width: 28px; height: 1px; background: #C9A84C; }
.vit-logo-row { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.vit-logo {
    width: 68px; height: 68px; border-radius: 14px;
    object-fit: cover; border: 2px solid rgba(201,168,76,.35); flex-shrink: 0;
}
.vit-logo-ph {
    width: 68px; height: 68px; border-radius: 14px; flex-shrink: 0;
    background: rgba(201,168,76,.1); border: 2px solid rgba(201,168,76,.25);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: #C9A84C;
}
.vit-hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700;
    color: #F8FAFC; line-height: 1.1; letter-spacing: -.02em; margin: 0;
}
.vit-hero-desc { font-size: 15px; color: rgba(248,250,252,.6); line-height: 1.8; margin: 10px 0 22px; max-width: 520px; }
.vit-meta-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.vit-meta-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    font-size: 12px; font-weight: 500; color: rgba(248,250,252,.72);
    background: rgba(255,255,255,.06);
}
.vit-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Boutons hero vitrine */
.vit-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 11px 22px; border-radius: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
    cursor: pointer; text-decoration: none; border: none;
    transition: transform .15s, opacity .15s, box-shadow .15s; white-space: nowrap;
}
.vit-btn:hover { transform: translateY(-1px); opacity: .92; }
.vit-btn-gold { background: #C9A84C; color: #0A1628; box-shadow: 0 4px 16px rgba(201,168,76,.3); }
.vit-btn-outline { background: transparent; color: #F8FAFC; border: 1.5px solid rgba(255,255,255,.22); }
.vit-btn-outline:hover { border-color: rgba(255,255,255,.5); opacity: 1; }

/* Carte stat hero */
.vit-hero-card {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px; padding: 26px 22px; backdrop-filter: blur(10px);
    display: flex; flex-direction: column; gap: 18px;
}
.vit-rating-big {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.vit-rating-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: #C9A84C; line-height: 1; }
.vit-stars { color: #C9A84C; font-size: 15px; letter-spacing: 3px; }
.vit-rating-sub { font-size: 11px; color: rgba(255,255,255,.38); }
.vit-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vit-hero-stat span { display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 3px; }
.vit-hero-stat strong { font-size: 14px; font-weight: 700; color: #F8FAFC; }
.vit-hero-card-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
    padding: 13px; border-radius: 12px; background: #C9A84C; color: #0A1628;
    font-size: 14px; font-weight: 700; text-decoration: none;
    box-shadow: 0 4px 14px rgba(201,168,76,.35); transition: transform .15s, box-shadow .15s;
}
.vit-hero-card-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }

/* Nav sticky vitrine */
.vit-nav {
    background: #fff; border-bottom: 1px solid #E8F0FB;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 12px rgba(30,58,95,.06);
}
.vit-nav-inner {
    max-width: 1160px; margin: 0 auto; padding: 0 32px;
    display: flex; overflow-x: auto; scrollbar-width: none;
}
.vit-nav-inner::-webkit-scrollbar { display: none; }
.vit-nav-link {
    display: inline-flex; align-items: center;
    padding: 15px 18px; font-size: 13px; font-weight: 600;
    color: #475569; text-decoration: none; white-space: nowrap;
    border-bottom: 2px solid transparent; transition: color .14s, border-color .14s;
}
.vit-nav-link:hover, .vit-nav-link.active { color: #1E3A5F; border-bottom-color: #C9A84C; }

/* Layout body vitrine */
.vit-body {
    max-width: 1160px; margin: 0 auto; padding: 0 32px 80px;
    display: grid; grid-template-columns: 1fr 280px;
    gap: 40px; align-items: start;
}
.vit-main { min-width: 0; }
.vit-section { padding: 40px 0 0; }
.vit-section-head {
    display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
    margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid #E8F0FB;
}
.vit-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700; color: #0F172A; margin: 0; letter-spacing: -.01em;
}
.vit-section-sub  { font-size: 13px; color: #94A3B8; }
.vit-section-link { font-size: 13px; font-weight: 600; color: #3B6CB0; text-decoration: none; }
.vit-section-link:hover { text-decoration: underline; }

/* Présentation */
.vit-about p { font-size: 15px; color: #334155; line-height: 1.85; white-space: pre-line; margin: 0; }
.vit-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.vit-tag {
    padding: 5px 14px; border-radius: 999px;
    border: 1px solid #BFDBFE; font-size: 12px; font-weight: 600;
    color: #1E3A5F; background: #EFF6FF;
}

/* Galerie vitrine */
.vit-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vit-gal-item {
    border-radius: 12px; overflow: hidden; cursor: pointer;
    background: #EFF6FF; aspect-ratio: 4/3; position: relative;
}
.vit-gal-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 220px; }
.vit-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.vit-gal-item:hover img { transform: scale(1.04); }
.vit-gal-more {
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; background: #1E3A5F; color: #fff;
    font-size: 15px; font-weight: 700; text-decoration: none; aspect-ratio: 4/3; transition: background .15s;
}
.vit-gal-more:hover { background: #3B6CB0; }

/* Offres vitrine */
.vit-offers { display: flex; flex-direction: column; gap: 14px; }
.vit-offer {
    background: #fff; border: 1px solid #BFDBFE; border-radius: 18px; overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}
.vit-offer:hover { box-shadow: 0 8px 32px rgba(30,58,95,.09); transform: translateY(-2px); }
.vit-offer-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 14px; padding: 20px 22px 14px;
}
.vit-offer-cat {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: #C9A84C; margin-bottom: 5px;
}
.vit-offer-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700;
    color: #0F172A; margin: 0; line-height: 1.2;
}
.vit-offer-price { flex-shrink: 0; text-align: right; }
.vit-offer-price strong { display: block; font-size: 14px; font-weight: 700; color: #1E3A5F; white-space: nowrap; }
.vit-offer-price small { font-size: 11px; color: #94A3B8; }
.vit-offer-photos { display: flex; gap: 6px; padding: 0 22px 12px; }
.vit-offer-photo { width: 68px; height: 50px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #EFF6FF; }
.vit-offer-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vit-offer-desc { padding: 0 22px 14px; font-size: 14px; color: #475569; line-height: 1.7; border-bottom: 1px solid #F1F5F9; }
.vit-offer-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 12px 22px; flex-wrap: wrap;
}
.vit-offer-acts { display: flex; align-items: center; gap: 10px; }
.vit-toggle {
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
    color: #3B6CB0; background: none; border: none; cursor: pointer; padding: 0; transition: color .14s;
}
.vit-toggle:hover { color: #1E3A5F; }
.vit-offer-details { display: none; padding: 0 22px 20px; border-top: 1px solid #F1F5F9; }
.vit-offer-details.open { display: block; }
.vit-details-block { padding-top: 14px; }
.vit-details-block strong {
    display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: #94A3B8; margin-bottom: 6px;
}
.vit-details-block p { font-size: 14px; color: #475569; line-height: 1.75; margin: 0; }

/* Avis vitrine */
.vit-reviews { display: flex; flex-direction: column; gap: 12px; }
.vit-review { background: #F8FAFC; border: 1px solid #E8F0FB; border-radius: 14px; padding: 18px 20px; }
.vit-review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.vit-review-author { display: flex; align-items: center; gap: 10px; }
.vit-review-av {
    width: 36px; height: 36px; border-radius: 50%;
    background: #DBEAFE; color: #1E3A5F;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.vit-review-name { font-size: 14px; font-weight: 700; color: #0F172A; display: block; }
.vit-review-date { font-size: 11px; color: #94A3B8; }
.vit-review-stars { color: #C9A84C; font-size: 14px; letter-spacing: 2px; flex-shrink: 0; }
.vit-review-text { font-size: 14px; color: #334155; line-height: 1.75; margin: 0; }
.vit-verified-badge {
    display: inline-block; margin-top: 8px;
    font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: #065F46; background: #D1FAE5; padding: 2px 8px; border-radius: 6px;
}

/* Sidebar vitrine */
.vit-sidebar { position: sticky; top: calc(54px + 20px); display: flex; flex-direction: column; gap: 14px; }
.vit-s-card { background: #fff; border: 1px solid #BFDBFE; border-radius: 18px; overflow: hidden; }
.vit-s-head { padding: 14px 20px 10px; border-bottom: 1px solid #EFF6FF; }
.vit-s-head h3 {
    font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; color: #94A3B8; margin: 0;
}
.vit-s-body { padding: 12px 20px; }
.vit-c-item { display: flex; flex-direction: column; gap: 2px; padding: 9px 0; border-bottom: 1px solid #F1F5F9; }
.vit-c-item:last-child { border-bottom: none; }
.vit-c-item span { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #94A3B8; }
.vit-c-item strong, .vit-c-item a { font-size: 13px; font-weight: 600; color: #0F172A; text-decoration: none; word-break: break-all; }
.vit-c-item a:hover { color: #3B6CB0; }

/* CTA sidebar */
.vit-cta-card { background: #1E3A5F; border-radius: 18px; padding: 22px 20px; display: flex; flex-direction: column; gap: 10px; }
.vit-cta-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: #F8FAFC; margin: 0; line-height: 1.2; }
.vit-cta-card p { font-size: 13px; color: rgba(248,250,252,.55); line-height: 1.65; margin: 0; }
.vit-cta-gold {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    width: 100%; padding: 13px; border-radius: 12px;
    background: #C9A84C; color: #0A1628; font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 4px 14px rgba(201,168,76,.3); transition: transform .15s, box-shadow .15s;
}
.vit-cta-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,168,76,.4); }
.vit-cta-ghost {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    width: 100%; padding: 11px; border-radius: 12px;
    background: rgba(255,255,255,.07); color: #F8FAFC;
    border: 1px solid rgba(255,255,255,.14);
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: background .14s;
}
.vit-cta-ghost:hover { background: rgba(255,255,255,.13); }

/* Liste offres sidebar */
.vit-offer-list a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 20px; border-bottom: 1px solid #F1F5F9;
    text-decoration: none; transition: background .12s;
    font-size: 13px; font-weight: 600; color: #0F172A;
}
.vit-offer-list a:hover { background: #F8FBFF; }
.vit-offer-list a:last-child { border-bottom: none; }
.vit-offer-list span { font-size: 11px; color: #94A3B8; }

/* Lightbox vitrine */
.vit-lb { display: none; position: fixed; inset: 0; background: rgba(10,22,40,.96); z-index: 9999; align-items: center; justify-content: center; }
.vit-lb.open { display: flex; }
.vit-lb img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 12px; }
.vit-lb-close { position: absolute; top: 20px; right: 24px; font-size: 26px; color: #fff; cursor: pointer; background: none; border: none; opacity: .6; transition: opacity .14s; }
.vit-lb-close:hover { opacity: 1; }

/* Empty state vitrine */
.vit-empty { text-align: center; padding: 40px 20px; color: #94A3B8; font-size: 14px; line-height: 1.65; }

/* Responsive vitrine */
@media (max-width: 900px) {
    .vit-hero-inner { grid-template-columns: 1fr; gap: 24px; }
    .vit-hero-card  { display: none; }
    .vit-body       { grid-template-columns: 1fr; }
    .vit-sidebar    { position: static; }
    .vit-gallery    { grid-template-columns: repeat(2, 1fr); }
    .vit-gal-item:first-child { grid-column: span 2; min-height: 180px; }
}
@media (max-width: 560px) {
    .vit-hero-inner  { padding: 36px 20px 32px; }
    .vit-body        { padding: 0 20px 60px; }
    .vit-gallery     { grid-template-columns: 1fr 1fr; }
    .vit-offer-head  { flex-direction: column; }
    .vit-offer-price { text-align: left; }
}


/* ================================================================
   13. PAGES MARKETING — classes communes manquantes sur le serveur
   (comment-ca-marche, faq, mentions, pour-les-clients, etc.)
   ================================================================ */

/* Hero page interne */
.page-hero {
    background: var(--surface, #EFF6FF);
    border-bottom: 1px solid var(--border, #BFDBFE);
    padding: 60px 24px 52px;
    text-align: center;
}

.page-hero .container { max-width: 700px; margin: 0 auto; }

.page-hero-tag {
    display: inline-block;
    background: var(--surface-2, #DBEAFE); color: var(--primary, #1E3A5F);
    font-size: 11px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; padding: 5px 16px;
    border-radius: 999px; margin-bottom: 18px;
}

.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700; color: var(--text, #0F172A);
    line-height: 1.1; margin: 0 0 14px; letter-spacing: -.02em;
}
.page-hero-title span { color: var(--primary-m, #3B6CB0); font-style: italic; }

.page-hero-sub {
    font-size: 16px; color: var(--text-s, #475569);
    max-width: 540px; margin: 0 auto; line-height: 1.75;
}

/* Conteneurs */
.page-container      { max-width: 860px;  margin: 0 auto; padding: 3.5rem 24px; }
.page-container-wide { max-width: 1100px; margin: 0 auto; padding: 3.5rem 24px; }
.page-section        { margin-bottom: 3.5rem; }
.page-section:last-child { margin-bottom: 0; }

/* Section tag ligne */
.section-tag {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--text-t, #94A3B8); margin-bottom: 1.4rem;
}
.section-tag::after { content: ''; flex: 1; height: 1px; background: var(--border, #BFDBFE); }

/* Steps grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px; margin-top: 1.2rem;
}
.step-card {
    background: var(--white, #fff);
    border: 1px solid var(--border, #BFDBFE);
    border-radius: 20px; padding: 1.8rem;
    transition: box-shadow .2s, transform .2s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(30,58,95,.08); }
.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 700;
    color: var(--primary-l, #DBEAFE); line-height: 1; margin-bottom: 12px;
}
.step-title { font-size: 15px; font-weight: 600; color: var(--text, #0F172A); margin-bottom: 8px; }
.step-body  { font-size: 14px; color: var(--text-s, #475569); line-height: 1.7; }

/* Avantages */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px; margin-top: 1.2rem;
}
.avantage-card {
    background: var(--surface, #EFF6FF);
    border: 1px solid var(--border, #BFDBFE);
    border-radius: 16px; padding: 1.4rem;
    display: flex; gap: 14px; align-items: flex-start;
}
.avantage-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.avantage-title { font-size: 15px; font-weight: 600; color: var(--text, #0F172A); margin-bottom: 5px; }
.avantage-body  { font-size: 14px; color: var(--text-s, #475569); line-height: 1.65; }

/* CTA Banner */
.cta-banner {
    background: var(--primary, #1E3A5F);
    border-radius: 20px; padding: 3rem;
    text-align: center; margin-top: 3rem;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -80px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,168,76,.15), transparent 60%);
    pointer-events: none;
}
.cta-banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: #fff;
    margin-bottom: 10px; position: relative; z-index: 1;
}
.cta-banner-title span { color: #C9A84C; font-style: italic; }
.cta-banner-sub {
    font-size: 15px; color: rgba(255,255,255,.72);
    margin-bottom: 1.8rem; line-height: 1.65; position: relative; z-index: 1;
}
.cta-banner-btns {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-btn-primary {
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    padding: 12px 28px; background: #C9A84C; color: #0A1628;
    border: none; border-radius: 999px; text-decoration: none;
    display: inline-block; transition: opacity .15s, transform .15s;
}
.cta-btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.cta-btn-outline {
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    padding: 12px 28px; background: transparent; color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.35); border-radius: 999px;
    text-decoration: none; display: inline-block;
    transition: background .15s, color .15s;
}
.cta-btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Responsive marketing */
@media (max-width: 640px) {
    .page-container, .page-container-wide { padding: 2rem 16px; }
    .page-hero { padding: 44px 16px 36px; }
    .cta-banner { padding: 2rem 1.4rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .avantages-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   14. FAQ — styles accordion + contact box
   ================================================================ */

/* Accordion */
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border, #BFDBFE); }
.faq-item:first-child { border-top: 1px solid var(--border, #BFDBFE); }

.faq-question {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1.2rem 0;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    color: var(--text, #0F172A); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    transition: color .14s;
}
.faq-question:hover { color: var(--primary, #1E3A5F); }

.faq-chevron {
    font-size: 10px; color: var(--text-t, #94A3B8); flex-shrink: 0;
    transition: transform .22s ease, color .14s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary, #1E3A5F); }
.faq-item.open .faq-question { color: var(--primary, #1E3A5F); }

/* Réponse cachée par défaut */
.faq-answer {
    display: none;
    font-size: 15px; color: var(--text-s, #475569);
    line-height: 1.8; padding-bottom: 1.4rem;
    max-width: 720px;
}
.faq-item.open .faq-answer { display: block; }

/* Contact box FAQ */
.faq-contact-box {
    background: var(--surface, #EFF6FF);
    border: 1px solid var(--border, #BFDBFE);
    border-radius: 18px; padding: 2rem;
    text-align: center; margin-top: 2.5rem;
}
.faq-contact-icon  { font-size: 1.8rem; margin-bottom: 10px; }
.faq-contact-title { font-size: 16px; font-weight: 600; color: var(--text, #0F172A); margin-bottom: 6px; }
.faq-contact-sub   { font-size: 14px; color: var(--text-s, #475569); margin-bottom: 1.2rem; line-height: 1.6; }
.faq-contact-btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
    padding: 10px 24px;
    color: var(--primary, #1E3A5F); border: 1.5px solid var(--primary, #1E3A5F);
    border-radius: 999px; text-decoration: none;
    transition: background .14s, color .14s;
}
.faq-contact-btn:hover { background: var(--primary, #1E3A5F); color: #fff; }


/* ================================================================
   15. TARIFS — tarifs.php
   ================================================================ */

/* Notice lancement */
.tarifs-notice {
    display: flex; align-items: flex-start; gap: 14px;
    background: #FEF3C7; border: 1px solid #FDE68A;
    border-radius: 14px; padding: 16px 20px;
    font-size: 14px; color: #78350F; line-height: 1.65;
    margin-bottom: 2rem;
}
.tarifs-notice strong { color: #451a03; }
.tarifs-notice-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #F59E0B; flex-shrink: 0; margin-top: 4px;
}

/* Grille 3 colonnes */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 1.2rem;
}

/* Card */
.tarifs-card {
    background: #fff; border: 1px solid var(--border, #BFDBFE);
    border-radius: 20px; padding: 28px 24px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative;
    transition: box-shadow .2s, transform .2s;
}
.tarifs-card:hover { box-shadow: 0 12px 32px rgba(30,58,95,.09); transform: translateY(-3px); }

.tarifs-card-featured {
    border-color: var(--primary, #1E3A5F);
    box-shadow: 0 0 0 1px var(--primary, #1E3A5F), 0 8px 24px rgba(30,58,95,.1);
}

.tarifs-badge-soon {
    display: inline-block; align-self: flex-start;
    font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px;
    background: var(--surface-2, #DBEAFE); color: var(--primary, #1E3A5F);
}
.tarifs-badge-gold { background: #FEF3C7; color: #78350F; }

.tarifs-card-label {
    font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-t, #94A3B8); margin: 0;
}

.tarifs-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem; font-weight: 700; color: var(--text, #0F172A);
    margin: 0; line-height: 1;
}

.tarifs-price-text {
    font-size: 14px; color: var(--text-s, #475569); margin: 0; font-weight: 500;
}

/* Liste features */
.tarifs-features {
    list-style: none; padding: 0; margin: 0; flex: 1;
    display: flex; flex-direction: column; gap: 8px;
    border-top: 1px solid var(--border, #BFDBFE); padding-top: 14px;
}
.tarifs-features li {
    font-size: 14px; color: var(--text-s, #475569);
    display: flex; align-items: flex-start; gap: 9px; line-height: 1.45;
}
.tarifs-features li::before { content: '✓'; color: var(--success, #065F46); font-weight: 700; flex-shrink: 0; }

/* Boutons */
.tarifs-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 12px; border-radius: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
    text-decoration: none; cursor: pointer; border: none;
    transition: opacity .15s, transform .15s;
    margin-top: auto;
}
.tarifs-btn:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
.tarifs-btn-primary  { background: #1E3A5F; color: #fff; }
.tarifs-btn-outline  { background: transparent; color: #1E3A5F; border: 1.5px solid #1E3A5F; }
.tarifs-btn-disabled, .tarifs-btn-outline-disabled {
    background: var(--neutral-l, #F1F5F9); color: var(--text-t, #94A3B8);
    cursor: not-allowed; opacity: 1;
}

/* Bloc notification */
.tarifs-notify {
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px; flex-wrap: wrap;
    background: var(--surface, #EFF6FF); border: 1px solid var(--border, #BFDBFE);
    border-radius: 18px; padding: 28px 32px;
    margin-top: 2rem;
}
.tarifs-notify-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 700; color: var(--text, #0F172A); margin: 0 0 6px;
}
.tarifs-notify-text p { font-size: 14px; color: var(--text-s, #475569); margin: 0; line-height: 1.65; }
.tarifs-notify-form { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.tarifs-notify-input {
    height: 44px; padding: 0 14px; min-width: 240px;
    background: #fff; border: 1.5px solid var(--border-gray, #CBD5E1);
    border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 14px;
    color: var(--text, #0F172A); outline: none;
    transition: border-color .14s, box-shadow .14s;
}
.tarifs-notify-input:focus { border-color: #1E3A5F; box-shadow: 0 0 0 3px rgba(30,58,95,.1); }
.tarifs-notify-form .tarifs-btn { width: auto; padding: 0 22px; height: 44px; }

/* Responsive */
@media (max-width: 900px)  { .tarifs-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px)  {
    .tarifs-notify { flex-direction: column; }
    .tarifs-notify-input { min-width: 100%; }
    .tarifs-notify-form { width: 100%; }
    .tarifs-notify-form .tarifs-btn { flex: 1; }
}