/* style.css — KLUB Business Entreprise · index.php + annuaire.php */

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

:root {
    --navy:        #0D1B2A;
    --navy-mid:    #152336;
    --navy-light:  #1E3045;
    --blue:        #3D5A80;
    --blue-dark:   #2E4466;
    --blue-pale:   #EEF2F7;
    --gold:        #C9A84C;
    --gold-dark:   #B8933A;
    --gold-pale:   #FBF5E6;
    --orange:      #3D5A80;
    --orange-dark: #2E4466;
    --orange-pale: #EEF2F7;
    --cream:       #FAFAF8;
    --warm:        #F2EFE9;
    --white:       #FFFFFF;
    --text:        #1A1A1A;
    --muted:       #6B6860;
    --border:      #E5E0D8;
    --success:     #007A52;
    --success-bg:  #E8F6F1;
    --error:       #C0392B;
    --error-bg:    #FDECEC;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 4px rgba(13,27,42,.06);
    --shadow-md: 0 4px 24px rgba(13,27,42,.10);
    --shadow-lg: 0 12px 48px rgba(13,27,42,.16);
}

/* ─── BASE ──────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────────── */
.display-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.5px;
}

h2 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
}

/* ─── LAYOUT ────────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2rem);
}

.container-wide {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2rem);
}

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: .875rem 0;
    transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.nav__logo-mark {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__logo-mark img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.nav__name {
    font-weight: 600;
    font-size: .95rem;
    color: var(--white);
    line-height: 1.2;
}

.nav__tagline {
    font-size: .7rem;
    color: rgba(255,255,255,.5);
    line-height: 1;
    display: block;
}

.nav__cta {
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: .875rem;
    padding: .6rem 1.25rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, transform .1s;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.nav__cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: clamp(3rem, 8vw, 5.5rem) 0 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: .4;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(201,168,76,.08);
    pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.5rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero__eyebrow::before,
.hero__eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: .6;
}

.hero__title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    margin-bottom: 1.75rem;
    color: var(--white);
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__checks {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.hero__checks li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    line-height: 1.4;
}
.hero__checks li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: .1em;
    flex-shrink: 0;
}
.hero__checks strong { color: var(--white); font-weight: 600; }

.hero__price-badge {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: .4rem;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.4);
    border-radius: 100px;
    padding: .5rem 1.25rem;
    margin-bottom: 2rem;
}
.hero__price-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--gold);
    line-height: 1;
}
.hero__price-label { font-size: .875rem; color: rgba(255,255,255,.6); }

.hero__cta-group {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    min-height: 56px;
    width: 100%;
    transition: background .15s, transform .1s, box-shadow .15s;
    font-family: var(--font-body);
    line-height: 1;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61,90,128,.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: transparent;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    font-size: .9375rem;
    padding: .875rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.18);
    cursor: pointer;
    min-height: 52px;
    width: 100%;
    transition: border-color .15s, color .15s;
    font-family: var(--font-body);
    line-height: 1;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.4); color: var(--white); }

/* Widget secteur */
.hero__widget {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: clamp(1.25rem, 4vw, 2rem);
    backdrop-filter: blur(8px);
    margin-top: 0;
}
.hero__widget-label {
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    margin-bottom: .875rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.hero__widget-label i { color: var(--gold); }

.widget-form { display: flex; gap: .625rem; }

.widget-input {
    flex: 1;
    height: 52px;
    padding: 0 1rem;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.16);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color .15s, background .15s;
    min-width: 0;
}
.widget-input::placeholder { color: rgba(255,255,255,.35); }
.widget-input:focus { border-color: var(--orange); background: rgba(255,255,255,.12); }

.widget-btn {
    height: 52px;
    padding: 0 1.25rem;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: .9375rem;
    font-family: var(--font-body);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
    min-width: 90px;
    flex-shrink: 0;
}
.widget-btn:hover { background: var(--orange-dark); }

.widget-result {
    margin-top: 1rem;
    padding: .875rem 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9375rem;
    line-height: 1.5;
}
.widget-result--ok {
    background: rgba(0,122,82,.15);
    border: 1px solid rgba(0,122,82,.3);
    color: #4DD4A8;
}
.widget-result--no {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.65);
}
.widget-result i { margin-top: .2em; flex-shrink: 0; }
.widget-result small { display: block; margin-top: .2rem; opacity: .75; font-size: .875rem; }

.widget-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .875rem;
    padding: .875rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    min-height: 52px;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}
.widget-cta--ok {
    background: var(--orange);
    color: var(--white);
}
.widget-cta--ok:hover { background: var(--orange-dark); }
.widget-cta--wl {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.2);
}
.widget-cta--wl:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); }

/* ─── STATS ─────────────────────────────────────────────────────────────────── */
.stats {
    background: var(--orange);
    padding: clamp(2rem, 5vw, 3rem) 0;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.stat {
    text-align: center;
    padding: 1rem clamp(.75rem, 3vw, 2rem);
    position: relative;
}
.stat + .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,.25);
}
.stat__number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.6rem, 5vw, 2.75rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: .3rem;
}
.stat__label {
    font-size: clamp(.7rem, 2.5vw, .875rem);
    color: rgba(255,255,255,.75);
    line-height: 1.3;
    font-weight: 500;
}

/* ─── ABOUT ─────────────────────────────────────────────────────────────────── */
.about {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--white);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 640px) {
    .about__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.about__text h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1rem; color: var(--navy); }
.about__text p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.about__text p:last-child { margin-bottom: 0; }
.about__text strong { color: var(--navy); font-weight: 600; }
.about__towns {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .75rem;
}
.about__towns li {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: .95rem;
}
.about__towns li::before {
    content: '◆ ';
    font-size: .55rem;
    vertical-align: middle;
    color: var(--gold);
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.about__logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* ─── SECTION HEADER ─────────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); color: var(--navy); margin-top: .5rem; }
.section-header p {
    color: var(--muted);
    font-size: 1.0625rem;
    margin-top: .75rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── STEPS ─────────────────────────────────────────────────────────────────── */
.steps {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--warm);
}
.steps__grid {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px) {
    .steps__grid { grid-template-columns: repeat(3, 1fr); }
}
.step {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    position: relative;
}
.step__num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.step__title {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: .5rem;
    line-height: 1.35;
}
.step__text {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ─── MEETINGS SECTION ───────────────────────────────────────────────────────── */
.meetings-section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--navy);
}
.meetings-section .section-header h2 { color: var(--white); }
.meetings-section .section-header p { color: rgba(255,255,255,.55); margin-top: .5rem; }
.meetings-section .eyebrow { color: var(--gold); }
.meetings__grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px) {
    .meetings__grid { grid-template-columns: repeat(3, 1fr); }
}
.meeting-format {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: border-color .15s, background .15s;
}
.meeting-format:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(201,168,76,.45);
}
.meeting-format__icon {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: .75rem;
}
.meeting-format__label {
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: .25rem;
}
.meeting-format__time {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: .75rem;
}
.meeting-format__desc {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
}

/* ─── BENEFITS ──────────────────────────────────────────────────────────────── */
.benefits {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--warm);
}
.benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (min-width: 580px) {
    .benefits__grid { grid-template-columns: repeat(4, 1fr); }
}
.benefit-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform .15s, box-shadow .15s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
    font-size: 1.25rem;
}
.benefit-card__title { font-weight: 600; font-size: .9rem; color: var(--navy); line-height: 1.35; margin-bottom: .3rem; }
.benefit-card__sub { font-size: .8rem; color: var(--muted); line-height: 1.4; }

/* ─── PHOTOS ────────────────────────────────────────────────────────────────── */
.photos {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--white);
}
.photos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 560px) {
    .photos__grid { grid-template-columns: 3fr 2fr; }
}
.photo-slot {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--warm);
    aspect-ratio: 16/10;
}
@media (min-width: 560px) {
    .photo-slot:first-child { aspect-ratio: 4/3; }
    .photo-slot:last-child  { aspect-ratio: 3/4; }
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }

/* ─── WHY JOIN ──────────────────────────────────────────────────────────────── */
.why {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.why::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 50px solid rgba(201,168,76,.1);
    pointer-events: none;
}
.why .section-header h2 { color: var(--white); }
.why .section-header p { color: rgba(255,255,255,.55); }
.why .eyebrow { color: var(--gold); }

.why__list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    position: relative;
    z-index: 1;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius-md);
    transition: background .15s, border-color .15s;
}
.why-item:hover { background: rgba(255,255,255,.07); border-color: rgba(201,168,76,.3); }
.why-item__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .05em; line-height: 1; }
.why-item__text strong { display: block; font-weight: 600; color: var(--white); margin-bottom: .15rem; font-size: 1rem; }
.why-item__text span { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ─── SECTORS ───────────────────────────────────────────────────────────────── */
.sectors {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--cream);
}
.sectors__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
}
.sector-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--navy);
}
.sector-chip::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--error);
    flex-shrink: 0;
}
.sectors__empty { text-align: center; color: var(--muted); }

/* ─── PRICE ─────────────────────────────────────────────────────────────────── */
.price {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--white);
}
.price__card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 6vw, 3.5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.price__card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 40px solid rgba(201,168,76,.1);
    pointer-events: none;
}
.price__eyebrow { color: var(--gold); margin-bottom: .75rem; }
.price__amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(4rem, 12vw, 6rem);
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 1;
}
.price__amount span {
    font-size: 40%;
    color: rgba(255,255,255,.5);
    font-weight: 700;
    vertical-align: top;
    margin-top: .5em;
    margin-right: .1em;
}
.price__period { font-size: 1.125rem; color: rgba(255,255,255,.5); margin-top: .25rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.price__inclus {
    list-style: none;
    max-width: 360px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.price__inclus li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9375rem;
    color: rgba(255,255,255,.75);
}
.price__inclus li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: rgba(0,122,82,.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234DD4A8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.price__inclus li.no::before {
    background: rgba(255,255,255,.08);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='rgba(255,255,255,0.3)' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.price__inclus li.no { color: rgba(255,255,255,.35); }
.price__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    min-height: 56px;
    transition: background .15s, transform .1s, box-shadow .15s;
}
.price__cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,90,128,.35); }

/* ─── FORMS ─────────────────────────────────────────────────────────────────── */
.form-section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--warm);
}
.form-section--waitlist { background: var(--white); }

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 5vw, 2.75rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.form-section--waitlist .form-card {
    background: var(--warm);
    box-shadow: none;
    border-color: transparent;
}

.form-card h2 { font-size: clamp(1.4rem, 4vw, 2rem); color: var(--navy); margin-bottom: .5rem; }
.form-card .subtitle { color: var(--muted); margin-bottom: 2rem; font-size: .9375rem; }
.form-card .form-eyebrow { margin-bottom: .5rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 479px) {
    .form-row { grid-template-columns: 1fr; }
}

.field { margin-bottom: 1.125rem; }
.field label { display: block; font-weight: 600; font-size: .875rem; color: var(--navy); margin-bottom: .45rem; }
.field label .req { color: var(--gold); margin-left: .2em; }
.field input {
    display: block;
    width: 100%;
    height: 52px;
    padding: 0 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    -webkit-appearance: none;
    appearance: none;
}
.field input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(61,90,128,.12); }
.field input.is-invalid { border-color: var(--error); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.field input::placeholder { color: #B5B0A8; }
.field .field-hint { font-size: .8rem; color: var(--muted); margin-top: .35rem; }
.form-section--waitlist .field input { background: var(--white); }

.alert {
    padding: .875rem 1.125rem;
    border-radius: var(--radius-sm);
    font-size: .9375rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.alert--error { background: var(--error-bg); border: 1px solid rgba(192,57,43,.25); color: var(--error); }
.alert--success { background: var(--success-bg); border: 1px solid rgba(0,122,82,.25); color: var(--success); }
.alert i { margin-top: .15em; flex-shrink: 0; }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    width: 100%;
    min-height: 56px;
    padding: 1rem 1.5rem;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: 1.0625rem;
    font-family: var(--font-body);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background .15s, transform .1s, box-shadow .15s;
    margin-top: .5rem;
    line-height: 1;
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,90,128,.35); }
.btn-submit:active { transform: translateY(0); }

.btn-submit--secondary {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}
.btn-submit--secondary:hover { background: var(--navy); color: var(--white); box-shadow: none; }

.form-trust {
    text-align: center;
    margin-top: 1rem;
    font-size: .8125rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}
.form-trust i { color: var(--gold); font-size: .75rem; }

.honeypot {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,.6);
    padding: 2.5rem 0;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 600px) {
    .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__brand { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--white); margin-bottom: .2rem; }
.footer__sub { font-size: .8125rem; color: rgba(255,255,255,.4); line-height: 1.5; }
.footer__contact { display: flex; flex-direction: column; gap: .4rem; font-size: .875rem; }
.footer__contact a { color: rgba(255,255,255,.55); text-decoration: none; display: flex; align-items: center; gap: .5rem; transition: color .15s; }
.footer__contact a:hover { color: var(--gold); }
.footer__contact i { color: var(--gold); font-size: .75rem; flex-shrink: 0; }
.footer__copy { border-top: 1px solid rgba(255,255,255,.08); margin-top: 1.5rem; padding-top: 1.5rem; font-size: .8rem; text-align: center; color: rgba(255,255,255,.3); }
.footer__copy a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer__copy a:hover { color: rgba(255,255,255,.6); }

/* ─── STICKY MOBILE CTA ─────────────────────────────────────────────────────── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: .875rem 1.25rem calc(.875rem + env(safe-area-inset-bottom));
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -4px 24px rgba(0,0,0,.25);
    animation: slideUp .3s ease both;
}
@media (max-width: 639px) {
    .sticky-cta { display: block; }
    body { padding-bottom: 80px; }
}
.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: .875rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    min-height: 52px;
    transition: background .15s;
}
.sticky-cta a:hover { background: var(--orange-dark); }

/* ─── ANIMATIONS ────────────────────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}

/* ─── CONFIRMATION ──────────────────────────────────────────────────────────── */
.confirmation { text-align: center; padding: 2rem 0; }
.confirmation__icon {
    width: 72px;
    height: 72px;
    background: var(--success-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--success);
    font-size: 2rem;
}
.confirmation h2 { color: var(--navy); margin-bottom: .75rem; }
.confirmation p { color: var(--muted); }

/* ─── ANNUAIRE ──────────────────────────────────────────────────────────────── */
.annuaire-header {
    background: var(--navy);
    border-top: 4px solid var(--gold);
    padding: 2rem 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.annuaire-header::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 40px solid rgba(201,168,76,.08);
    pointer-events: none;
}
.annuaire-header::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 50px solid rgba(201,168,76,.12);
    pointer-events: none;
}
.annuaire-header__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 18px;
    border: 2px solid rgba(201,168,76,.35);
    background: rgba(201,168,76,.06);
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(201,168,76,.08);
}
.annuaire-header__logo {
    height: 72px;
    width: 72px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}
.annuaire-header__eyebrow {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
    position: relative;
    z-index: 1;
}
.annuaire-header__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    color: var(--white);
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
}
.annuaire-header__rule {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto .75rem;
    position: relative;
    z-index: 1;
}
.annuaire-header__date {
    font-size: .875rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.annuaire-header__wave {
    display: block;
    width: 100%;
    height: 32px;
    background: var(--orange);
    clip-path: ellipse(55% 100% at 50% 100%);
    margin-top: 1.5rem;
}

.annuaire-stats {
    background: var(--orange);
    padding: 1.5rem 0 2rem;
}
.annuaire-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 1.5rem;
}
.annuaire-stats .stat {
    text-align: center;
    padding: .75rem clamp(.5rem, 3vw, 1.5rem);
    position: relative;
}
.annuaire-stats .stat + .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,.25);
}
.annuaire-stats .stat__number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.4rem, 4vw, 2.25rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: .25rem;
}
.annuaire-stats .stat__label {
    font-size: clamp(.65rem, 2vw, .8rem);
    color: rgba(255,255,255,.75);
    line-height: 1.3;
    font-weight: 500;
}
.annuaire-stats__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: .9375rem;
    font-family: var(--font-body);
    padding: .75rem 1.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    min-height: 48px;
    width: fit-content;
    margin: 0 auto;
    transition: background .15s, transform .1s, box-shadow .15s;
}
.annuaire-stats__cta:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }

.annuaire-members {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem);
    background: var(--cream);
}
.annuaire-members__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    color: var(--navy);
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.annuaire-members__empty {
    text-align: center;
    color: var(--muted);
    padding: 3rem 0;
    font-size: 1.0625rem;
}

.annuaire-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 480px) {
    .annuaire-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 800px) {
    .annuaire-grid { grid-template-columns: repeat(3, 1fr); }
}

.member-card {
    background: #FDFCFA;
    border-radius: var(--radius-md);
    border: 1px solid #C4BCB0;
    box-shadow: 0 4px 20px rgba(13,27,42,.14);
    padding: 1.5rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .15s, transform .15s, border-color .15s;
}
.member-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,.4);
    transform: translateY(-2px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto .875rem;
    border: 3px solid var(--border);
}
.member-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto .875rem;
    flex-shrink: 0;
}
.member-name {
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: .4rem;
}
.member-job {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--orange-pale);
    padding: .2rem .75rem;
    border-radius: 100px;
    margin-bottom: .75rem;
    line-height: 1.5;
}
.member-logo-wrapper {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
}
.member-logo { max-height: 56px; width: auto; max-width: 160px; object-fit: contain; }

.member-contacts {
    border-top: 1px solid var(--border);
    padding-top: .75rem;
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.member-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .9375rem;
    color: var(--navy);
    text-decoration: none;
    padding: .35rem 0;
    font-weight: 500;
    transition: color .15s;
}
.member-contact-link:hover { color: var(--gold); }
.member-contact-link i { color: var(--gold); font-size: .875rem; flex-shrink: 0; width: 14px; }

.member-contact-icons {
    display: flex;
    justify-content: center;
    gap: .625rem;
    margin-top: .35rem;
}
.member-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    text-decoration: none;
    font-size: .9375rem;
    transition: background .15s, color .15s;
    flex-shrink: 0;
}
.member-contact-icon:hover { background: var(--orange); color: var(--white); }

.annuaire-footer {
    background: var(--navy);
    padding: 1.5rem 0;
    text-align: center;
}
.annuaire-footer p {
    font-size: .8125rem;
    color: rgba(255,255,255,.35);
    margin: 0;
}

/* ─── HONEYPOT legacy ───────────────────────────────────────────────────────── */
.honeypot-container {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
