:root {
    --primary: #f5b400;
    --primary-dark: #d99a00;
    --secondary: #4caf7d;
    --blue: #dff3ff;
    --cream: #fff8e8;
    --text: #263238;
    --muted: #667085;
    --white: #ffffff;
    --border: #eeeeee;
    --danger: #b42318;
    --success-bg: #e8f8ef;
    --success-text: #176b3a;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: #fffdf7;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.logo-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--cream);
    border-radius: 50%;
    font-size: 24px;
}

.logo strong {
    display: block;
    font-size: 17px;
}

.logo small {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--primary);
    color: #2d2200;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 22px;
    cursor: pointer;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
}

.main-nav a {
    color: #344054;
}

.main-nav a:hover {
    color: var(--primary-dark);
}

.nav-button {
    background: var(--primary);
    color: #2d2200 !important;
    padding: 10px 18px;
    border-radius: 30px;
}

.hero {
    background:
        radial-gradient(circle at top left, #fff2bd, transparent 35%),
        linear-gradient(135deg, #fff8e8, #eaf9f1);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--white);
    color: var(--secondary);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    margin: 0 0 20px;
}

.hero p {
    font-size: 19px;
    color: var(--muted);
    max-width: 680px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    border: none;
    cursor: pointer;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 30px;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: #2d2200;
}

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

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
}

.hero-card,
.content-card,
.info-card,
.highlight-box,
.intro-card,
.cta-panel {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 28px;
}

.hero-card {
    border: 3px dashed #ffe08a;
    position: relative;
}

.hero-bird {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cream);
    font-size: 34px;
    margin-bottom: 10px;
}

.features,
.content-section {
    padding: 60px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.programme-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
}

.info-card {
    text-align: center;
}

.info-card .icon {
    font-size: 38px;
    margin-bottom: 10px;
}

.info-card h3 {
    margin-bottom: 8px;
}

.info-card p,
.intro-card p,
.content-card p,
.cta-panel p {
    color: var(--muted);
}

.section-light {
    padding: 70px 0;
    background: var(--cream);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.text-link {
    color: var(--primary-dark);
    font-weight: 700;
}

.highlight-box ul {
    padding-left: 20px;
}

.page-header {
    background: linear-gradient(135deg, #fff8e8, #e8f8ff);
    padding: 65px 0;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin: 0 0 12px;
}

.page-header p {
    color: var(--muted);
    font-size: 18px;
}

.values-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.values-grid div {
    background: #fffaf0;
    padding: 20px;
    border-radius: 18px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 28px 0;
}

.step {
    background: #f7fbff;
    padding: 22px;
    border-radius: 20px;
}

.step span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--primary);
    border-radius: 50%;
    font-weight: 800;
}

.callout {
    background: var(--cream);
    padding: 24px;
    border-radius: 22px;
    margin-top: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.map-box {
    margin-top: 20px;
    border-radius: 18px;
    overflow: hidden;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 6px;
}

.form-group label {
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid #ffe8a3;
    border-color: var(--primary);
}

.field-error,
.validation-summary {
    color: var(--danger);
    font-size: 14px;
}

.validation-summary ul {
    margin: 0 0 16px 20px;
}

.success-message {
    background: var(--success-bg);
    color: var(--success-text);
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 600;
}

.cta-panel {
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #fff2bd);
}

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.data-table th,
.data-table td {
    border-bottom: 1px solid var(--border);
    padding: 12px;
    vertical-align: top;
    text-align: left;
}

.data-table th {
    background: var(--cream);
}

.note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
}

.site-footer {
    background: #263238;
    color: var(--white);
    padding-top: 45px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px;
}

.site-footer a {
    color: #ffe08a;
}

.footer-bottom {
    text-align: center;
    padding: 18px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #d0d5dd;
}

@media (max-width: 960px) {
    .menu-toggle {
        display: block;
    }

    .header-content {
        min-height: 70px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding-bottom: 12px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 10px 0;
    }

    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .programme-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .cards-grid,
    .programme-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 54px 0;
    }
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field input {
    padding-right: 52px !important;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #475467;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.password-toggle:hover,
.password-toggle:focus-visible {
    background: #fff2bd;
    color: var(--primary-dark);
    outline: none;
}

.password-toggle .icon-eye {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.password-toggle.is-visible::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: currentColor;
    transform: rotate(-38deg);
    border-radius: 999px;
}

/* === Accueil amélioré === */
.hero-home {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 224, 138, 0.82), transparent 30%),
        radial-gradient(circle at 92% 10%, rgba(189, 232, 255, 0.78), transparent 28%),
        linear-gradient(135deg, #fff8e8 0%, #f2fff7 48%, #eaf7ff 100%);
}

.hero-home::before,
.hero-home::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    pointer-events: none;
}

.hero-home::before {
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -120px;
}

.hero-home::after {
    width: 190px;
    height: 190px;
    left: -60px;
    top: 190px;
}

.hero-home-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 48px;
}

.hero-copy h1 {
    max-width: 780px;
    letter-spacing: -0.04em;
}

.hero-lead {
    font-size: 20px;
    color: #4b5563;
}

.badge-soft {
    border: 1px solid rgba(76, 175, 125, 0.18);
}

.btn-link-call {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: var(--secondary);
    font-weight: 800;
    padding: 0 4px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 14px;
    max-width: 680px;
    margin-top: 34px;
}

.hero-trust div {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 18px 16px;
    box-shadow: 0 12px 28px rgba(38, 50, 56, 0.07);
    backdrop-filter: blur(8px);
}

.hero-trust strong {
    display: block;
    color: var(--primary-dark);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 7px;
}

.hero-trust span {
    color: #475467;
    font-weight: 700;
    font-size: 14px;
}

.hero-photo-card {
    position: relative;
    margin: 0;
    border-radius: 34px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 60px rgba(38, 50, 56, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-photo-card::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 42px;
    border: 2px dashed rgba(245, 180, 0, 0.38);
    z-index: -1;
}

.hero-photo-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.33 / 1;
    object-fit: cover;
    border-radius: 26px;
    background: #f8fbff;
}

.hero-photo-ribbon {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 2;
    background: #263238;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 9px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(38, 50, 56, 0.2);
}

.hero-photo-card figcaption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: 0 14px 34px rgba(38, 50, 56, 0.16);
}

.hero-photo-card figcaption strong,
.hero-photo-card figcaption span {
    display: block;
}

.hero-photo-card figcaption strong {
    color: #263238;
    margin-bottom: 4px;
}

.hero-photo-card figcaption span {
    color: #667085;
    font-size: 14px;
}

.home-intro-band {
    transform: translateY(-34px);
    position: relative;
    z-index: 2;
}

.intro-band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.intro-band-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid #f1f3f5;
}

.intro-band-item .mini-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: #fff2bd;
    color: #7a5600;
    font-weight: 900;
    margin-bottom: 12px;
}

.intro-band-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.intro-band-item p {
    color: var(--muted);
    margin: 0;
}

.section-heading {
    text-align: center;
    max-width: 820px;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    margin: 8px 0 12px;
    letter-spacing: -0.03em;
}

.section-heading p {
    color: var(--muted);
    font-size: 18px;
}

.eyebrow {
    display: inline-block;
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.home-features {
    padding-top: 20px;
}

.cards-grid-home {
    align-items: stretch;
}

.feature-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -44px;
    top: -44px;
    border-radius: 50%;
    background: rgba(255, 224, 138, 0.45);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(38, 50, 56, 0.12);
}

.icon-bubble {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 19px;
    background: #e8f8ef;
    color: #176b3a;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 8px;
}

.home-story-section {
    background:
        radial-gradient(circle at 14% 16%, rgba(255,255,255,0.72), transparent 24%),
        var(--cream);
}

.home-story-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.story-content h2,
.location-card h2,
.cta-panel-home h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 8px 0 16px;
}

.story-content p,
.location-card p {
    color: var(--muted);
    font-size: 17px;
}

.text-link-arrow::after {
    content: " →";
}

.home-highlight {
    border: 1px solid #ffe08a;
}

.check-list {
    list-style: none;
    padding: 0 !important;
    margin: 16px 0 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: #475467;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e8f8ef;
    color: #176b3a;
    font-weight: 900;
    font-size: 13px;
}

.location-section {
    padding-top: 70px;
}

.location-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: stretch;
}

.location-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.map-preview {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 360px;
    background: #eef8ff;
    border: 1px solid #e9eef5;
}

.map-preview iframe {
    display: block;
    min-height: 360px;
}

.final-cta-section {
    padding-top: 30px;
}

.cta-panel-home {
    padding: clamp(34px, 5vw, 58px);
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.8), transparent 28%),
        linear-gradient(135deg, #fff2bd 0%, #ffffff 45%, #e8f8ef 100%);
    border: 1px solid #fff1ba;
}

.cta-panel-home p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    justify-content: center;
}

@media (max-width: 960px) {
    .hero-home-grid,
    .home-story-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .hero-home {
        padding-top: 64px;
    }

    .hero-photo-card {
        max-width: 680px;
        margin-inline: auto;
    }

    .intro-band-grid,
    .hero-trust {
        grid-template-columns: 1fr;
    }

    .home-intro-band {
        transform: none;
        padding: 28px 0 0;
    }
}

@media (max-width: 560px) {
    .hero-actions,
    .location-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-link-call {
        text-align: center;
        justify-content: center;
    }

    .hero-photo-card figcaption {
        position: static;
        margin-top: 12px;
    }

    .hero-photo-ribbon {
        top: 24px;
        left: 24px;
    }
}


/* === Clavardage automatique - page d'accueil === */
.home-chat-preview {
    padding: 52px 0 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fff9 52%, #eef8ff 100%);
}

.chat-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: center;
}

.chat-preview-copy h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 8px 0 14px;
}

.chat-preview-copy p {
    color: var(--muted);
    font-size: 17px;
    max-width: 720px;
}

.chat-preview-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
    display: grid;
    gap: 12px;
}

.chat-preview-line {
    max-width: 82%;
    padding: 12px 15px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 14px;
}

.chat-preview-line-bot {
    background: #e8f8ef;
    color: #176b3a;
    border-bottom-left-radius: 6px;
}

.chat-preview-line-user {
    justify-self: end;
    background: #fff2bd;
    color: #6b4b00;
    border-bottom-right-radius: 6px;
}

.chatbot-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 250;
    font-family: inherit;
}

.chatbot-launcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    background: #263238;
    color: #ffffff;
    padding: 14px 18px;
    box-shadow: 0 18px 38px rgba(38, 50, 56, 0.28);
    cursor: pointer;
    font-weight: 900;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
    background: #1d2930;
    outline: 3px solid #ffe08a;
}

.chatbot-launcher-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: #2d2200;
    border-radius: 50%;
    font-size: 18px;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: min(390px, calc(100vw - 32px));
    max-height: min(680px, calc(100vh - 120px));
    background: #ffffff;
    border: 1px solid #e9eef5;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(38, 50, 56, 0.24);
    overflow: hidden;
    display: none;
}

.chatbot-widget.is-open .chatbot-panel {
    display: flex;
    flex-direction: column;
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #fff2bd, #e8f8ef);
    border-bottom: 1px solid #edf2f7;
}

.chatbot-header strong,
.chatbot-header span {
    display: block;
}

.chatbot-header strong {
    color: #263238;
    font-size: 17px;
}

.chatbot-header span {
    color: #475467;
    font-size: 13px;
    font-weight: 700;
}

.chatbot-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.74);
    color: #263238;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.chatbot-messages {
    padding: 18px;
    display: grid;
    gap: 12px;
    overflow-y: auto;
    min-height: 250px;
    max-height: 340px;
    background: #fbfdff;
}

.chatbot-message {
    display: grid;
    gap: 4px;
    max-width: 88%;
}

.chatbot-message span {
    font-size: 12px;
    color: #667085;
    font-weight: 800;
}

.chatbot-bubble {
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.45;
}

.chatbot-message-bot {
    justify-self: start;
}

.chatbot-message-bot .chatbot-bubble {
    background: #e8f8ef;
    color: #174c2b;
    border-bottom-left-radius: 6px;
}

.chatbot-message-user {
    justify-self: end;
}

.chatbot-message-user span {
    text-align: right;
}

.chatbot-message-user .chatbot-bubble {
    background: #fff2bd;
    color: #5a4100;
    border-bottom-right-radius: 6px;
}

.chatbot-message a {
    color: var(--primary-dark);
    font-weight: 900;
    text-decoration: underline;
}

.chatbot-suggestions {
    padding: 14px 16px 4px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    background: #ffffff;
}

.chatbot-suggestions button {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #344054;
    border-radius: 999px;
    padding: 8px 11px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
}

.chatbot-suggestions button:hover,
.chatbot-suggestions button:focus-visible {
    background: #fff2bd;
    border-color: #ffe08a;
    outline: none;
}

.chatbot-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 12px 16px 8px;
    background: #ffffff;
}

.chatbot-form input {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 999px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
}

.chatbot-form input:focus {
    outline: 3px solid #ffe8a3;
    border-color: var(--primary);
}

.chatbot-form button {
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #2d2200;
    padding: 0 16px;
    font-weight: 900;
    cursor: pointer;
}

.chatbot-note {
    margin: 0;
    padding: 0 18px 16px;
    color: #667085;
    font-size: 12px;
}

@media (max-width: 960px) {
    .chat-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .chatbot-widget {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .chatbot-launcher {
        width: 100%;
        justify-content: center;
    }

    .chatbot-panel {
        right: 0;
        left: 0;
        width: auto;
    }
}


/* === V10 - Accueil retravaillé pour ressembler au modèle fourni === */
.home-page-reference {
    background: #ececec;
}

.home-reference-page {
    padding: 30px 0 38px;
}

.home-reference-card-exact {
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #dfe5eb;
    box-shadow: 0 14px 38px rgba(61, 87, 109, 0.12);
    overflow: hidden;
}

.home-reference-topbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 28px 16px;
}

.home-brand-block {
    display: grid;
    grid-template-columns: 122px 1fr 122px;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.home-brand-logo {
    width: 122px;
    height: 88px;
    flex: 0 0 auto;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #edf7ff 0%, #ffffff 100%);
    border: 2px solid #cae5f6;
    box-shadow: 0 8px 18px rgba(62, 115, 156, 0.16);
}

.home-brand-logo-left {
    justify-self: start;
}

.home-brand-logo-right {
    justify-self: end;
}

.home-brand-logo-left img {
    transform: scaleX(-1);
}

.home-brand-copy {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.home-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-icon {
    overflow: hidden;
}

.home-brand-kicker {
    display: block;
    color: #7dbb45;
    font-weight: 900;
    font-size: 19px;
    line-height: 1.05;
    margin-bottom: 2px;
}

.home-brand-copy h1 {
    margin: 0 0 2px;
    color: #0d66b3;
    font-size: clamp(32px, 3.3vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.home-brand-copy p {
    margin: 0;
    color: #284f74;
    font-size: 15px;
    font-weight: 500;
}

.home-reference-contacts {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: none;
    padding: 0;
    min-width: auto;
}

.contact-pill-icon {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #fff7dc);
    border: 3px solid #f3c84f;
    box-shadow: 0 10px 24px rgba(151, 111, 22, 0.17);
    font-size: 0;
    line-height: 1;
    overflow: hidden;
}

.contact-pill-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 46px;
    line-height: 1;
    transform: none;
    transform-origin: center center;
}

.contact-pill-phone .contact-pill-icon {
    background: linear-gradient(145deg, #ffffff, #f1ffd9);
    border-color: #9fd15c;
    box-shadow: 0 10px 24px rgba(93, 132, 35, 0.17);
}

.contact-pill > div > strong,
.contact-pill > div > span {
    display: block;
}

.contact-pill strong {
    color: #17395a;
    font-size: 15px;
    line-height: 1.3;
}

.contact-pill-phone strong {
    font-size: 19px;
    color: #111111;
}

.contact-pill > div > span {
    color: #244c72;
    font-size: 13px;
    line-height: 1.35;
}

.home-shortcuts-exact {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 0 28px;
    margin: 2px 0 0;
}

.shortcut-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 150px;
    padding: 16px 10px 14px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #d7e4ee;
    background: linear-gradient(180deg, #fffdf7 0%, #fff4d7 100%);
    color: #4a3410;
    box-shadow: 0 8px 18px rgba(126, 92, 24, 0.10);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.shortcut-card:hover,
.shortcut-card:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #ffe08a 0%, #f5b400 100%);
    color: #2d2200;
    border-color: #d99a00;
    box-shadow: 0 14px 26px rgba(143, 101, 0, 0.22);
    outline: none;
}

.shortcut-card:hover .shortcut-icon,
.shortcut-card:focus-visible .shortcut-icon {
    background: #fffaf0;
    box-shadow: 0 8px 16px rgba(105, 70, 0, 0.18);
}

.shortcut-card strong {
    font-size: 17px;
    line-height: 1.15;
    font-weight: 800;
}

.shortcut-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.96);
    font-size: 31px;
    box-shadow: 0 8px 16px rgba(43, 90, 128, 0.12);
}

.shortcut-card.theme-blue { background: linear-gradient(180deg, #42b6ff 0%, #0b67b2 100%); color: #ffffff; border-color: #0b67b2; }
.shortcut-card.theme-sky { background: linear-gradient(180deg, #fff1df 0%, #ffe2bd 100%); color: #5a3515; border-color: #f3c48d; }
.shortcut-card.theme-beige { background: linear-gradient(180deg, #f8f0d8 0%, #f6edd0 100%); color: #5a3f12; border-color: #e9d69f; }
.shortcut-card.theme-lilac { background: linear-gradient(180deg, #ece8f7 0%, #e6def3 100%); color: #51328f; border-color: #d6c9ed; }
.shortcut-card.theme-pale { background: linear-gradient(180deg, #f3f8f0 0%, #eef5ea 100%); color: #2f5b29; border-color: #dfe7d8; }
.shortcut-card.theme-green { background: linear-gradient(180deg, #89c940 0%, #74b935 100%); color: #ffffff; border-color: #74b236; }

.shortcut-card.is-active::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: -1px;
    height: 7px;
    border-radius: 999px 999px 0 0;
    background: #4caf7d;
}

.home-showcase-exact {
    position: relative;
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 6px;
    align-items: end;
    padding: 24px 28px 0;
    margin-top: 14px;
    background: linear-gradient(180deg, #eef8ff 0%, #f9fcff 68%, #ffffff 100%);
    overflow: hidden;
}

.home-showcase-exact::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18px;
    background: linear-gradient(180deg, rgba(208,228,245,0.1) 0%, rgba(191,221,243,0.9) 100%);
    z-index: 0;
}

.home-showcase-copy {
    position: relative;
    z-index: 2;
    padding: 10px 0 32px 58px;
}

.home-showcase-copy h2 {
    margin: 0;
}

.title-line {
    display: block;
    line-height: .98;
    letter-spacing: -0.05em;
}

.title-line.title-blue {
    color: #0e58a1;
    font-size: clamp(34px, 4vw, 60px);
    font-weight: 800;
}

.title-line.title-green {
    color: #86c63f;
    font-size: clamp(48px, 5vw, 74px);
    font-weight: 900;
}

.title-divider {
    width: 82px;
    height: 4px;
    background: #4fb0f3;
    border-radius: 999px;
    margin: 18px 0 20px;
    position: relative;
}

.title-divider::after {
    content: "♥";
    position: absolute;
    right: -24px;
    top: -13px;
    color: #81c241;
    font-size: 18px;
}

.home-showcase-copy p {
    max-width: 445px;
    color: #36516a;
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
}

.hero-decor { position: absolute; z-index: 1; }
.hero-heart {
    left: 26px;
    top: 140px;
    color: #58b6ff;
    font-size: 44px;
    font-weight: 300;
}
.hero-cloud {
    width: 96px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    box-shadow: 30px -12px 0 0 rgba(255,255,255,0.9), 56px 0 0 0 rgba(255,255,255,0.9);
    opacity: .92;
}
.hero-cloud-a { left: 395px; top: 180px; }
.hero-cloud-b { left: 330px; top: 295px; transform: scale(.74); opacity: .85; }

.hero-plant {
    left: -2px;
    bottom: 8px;
    width: 126px;
    height: 170px;
}

.hero-plant::before {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -34px;
    width: 210px;
    height: 100px;
    background: linear-gradient(180deg, #cfe6ae 0%, #a9d06a 100%);
    border-radius: 0 90px 0 0;
    transform: rotate(-6deg);
}

.plant-stem {
    position: absolute;
    left: 40px;
    bottom: 12px;
    width: 6px;
    height: 92px;
    background: #57b06a;
    border-radius: 999px;
}

.plant-leaf {
    position: absolute;
    background: linear-gradient(180deg, #66c270 0%, #3ea15f 100%);
    border-radius: 50px 0 50px 0;
}

.leaf-1 { width: 40px; height: 22px; left: 14px; bottom: 54px; transform: rotate(-40deg); }
.leaf-2 { width: 48px; height: 26px; left: 30px; bottom: 86px; transform: rotate(-10deg); }
.leaf-3 { width: 46px; height: 24px; left: 50px; bottom: 44px; transform: rotate(35deg); border-radius: 0 50px 0 50px; }
.leaf-4 { width: 38px; height: 22px; left: 58px; bottom: 108px; transform: rotate(28deg); border-radius: 0 50px 0 50px; }

.home-showcase-media {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 430px;
}

.exact-shell {
    width: 100%;
    max-width: 670px;
    box-shadow: none;
    border-radius: 0;
}

.exact-shell > img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 0;
}

.home-benefits-row-exact {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
    padding: 16px 22px 22px;
    background: #ffffff;
}

.home-benefits-row-exact::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    height: 30px;
    background: radial-gradient(circle at 10% 0, transparent 24px, #ffffff 25px) 0 0/110px 100% repeat-x;
}

.benefit-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 16px;
    color: #0d5390;
    text-align: left;
}

.benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 58px;
    background: #d6e1ec;
}

.benefit-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ffffff;
    border: 2px solid #d7eaf7;
    font-size: 30px;
    box-shadow: 0 6px 14px rgba(58, 96, 126, 0.08);
}

.benefit-item strong {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .home-reference-contacts {
        justify-content: center;
    }

    .home-shortcuts-exact {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-showcase-copy {
        padding-left: 36px;
    }
}

@media (max-width: 860px) {
    .home-shortcuts-exact {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-showcase-exact {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }

    .hero-cloud-a, .hero-cloud-b, .hero-plant { display: none; }
    .hero-heart { left: 18px; top: 84px; }

    .home-showcase-copy {
        padding: 10px 0 10px 24px;
    }

    .home-showcase-media {
        min-height: auto;
    }

    .exact-shell > img {
        height: 320px;
    }

    .home-benefits-row-exact {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 0;
    }

    .benefit-item:nth-child(2)::after { display: none; }
}

@media (max-width: 720px) {
    .home-brand-block {
        grid-template-columns: 92px 1fr 92px;
        gap: 10px;
    }
}

@media (max-width: 560px) {
    .home-reference-page {
        padding-top: 12px;
    }

    .home-reference-topbar,
    .home-shortcuts-exact,
    .home-showcase-exact,
    .home-benefits-row-exact {
        padding-left: 14px;
        padding-right: 14px;
    }

    .home-brand-block {
        grid-template-columns: 92px 1fr 92px;
        gap: 8px;
    }

    .home-brand-logo {
        width: 92px;
        height: 68px;
        border-radius: 18px;
    }

    .home-brand-logo img {
        border-radius: 16px;
    }

    .home-brand-kicker {
        font-size: 17px;
    }

    .home-brand-copy h1 {
        font-size: 34px;
    }

    .home-brand-copy p {
        font-size: 13px;
    }

    .home-shortcuts-exact {
        grid-template-columns: 1fr;
    }

    .shortcut-card {
        min-height: 118px;
    }

    .home-showcase-copy {
        padding: 18px 4px 8px 18px;
    }

    .title-line.title-blue { font-size: 36px; }
    .title-line.title-green { font-size: 48px; }

    .home-showcase-copy p {
        font-size: 15px;
    }

    .exact-shell > img {
        height: 250px;
    }

    .home-benefits-row-exact {
        grid-template-columns: 1fr;
    }

    .benefit-item::after { display: none !important; }
    .benefit-item { justify-content: flex-start; }
}

/* === Section photos de la garderie === */
.home-photos-section {
    padding: 42px 0 64px;
    background:
        radial-gradient(circle at 12% 10%, rgba(132, 199, 65, 0.12), transparent 24%),
        radial-gradient(circle at 90% 18%, rgba(73, 180, 255, 0.14), transparent 28%),
        #ffffff;
}

.photos-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
}

.photos-section-header h2 {
    margin: 8px 0 10px;
    color: #0b67b2;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.photos-section-header p {
    margin: 0;
    color: #526b80;
    font-size: 18px;
}

.garderie-gallery {
    max-width: 1100px;
    margin: 0 auto;
}

.garderie-gallery-stage {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 30px;
    border: 1px solid #dfeaf4;
    background: #eef7ff;
    box-shadow: 0 20px 42px rgba(21, 61, 99, 0.12);
}

.gallery-slides {
    position: relative;
    min-height: 620px;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease, transform .45s ease;
    transform: scale(1.015);
    margin: 0;
}

.gallery-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.gallery-slide img {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
}

.gallery-slide figcaption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 14px 18px;
    border-radius: 18px;
    color: #183a5a;
    background: rgba(255, 255, 255, 0.94);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(24, 58, 90, 0.14);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0b67b2;
    font-size: 28px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(24, 58, 90, 0.18);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
    background: #ffffff;
    color: #79bf36;
    outline: none;
}

.gallery-arrow-prev { left: 18px; }
.gallery-arrow-next { right: 18px; }

.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 6px 0;
}

.gallery-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f5fbff;
    color: #1b486c;
    border: 1px solid #d9ebf8;
}

.gallery-counter strong {
    font-size: 22px;
    color: #0b67b2;
}

.gallery-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #c7d9e6;
    cursor: pointer;
}

.gallery-dot.is-active {
    background: #79bf36;
    box-shadow: 0 0 0 4px rgba(121, 191, 54, 0.17);
}

@media (max-width: 900px) {
    .garderie-gallery-stage,
    .gallery-slides,
    .gallery-slide img {
        min-height: 440px;
        height: 440px;
    }

    .gallery-arrow {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .photos-section-header p {
        font-size: 16px;
    }

    .garderie-gallery-stage,
    .gallery-slides,
    .gallery-slide img {
        min-height: 300px;
        height: 300px;
        border-radius: 22px;
    }

    .gallery-slide figcaption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .gallery-toolbar {
        justify-content: center;
    }

    .gallery-arrow-prev { left: 10px; }
    .gallery-arrow-next { right: 10px; }
}


/* === V11 - Menu haut commun sur toutes les pages publiques === */
.home-shared-shell {
    padding-top: 30px;
}

.public-page-content {
    background: #ffffff;
}

.public-page-content > .page-header {
    margin-top: 14px;
    padding: 48px 28px 44px;
    background:
        radial-gradient(circle at 8% 22%, rgba(129, 194, 65, 0.12), transparent 24%),
        radial-gradient(circle at 92% 18%, rgba(79, 176, 243, 0.14), transparent 28%),
        linear-gradient(180deg, #eef8ff 0%, #ffffff 100%);
    border-top: 1px solid #e1edf7;
    text-align: center;
}

.public-page-content > .page-header .container {
    width: min(920px, 92%);
}

.public-page-content > .page-header h1 {
    color: #0e58a1;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.public-page-content > .page-header p {
    color: #36516a;
    font-size: 18px;
    margin: 0;
}

.public-page-content .content-section {
    padding: 48px 0 56px;
}

.public-page-content .content-card,
.public-page-content .intro-card,
.public-page-content .info-card,
.public-page-content .highlight-box,
.public-page-content .cta-panel {
    border: 1px solid #e4edf5;
}

.public-page-content .content-card h2,
.public-page-content .intro-card h2 {
    color: #0b67b2;
}

.home-shortcuts-exact .shortcut-card.is-active {
    color: #2d2200;
    background: linear-gradient(180deg, #ffe08a 0%, #f5b400 100%);
    border-color: #d99a00;
    box-shadow: 0 14px 28px rgba(143, 101, 0, 0.20);
}

.home-shortcuts-exact .shortcut-card.is-active .shortcut-icon {
    background: #fffaf0;
}

.home-shortcuts-exact .theme-green.is-active {
    color: #ffffff;
    background: linear-gradient(180deg, #89c940 0%, #74b935 100%);
    border-color: #74b236;
}

@media (max-width: 860px) {
    .public-page-content > .page-header {
        margin-top: 12px;
        padding: 38px 18px;
    }
}

@media (max-width: 560px) {
    .home-shared-shell {
        padding-top: 12px;
    }

    .public-page-content .content-section {
        padding: 34px 0 42px;
    }
}


/* === Bouton Mon espace dans le haut de page === */
.space-access-zone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.space-access-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 9px 16px 9px 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0d73c4 0%, #045ca0 100%);
    color: #ffffff;
    border: 1px solid #0b5f9e;
    box-shadow: 0 10px 22px rgba(14, 88, 161, 0.18);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.space-access-button:hover,
.space-access-button:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(14, 88, 161, 0.24);
    outline: none;
}

.space-access-button.is-connected {
    background: linear-gradient(180deg, #8bc846 0%, #70b635 100%);
    border-color: #6dad30;
    box-shadow: 0 10px 22px rgba(112, 182, 53, 0.20);
}

.space-access-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    color: #0b67b2;
    font-size: 20px;
}

.space-access-button span:last-child {
    display: grid;
    gap: 0;
}

.space-access-button strong,
.space-access-button small {
    display: block;
    line-height: 1.15;
    white-space: nowrap;
}

.space-access-button strong {
    font-size: 15px;
    font-weight: 900;
}

.space-access-button small {
    font-size: 12px;
    opacity: .95;
    font-weight: 600;
}

.space-logout-form {
    margin: 0;
}

.space-logout-button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #fff3f0;
    color: #b42318;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(180, 35, 24, 0.12);
}

.space-logout-button:hover,
.space-logout-button:focus-visible {
    background: #ffe3dd;
    outline: none;
}

@media (max-width: 1100px) {
    .space-access-zone {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .space-access-zone {
        align-items: stretch;
    }

    .space-access-button {
        width: 100%;
        justify-content: center;
    }
}

/* === V12 - Pages détaillées Présentation et Programme éducatif === */
.page-header-detailed .eyebrow {
    color: #79bf36;
}

.detailed-page-section .container {
    display: grid;
    gap: 28px;
}

.detailed-card {
    position: relative;
    overflow: hidden;
}

.detailed-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(79, 176, 243, 0.08);
    pointer-events: none;
}

.detailed-card h2,
.detailed-card h3 {
    color: #0b67b2;
}

.detailed-card h2 {
    margin: 4px 0 12px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.detailed-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.detailed-card p {
    color: #475467;
    font-size: 16px;
}

.section-title-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.section-title-row.compact {
    gap: 12px;
}

.section-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: #eef8ff;
    border: 1px solid #d7eaf7;
    font-size: 28px;
    box-shadow: 0 8px 18px rgba(43, 90, 128, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 22px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    border: 1px solid #dfeaf4;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card strong {
    display: block;
    color: #0b67b2;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.stat-card span {
    display: block;
    color: #36516a;
    font-weight: 800;
    line-height: 1.25;
}

.content-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.highlight-card-blue {
    background: linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
}

.highlight-card-green,
.programme-hero-card {
    background: linear-gradient(135deg, #ffffff 0%, #f2fff7 100%);
}

.pill-list,
.values-pills {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-list li,
.values-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff8e8;
    border: 1px solid #ffe08a;
    color: #704d00;
    font-weight: 800;
    font-size: 14px;
}

.facility-grid,
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.facility-card {
    padding: 24px;
    border-radius: 24px;
    background: #fbfdff;
    border: 1px solid #e4edf5;
}

.simple-list {
    margin: 14px 0 0;
    padding-left: 22px;
    color: #475467;
}

.simple-list li {
    margin-bottom: 8px;
}

.capacity-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.capacity-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dfeaf4;
}

.capacity-list strong {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0b67b2;
    color: #ffffff;
    font-size: 20px;
}

.capacity-list span {
    color: #36516a;
    font-weight: 800;
    line-height: 1.25;
}

.detailed-check-list {
    margin: 14px 0 18px;
}

.detailed-check-list li {
    margin-bottom: 10px;
}

.educator-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
}

.educator-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.educator-summary div {
    padding: 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #ffe08a;
    text-align: center;
}

.educator-summary strong {
    display: block;
    color: #79bf36;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 8px;
}

.educator-summary span {
    color: #36516a;
    font-weight: 900;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.foundation-card {
    min-height: 126px;
    padding: 18px;
    border-radius: 22px;
    background: #f5fbff;
    border: 1px solid #dfeaf4;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.foundation-card.wide {
    grid-column: span 4;
    min-height: auto;
    flex-direction: row;
    align-items: center;
}

.foundation-card strong {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #79bf36;
    color: #ffffff;
    font-size: 18px;
}

.foundation-card span {
    color: #36516a;
    font-weight: 900;
    line-height: 1.3;
}

.objectives-card {
    background: linear-gradient(135deg, #ffffff 0%, #fbfdff 100%);
}

.values-pills span {
    background: #eef8ff;
    border-color: #d7eaf7;
    color: #0b4d83;
}

@media (max-width: 960px) {
    .stats-grid,
    .foundation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .foundation-card.wide {
        grid-column: span 2;
    }

    .content-two-columns,
    .facility-grid,
    .objectives-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .section-title-row {
        flex-direction: column;
    }

    .stats-grid,
    .capacity-list,
    .educator-summary,
    .foundation-grid {
        grid-template-columns: 1fr;
    }

    .foundation-card.wide {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-card strong,
    .educator-summary strong {
        font-size: 36px;
    }
}

/* Présentation exacte de NotreGarderie.cshtml */
.exact-garderie-hero {
    position: relative;
    overflow: hidden;
}

.exact-garderie-hero::before,
.exact-garderie-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    opacity: 0.45;
    pointer-events: none;
}

.exact-garderie-hero::before {
    width: 220px;
    height: 220px;
    left: -70px;
    top: -60px;
    background: #ffd66b;
}

.exact-garderie-hero::after {
    width: 280px;
    height: 280px;
    right: -90px;
    bottom: -100px;
    background: #9fe6d0;
}

.garderie-exact-page .container {
    position: relative;
}

.garderie-feature-card {
    margin-top: 28px;
}

.garderie-feature-card .section-title-row {
    margin-bottom: 18px;
}

.capacity-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 18px 0 22px;
    list-style: none;
}

.capacity-badges li {
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff7df, #eefcff);
    border: 1px solid rgba(33, 136, 112, 0.14);
    font-weight: 800;
    color: var(--primary-dark);
    box-shadow: 0 12px 28px rgba(33, 136, 112, 0.08);
}

.exact-text-list li {
    line-height: 1.65;
}

.exact-facility-grid {
    align-items: stretch;
}

.exact-facility-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exact-facility-card h4 {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-size: 19px;
}

.mini-section-card {
    padding: 18px;
    border-radius: 18px;
    background: #fffaf0;
    border: 1px solid rgba(255, 194, 102, 0.35);
}

.highlight-card-green {
    background: linear-gradient(135deg, #f2fff8, #ffffff);
    border-color: rgba(33, 136, 112, 0.2);
}

.exact-educator-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.exact-educator-summary strong {
    font-size: 24px;
}

.exact-educator-summary span {
    min-height: auto;
}

@media (max-width: 760px) {
    .capacity-badges,
    .exact-educator-summary {
        grid-template-columns: 1fr;
    }
}


/* === Ajustement demandé : Accueil bleu au repos, même couleur que les autres au survol/sélection === */
.home-shortcuts-exact .shortcut-card.theme-blue {
    color: #ffffff;
    background: linear-gradient(180deg, #42b6ff 0%, #0b67b2 100%);
    border-color: #0b67b2;
    box-shadow: 0 14px 28px rgba(11, 103, 178, 0.24);
}

.home-shortcuts-exact .shortcut-card.theme-blue .shortcut-icon {
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(11, 103, 178, 0.20);
}

.home-shortcuts-exact .shortcut-card:hover,
.home-shortcuts-exact .shortcut-card:focus-visible,
.home-shortcuts-exact .shortcut-card.is-active {
    color: #2d2200;
    background: linear-gradient(180deg, #ffe08a 0%, #f5b400 100%);
    border-color: #d99a00;
    box-shadow: 0 14px 28px rgba(143, 101, 0, 0.22);
}

.home-shortcuts-exact .shortcut-card:hover .shortcut-icon,
.home-shortcuts-exact .shortcut-card:focus-visible .shortcut-icon,
.home-shortcuts-exact .shortcut-card.is-active .shortcut-icon {
    background: #fffaf0;
    box-shadow: 0 8px 16px rgba(105, 70, 0, 0.18);
}

.home-shortcuts-exact .shortcut-card.is-active::after {
    background: #d99a00;
}

/* === Page de connexion : affichage immédiat et focus Mon espace === */
.login-page-header {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 224, 138, .55), transparent 34%),
        linear-gradient(180deg, #eef8ff 0%, #ffffff 100%);
}

.login-section {
    padding-top: 38px !important;
}

.login-container {
    width: min(560px, 92%);
}

.login-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 250, 235, .96));
    box-shadow: 0 22px 55px rgba(14, 88, 161, .14);
}

.login-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, #0d73c4, #f5b400, #7fc241);
}

.login-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.login-card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffe08a 0%, #f5b400 100%);
    box-shadow: 0 12px 24px rgba(143, 101, 0, .20);
    font-size: 25px;
}

.login-card-header h2 {
    margin: 0 0 4px;
    color: #0e58a1;
    font-size: 30px;
    line-height: 1.1;
}

.login-card-header p {
    margin: 0;
    color: #49657b;
    font-weight: 600;
}

.login-form {
    display: grid;
    gap: 17px;
}

.login-field label {
    color: #23384d;
}

.login-field input {
    min-height: 50px;
    background: #ffffff;
    border: 1px solid #ccd8e2;
    box-shadow: 0 7px 16px rgba(16, 24, 40, .04);
}

.login-field input:focus {
    outline: 4px solid rgba(245, 180, 0, .28);
    border-color: #f5b400;
    box-shadow: 0 0 0 1px rgba(245, 180, 0, .35), 0 10px 22px rgba(143, 101, 0, .10);
}

.login-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    color: #334b63;
    font-weight: 700;
}

.login-checkbox input {
    width: 17px;
    height: 17px;
    accent-color: #f5b400;
}

.login-submit {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
}

.login-note {
    margin: 2px 0 0;
    text-align: center;
}

.login-note a {
    font-weight: 900;
}

.login-validation ul,
.login-validation .validation-summary-errors ul {
    margin-top: 6px;
    margin-bottom: 0;
}

@media (max-width: 560px) {
    .login-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .login-card-header {
        align-items: flex-start;
    }

    .login-card-header h2 {
        font-size: 25px;
    }
}

@media (max-width: 640px) {
    .contact-pill-icon {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    .contact-pill-emoji {
        font-size: 48px;
        transform: none;
    }
}

/* === Page d'inscription : champs visibles et présentation grand public === */
.inscription-page-header {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 224, 138, .58), transparent 34%),
        linear-gradient(180deg, #fff8e8 0%, #ffffff 100%);
}

.inscription-section {
    padding-top: 38px !important;
}

.inscription-container {
    width: min(660px, 92%);
}

.inscription-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 250, 235, .96));
    box-shadow: 0 22px 55px rgba(14, 88, 161, .14);
}

.inscription-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, #0d73c4, #f5b400, #7fc241);
}

.inscription-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.inscription-card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffe08a 0%, #f5b400 100%);
    box-shadow: 0 12px 24px rgba(143, 101, 0, .20);
    font-size: 25px;
}

.inscription-card-header h2 {
    margin: 0 0 4px;
    color: #0e58a1;
    font-size: 30px;
    line-height: 1.1;
}

.inscription-card-header p {
    margin: 0;
    color: #49657b;
    font-weight: 600;
}

.inscription-form {
    display: grid;
    gap: 17px;
}

.inscription-field label {
    color: #23384d;
}

.inscription-field input {
    display: block;
    min-height: 50px;
    background: #ffffff;
    border: 1px solid #ccd8e2;
    box-shadow: 0 7px 16px rgba(16, 24, 40, .04);
}

.inscription-field input:focus {
    outline: 4px solid rgba(245, 180, 0, .28);
    border-color: #f5b400;
    box-shadow: 0 0 0 1px rgba(245, 180, 0, .35), 0 10px 22px rgba(143, 101, 0, .10);
}

.inscription-callout {
    border: 1px solid rgba(245, 180, 0, .35);
    background: #fff8e8;
}

.inscription-callout p {
    margin: 8px 0 0;
    color: #334b63;
    line-height: 1.65;
}

.inscription-submit {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
}

.inscription-note {
    margin: 2px 0 0;
    text-align: center;
}

.inscription-note a {
    font-weight: 900;
}

.inscription-validation ul,
.inscription-validation .validation-summary-errors ul {
    margin-top: 6px;
    margin-bottom: 0;
}

@media (max-width: 560px) {
    .inscription-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .inscription-card-header {
        align-items: flex-start;
    }

    .inscription-card-header h2 {
        font-size: 25px;
    }
}


/* === Tarifs publics et paiement Interac === */
.home-tarifs-section {
    padding: 26px 28px 34px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 224, 138, .34), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(127, 194, 65, .20), transparent 28%),
        #ffffff;
}

.tarifs-public-card,
.public-tarifs-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid #dfeaf4;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 52%, #fff8e8 100%);
    box-shadow: 0 18px 45px rgba(14, 88, 161, .13);
}

.tarifs-public-card {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 28px;
}

.tarifs-public-card::before,
.public-tarifs-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 8px;
    background: linear-gradient(90deg, #0d73c4, #f5b400, #7fc241);
}

.tarifs-public-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.tarifs-public-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffe08a 0%, #f5b400 100%);
    box-shadow: 0 12px 24px rgba(143, 101, 0, .20);
    font-size: 29px;
}

.tarifs-public-header h2,
.public-tarifs-card h3 {
    margin: 3px 0 0;
    color: #0e58a1;
    line-height: 1.12;
}

.tarifs-public-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.tarif-public-item {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid #d7eaf7;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 22px rgba(43, 90, 128, .08);
}

.tarif-public-item span {
    display: block;
    margin-bottom: 8px;
    color: #49657b;
    font-weight: 800;
}

.tarif-public-item strong {
    display: block;
    color: #0b67b2;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.tarif-public-item small {
    color: #49657b;
    font-size: 18px;
    letter-spacing: 0;
}

.tarif-public-item.is-baby-rate {
    background: linear-gradient(180deg, #ffffff 0%, #fff8e8 100%);
    border-color: rgba(245, 180, 0, .38);
}

.tarifs-payment-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #0e58a1;
    color: #ffffff;
}

.tarifs-payment-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.tarifs-payment-label::before {
    content: "✉️";
}

.tarifs-payment-box p {
    margin: 0;
    font-weight: 700;
}

.tarifs-payment-box a {
    color: #fff2bd;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.public-tarifs-card {
    display: grid;
    gap: 14px;
    margin: 28px 0;
    padding: 24px;
}

.public-tarifs-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.public-tarifs-list p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #dfeaf4;
    color: #23384d;
}

.public-payment-note {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: #eef8ff;
    color: #334b63;
    font-weight: 700;
}

.public-payment-note a {
    color: #0b67b2;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 760px) {
    .home-tarifs-section {
        padding: 22px 18px 30px;
    }

    .tarifs-public-grid,
    .public-tarifs-list {
        grid-template-columns: 1fr;
    }

    .tarifs-payment-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .tarifs-public-card,
    .public-tarifs-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .tarifs-public-header {
        align-items: flex-start;
    }

    .tarifs-public-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 25px;
    }
}
