@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg: #061a0f;
    --bg-soft: #0c2a1c;
    --panel: #ffffff;
    --panel-alt: #f4f1eb;
    --text: #154420;
    --text-soft: #4c6358;
    --text-inverse: #f8fbf7;
    --line: rgba(11, 37, 24, 0.08);
    --accent: #f4cb08;
    --accent-2: #921913;
    --mint: #d7f3d8;
    --rose: #f6dada;
    --sand: #f8efbe;
    --shadow: 0 4px 6px rgba(6, 26, 15, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

*,
::after,
::before {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: var(--text);
    line-height: 1.65;
    padding: 0;
    /* ajuste selon la hauteur du header */
}

img {
    max-width: 100%;
    display: block;
}

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

a:hover {
    color: inherit;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

button,
input,
textarea,
select {
    font: inherit;
}

.password-visibility-field {
    position: relative;
    width: 100%;
}

.password-visibility-field input {
    width: 100%;
    padding-right: 86px;
}

.password-visibility-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(21, 68, 32, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #154420;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.password-visibility-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* .container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
} */

.section {
    padding: 6.25rem 0;
}

.section-kicker {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-family: 'Montserrat';
    font-weight: 400;
    /* text-align: center;
    color: #000000; */
    color: #000000;
}

.page-intro .section-kicker {
    color: #fff;
}

.section-kicker-light {
    color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
    /* font-family: 'Sora', sans-serif; */
    /* line-height: 1.08; */
}

p {
    margin: 0;
}

.boutton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.boutton:hover {
    transform: translateY(-2px);
}

.btn-pill {
    min-height: 50px;
    padding: 15px 20px;
    gap: 10px;
    border-radius: 15px;
    font-weight: 700;
}

.btn-accent {
    background: var(--accent);
    color: #153a25;
    /* box-shadow: 0 5px 10px rgba(244, 203, 8, 0.25); */
}

.button-light {
    background: #ffffff;
    color: #1a3b28;
    transition: 0.3s ease;
}

.btn-dangerish {
    background: var(--accent-2);
    color: #fff;
}

.btn-dangerish:hover {
    color: #fff;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    font-weight: 800;
    color: #173d29;
}

.text-link-light {
    color: #fff;
}

.membership-public-layout,
.registry-results-grid,
.registry-stats-grid,
.registry-meta-grid,
.registry-form-grid {
    display: grid;
    gap: 24px;
}

.membership-public-points,
.registry-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registry-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 32px;
}

.registry-stats-grid .content-card strong,
.registry-meta-grid strong {
    display: block;
    font-size: 2rem;
    color: #173d29;
}

.registry-stats-grid .content-card span,
.registry-meta-grid span {
    display: block;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.registry-search-card {
    margin-bottom: 32px;
}

.registry-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registry-form-grid input,
.registry-form-grid select,
.registry-form-grid textarea,
.membership-public-layout input,
.membership-public-layout select,
.membership-public-layout textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

.membership-public-layout textarea,
.registry-form-grid textarea {
    min-height: 140px;
    resize: vertical;
}

.membership-mini-card {
    background: var(--panel-alt);
}

.registry-result-card,
.registry-profile-hero .content-card {
    position: relative;
    overflow: hidden;
}

.registry-result-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(244, 203, 8, 0.22);
    color: #6a5500;
    font-weight: 700;
    margin-bottom: 18px;
}

.registry-meta-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

@media (max-width: 980px) {

    .registry-stats-grid,
    .registry-meta-grid,
    .membership-public-points,
    .registry-results-grid,
    .registry-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {

    .registry-stats-grid,
    .registry-meta-grid,
    .membership-public-points,
    .registry-results-grid,
    .registry-form-grid {
        grid-template-columns: 1fr;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 22px 0;
    background: transparent;

    transform: translateY(0);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

.site-header.scrolled {
    background: linear-gradient(90deg, #081C0D 0%, #000000 100%);
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    height: 60px;
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.site-header.scrolled .logo {
    transform: scale(0.75);
}

.nav-list {
    transition: gap 0.3s ease;
}

.site-header.scrolled .nav-list {
    gap: 20px;
}

.header-shell {
    position: relative;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 100002;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex: 1;
    min-width: 0;
}

.site-nav__top {
    display: none;
}

.nav-item {
    position: relative;
}

.nav-link-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 0;
    font-family: 'Roboto';
    font-weight: 400;
    color: #ffffff;
}

.nav-links.is-active,
.nav-links:hover,
.has-dropdown:hover .dropdown-toggle,
.has-dropdown:focus-within .dropdown-toggle {
    color: var(--accent);
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.has-dropdown.is-open .dropdown-toggle {
    color: var(--accent);
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    padding: 14px;
    display: none;
    border-radius: 20px;
    background: rgba(10, 25, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    z-index: 100001;
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.is-open .dropdown-panel {
    display: grid;
    gap: 5px;
}

.dropdown-link {
    padding: 8px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent);
}

.membership-route-grid,
.membership-pillars-grid,
.membership-category-grid,
.membership-support-grid,
.membership-badge-grid,
.membership-store-grid {
    display: grid;
    gap: 24px;
}

.membership-page-stack {
    gap: 32px;
}

.membership-route-grid,
.membership-pillars-grid,
.membership-category-grid,
.membership-badge-grid,
.membership-store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.membership-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.membership-route-card,
.membership-pill-card,
.membership-category-card,
.membership-badge-card,
.membership-store-card {
    height: 100%;
}

.membership-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.membership-hero-card,
.membership-card-accent,
.membership-form-card,
.membership-guide-card,
.membership-search-card,
.membership-route-card {
    position: relative;
    overflow: hidden;
}

.membership-hero-card::before,
.membership-card-accent::before,
.membership-form-card::before,
.membership-guide-card::before,
.membership-search-card::before,
.membership-route-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(202, 157, 56, 0.14), transparent 28%),
        radial-gradient(circle at bottom left, rgba(20, 55, 38, 0.08), transparent 30%);
}

.membership-hero-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
    border: 1px solid rgba(12, 57, 33, 0.08);
}

.membership-visual-panel {
    position: relative;
    min-height: 100%;
    border-radius: 24px;
    padding: 28px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(202, 157, 56, 0.28), transparent 35%),
        linear-gradient(145deg, #143726 0%, #0b1d13 50%, #5e2217 100%);
    display: grid;
    gap: 18px;
    align-content: space-between;
    overflow: hidden;
}

.membership-visual-panel::before,
.membership-visual-panel::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    filter: blur(0);
}

.membership-visual-panel::before {
    width: 180px;
    height: 180px;
    top: -45px;
    right: -55px;
}

.membership-visual-panel::after {
    width: 120px;
    height: 120px;
    bottom: -25px;
    left: -20px;
}

.membership-visual-panel strong {
    display: block;
    font-size: 2rem;
    font-family: 'Sora', sans-serif;
    line-height: 1.1;
}

.membership-visual-panel p,
.membership-visual-panel li {
    color: rgba(255, 255, 255, 0.82);
}

.membership-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f2d79f;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.membership-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.membership-visual-orbit {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.membership-visual-orbit span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff4d8;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.membership-check-list,
.membership-step-list,
.membership-category-list,
.membership-payment-list {
    display: grid;
    gap: 12px;
    padding-left: 0;
    list-style: none;
    margin: 18px 0 0;
}

.membership-check-list li,
.membership-step-list li,
.membership-category-list li,
.membership-payment-list li {
    padding: 14px 16px;
    border-radius: 18px;
    background: #f6f3ee;
    color: #234131;
    border: 1px solid rgba(12, 57, 33, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.membership-form-grid {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.membership-form-grid input,
.membership-form-grid select,
.membership-form-grid textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(12, 57, 33, 0.12);
    background: #fbfbf9;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.membership-form-grid input:focus,
.membership-form-grid select:focus,
.membership-form-grid textarea:focus {
    outline: none;
    border-color: rgba(29, 90, 52, 0.45);
    box-shadow: 0 0 0 4px rgba(29, 90, 52, 0.08);
    transform: translateY(-1px);
}

.membership-form-grid textarea {
    min-height: 150px;
    resize: vertical;
}

.membership-form-grid label {
    display: grid;
    gap: 10px;
    color: #193626;
    font-weight: 700;
}

.membership-form-meta,
.membership-subcopy {
    color: #5e786b;
}

.membership-route-card__label,
.membership-badge-state {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #edf3ef;
    color: #1b4931;
    font-size: 0.9rem;
    font-weight: 700;
}

.membership-route-card {
    display: grid;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.membership-route-card:hover,
.membership-card-accent:hover,
.membership-pill-card:hover,
.membership-store-card:hover,
.membership-badge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 15 px rgba(6, 26, 15, 0.10);
}

.membership-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 1.15rem;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(145deg, #17462d 0%, #9d6c1b 100%);
    box-shadow: 0 1px 2px rgba(20, 55, 38, 0.22);
}

.membership-stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.membership-stat-card {
    padding: 16px 14px;
    border-radius: 20px;
    background: rgba(12, 57, 33, 0.05);
    border: 1px solid rgba(12, 57, 33, 0.06);
}

.membership-stat-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    color: #153925;
}

.membership-stat-card span {
    display: block;
    margin-top: 5px;
    color: #5e786b;
    font-size: 0.92rem;
}

.membership-card-accent {
    border: 1px solid rgba(12, 57, 33, 0.08);
}

.membership-card-accent::after,
.membership-form-card::after,
.membership-guide-card::after,
.membership-search-card::after,
.membership-route-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #17462d 0%, #ca9d38 100%);
}

.membership-form-card {
    background: linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
    border: 1px solid rgba(12, 57, 33, 0.08);
}

.membership-guide-card,
.membership-search-card {
    border: 1px solid rgba(12, 57, 33, 0.08);
}

.membership-badge-state--renew {
    background: #fff3d8;
    color: #8a5e10;
}

.membership-badge-state--pending {
    background: #fde9e4;
    color: #9a3b25;
}

.membership-app-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.membership-form-note {
    padding: 16px 18px;
    border-radius: 18px;
    background: #f7faf7;
    color: #234131;
    border: 1px solid rgba(12, 57, 33, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.language-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    min-height: 30px;
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-chip img,
.language-option img {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    object-fit: cover;
}

.language-flag {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.language-flag--fr {
    background: linear-gradient(90deg, #1d4ed8 0 33.333%, #ffffff 33.333% 66.666%, #dc2626 66.666% 100%);
}

.language-flag--en {
    background:
        linear-gradient(90deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
        linear-gradient(transparent 42%, #ffffff 42% 58%, transparent 58%),
        linear-gradient(90deg, transparent 46%, #c81e1e 46% 54%, transparent 54%),
        linear-gradient(transparent 46%, #c81e1e 46% 54%, transparent 54%),
        #7a1616;
}

.language-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    display: none;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10, 25, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.has-language-switch:hover .language-panel,
.has-language-switch:focus-within .language-panel {
    display: grid;
}

.language-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.language-option:hover,
.language-option.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
}

.nav-toggle {
    display: none;
    width: 60px;
    height: 50px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    padding: 0;
    position: relative;
    z-index: 100002;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.header-actions .btn-pill {
    min-height: 35px;
    padding: 10px 15px;
    gap: 10px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 3px;
    margin: 0 auto;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:first-child {
    transform: translate(-50%, -6px);
}

.nav-toggle span:last-child {
    transform: translate(-50%, 6px);
}

.nav-toggle.is-active {
    background: rgba(203, 46, 32, 0.95);
    box-shadow: 0 14px 28px rgba(203, 46, 32, 0.28);
}

.nav-toggle.is-active span:first-child {
    transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
    transform: translate(-50%, 0) rotate(-45deg);
}

.nav-list {
    transition: gap 0.3s ease;
}

.site-header.scrolled .nav-list {
    gap: 20px;
}

.site-header.scrolled .nav-links {
    font-size: 0.95rem;
}

/* .site-header.scrolled .btn-pill {
    min-height: 45px;
    padding: 12px 16px;
    border-radius: 13px;
    font-size: 0.95rem;
} */

.site-nav__eyebrow {
    display: none;
}

.hero-block {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 150px 0;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;

}

.hero-block::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 11.84%, #081C0D 74.04%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 320px;
    gap: 42px;
    align-items: center;
}

.hero-copy {
    color: var(--text-inverse);
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 2.2vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    width: 90%;
}

.hero-copy h1 span {
    color: var(--accent);
}

.hero-copy p:last-child {
    max-width: 610px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.section-shell--dynamic {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-shell--dynamic::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-shell--dynamic>.container {
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: grid;
    gap: 16px;
    align-self: end;
}

.hero-stats {
    position: relative;
    z-index: 3;
    padding-top: 50px;
    gap: 100px;
}

.compteur-stat {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.stat-card {
    min-width: 137px;
    padding: 12px 20px;
    background: #154420;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.stat-card-inner {
    position: relative;
    filter: blur(0);
    z-index: 4;
}

.stat-card small {
    display: block;
    color: #EDC500;
}

.stat-card strong {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
}

.story-section {
    background: #081C0D;
}

.story-card {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    position: relative;
    overflow: visible;
    width: 85%;
}

.story-copy {
    max-width: 600px;
}

.story-copy h2,
.section-heading h2,
.database-copy h2,
.services-copy h2,
.promo-copy h2,
.join-copy h2,
.page-intro h1 {
    font-weight: 700;
    font-size: 40px;
}

.page-intro h1 {
    text-align: center;
}

.page-intro h1 span {
    display: block;
    color: #f0bf16;
}

.database-copy h2 span {
    color: var(--accent);
}

.join-copy h2 {
    width: 75%;
}

.story-copy h2 {
    color: #154420;
    margin-bottom: 10px;
    width: 100%;
}

.story-copy h3 {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 1rem;
    color: #000000;
}

.section-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #154420;
}

.story-copy .history-text,
li,
p,
.testimonial-card blockquote {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 1rem;
    color: #000000;
    line-height: normal;
}

.story-media {
    position: relative;
    z-index: 2;

    transform: translateX(80px);
    /* 🔥 dépassement contrôlé */
}

.story-art {
    width: 100%;
    aspect-ratio: 4 / 3;

    border-radius: 20px;
    overflow: hidden;
}

.story-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-media::before {
    content: '';
    position: absolute;
    inset: -20px -20px -20px 20px;
    border-radius: 25px;
    background: #d8f4d7;
    z-index: -1;
    width: 60%;
}

.dark-section {
    background: linear-gradient(180deg, #081C0D 0%, #000000 120%);
    color: var(--text-inverse);
}

.database-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.database-illustration {
    position: relative;
    min-height: 500px;
}

.database-illustration img {
    position: absolute;
    display: block;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease;
    will-change: transform;
}

.database-illustration img:nth-child(1) {
    width: 78%;
    height: 76%;
    left: 0;
    top: 40px;
}

.database-illustration img:nth-child(2) {
    width: 36%;
    height: 44%;
    right: 8%;
    top: 0;
}

.database-illustration img:nth-child(3) {
    width: 34%;
    height: 34%;
    left: 5%;
    bottom: -12px;
}

.database-illustration img:hover {
    transform: scale(1.03);
    z-index: 10;
}

.database-copy p {
    color: #FFFFFF;
}

.bullet-list {
    margin: 24px 0 0;
    padding-left: 20px;
}

.bullet-list li {
    list-style: disc;
    color: #fff;
}

.bullet-list-dark {
    color: var(--text-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 54px;
    align-items: start;
}

.services-copy h2 {
    font-size: clamp(2.4rem, 4vw, 3.35rem);
    line-height: 1.05;
    color: #154420;
}

.services-copy p {
    margin-top: 18px;
    color: #23392d;
    font-size: 1rem;
    line-height: 1.6;
}

.services-copy__action {
    margin-top: 34px;
}

.services-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 110px;
    gap: 14px;
    max-width: 900px;
    margin: auto;
    align-items: stretch;
}

.service-card {
    min-height: 0;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.service-card .service-media {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.service-card--media {
    padding: 0;
    background: #d9d9d9;
}

.service-card--media-small {
    min-height: 100%;
}

.service-card--slot-a {
    grid-row: span 3;
}

.service-card--slot-c {
    grid-row: span 2;
}

.service-card--slot-e {
    grid-row: span 3;
}

.service-card--copy {
    grid-row: span 2;
    padding: 26px 22px 20px;
    align-items: flex-start;
    border: 1px solid rgba(10, 28, 17, 0.05);
}

.service-media--placeholder {
    display: grid;
    place-items: center;
    color: #202020;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.service-media--visual {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card h3 {
    max-width: 100%;
    font-size: clamp(1rem, 1.5vw, 1rem);
    text-transform: uppercase;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
}

.service-card p {
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}

.service-card a {
    align-self: flex-end;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-align: justify;
    color: #000000;
}

.tone-mint {
    background: #d0f7dc;
}

.tone-rose {
    background: #f6cfd2;
}

.tone-gold {
    background: #fff5bf;
    grid-row: span 3;
}

.tone-neutral {
    background: #ececec;
}

.section-heading {
    margin-bottom: 34px;
}


.centered {
    text-align: center;
}

.video-card {
    position: relative;
    display: block;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.38)),
        radial-gradient(circle at 50% 30%, rgba(20, 68, 32, 0.28), rgba(0, 0, 0, 0.88)),
        #040404;
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 90%;
}

.video-card iframe,
.hero-video-player {
    width: 100%;
    min-height: 574px;
    max-height: 40vh;
    border: 0;
    object-fit: CONTAIN;
    display: block;
    background: #000;
}

.play-button {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.88);
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: #fff;
}

.promo-strip {
    padding: 0;
    background: linear-gradient(90deg, #165d28, #0b3f15);
    color: #fff;
}

.promo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: stretch;
    gap: 32px;
}

.promo-copy {
    padding: 62px 0;
}

.promo-highlight {
    margin-top: 14px;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 800;
}

.promo-copy p:last-of-type {
    margin-top: 18px;
    max-width: 520px;
    font-size: 1.15rem;
}

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.promo-art {
    min-height: 360px;
    background:
        radial-gradient(circle at 62% 60%, rgba(255, 196, 70, 0.65), transparent 8%),
        radial-gradient(circle at 80% 36%, rgba(253, 231, 162, 0.62), transparent 5%),
        linear-gradient(135deg, rgba(18, 32, 20, 0.12), rgba(0, 0, 0, 0.32)),
        linear-gradient(145deg, #203125 0%, #171717 54%, #44311a 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* .testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
} */

.testimonial-card {
    padding: 24px 30px;
    border-radius: 24px;
    background: #efefef;
    /* box-shadow: 0 4px 3px rgba(6, 26, 15, 0.08); */
    transform: scale(0.94);
    opacity: 0.72;
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

/* .testimonial-card.is-featured {
    transform: scale(1);
} */

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.avatar-square {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #060606;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.avatar-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card blockquote {
    margin: 0 0 20px;
    font-size: 1rem;
}

.testimonial-card small {
    display: block;
    color: #6b706d;
    text-align: right;
}

.testimonial-company {
    display: inline-block;
    color: #5a665f;
    font-size: 0.92rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.testimonial-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: #d8dad8;
    cursor: pointer;
}

.testimonial-dots button.is-active {
    background: #1d5a34;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-card {
    position: relative;
    min-height: 370px;
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--shadow);
}

.news-card__media {
    position: absolute;
    inset: 0;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
}

.news-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 26px;
}

.news-content h3 {
    font-family: 'Montserrat';
    width: 70%;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;

    color: #FFFFFF;
}

.news-content p {
    width: 80%;
    margin-top: 12px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    /* line-height: 16px; */
    color: #FFFFFF;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    font-size: 0.95rem;
}

.news-meta span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #D9D9D9;
}

.news-meta a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-align: justify;

    color: #FFFFFF;
}

.horizontal-rail {
    scrollbar-width: thin;
    scrollbar-color: rgba(21, 68, 32, 0.35) transparent;
}

.horizontal-rail::-webkit-scrollbar {
    height: 10px;
}

.horizontal-rail::-webkit-scrollbar-track {
    background: transparent;
}

.horizontal-rail::-webkit-scrollbar-thumb {
    background: rgba(21, 68, 32, 0.22);
    border-radius: 999px;
}

/* ============== CLIENTS =============== */

.clients {
    background: #fff;
    margin-bottom: 2rem;
}

.partners-section.section {
    padding-bottom: 0;
}

.logo-client {
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s ease;
}

/* HOVER */
.logo-client:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ALIGNEMENT */
.clientSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ESPACEMENT */
.clientSwiper {
    padding: 10px 0;
}

.clientSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.clients {
    position: relative;
    overflow: hidden;
}

.clients::before,
.clients::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.clients::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.clients::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.join-us-section {
    position: relative;
    padding: 92px 0;
    background-color: #123824;
    background: url('../images/footer-img.jpg') center / cover no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.join-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 45, 19, 0.88), rgba(8, 45, 19, 0.82));
    height: 100%;
}

.join-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.join-copy p:last-of-type {
    margin-top: 18px;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.contact-points strong,
.contact-points span {
    display: block;
}

.contact-points strong {
    font-size: 1.55rem;
    font-family: 'Sora', sans-serif;
}

.contact-points span {
    color: rgba(255, 255, 255, 0.78);
}

.join-form,
.stack-form {
    display: grid;
    gap: 16px;
}

.join-form input,
.join-form textarea,
.stack-form input,
.stack-form textarea,
.stack-form select,
.newsletter-form input {
    /* width: 100%; */
    border: 1px solid rgba(11, 37, 24, 0.08);
    border-radius: 16px;
    min-height: 56px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.96);
}

.join-form textarea,
.stack-form textarea {
    min-height: 160px;
    resize: vertical;
}

.upload-field {
    display: grid;
    gap: 8px;
}

.upload-field label,
.upload-field small {
    color: #395748;
}

.upload-field label {
    font-weight: 700;
}

.upload-field small {
    font-size: 0.92rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: center;
    margin: 10px 0;
}

.site-footer {
    background: #0a1f13;
    color: #fff;
    padding: 30px 0 36px;
    position: relative;
    padding: 92px 0;
    background: linear-gradient(0.66deg, rgba(8, 28, 13, 0.8) 0.57%, rgba(21, 68, 32, 0.5) 99.43%), url('../images/footer-img.jpg') bottom / cover no-repeat;
}

/* .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    background: linear-gradient(0.66deg, rgba(8, 28, 13, 0.8) 0.57%, rgba(21, 68, 32, 0.5) 99.43%);
} */

/* .footer-inner,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 2;
} */

.footer-inner {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
}

.footer-text,
.footer-meta {
    color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
    padding-top: 18px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a:hover {
    color: var(--accent);
}

.page-intro {
    position: relative;
    overflow: hidden;
    padding: 176px 0 72px;
    background:
        linear-gradient(180deg, rgba(6, 19, 12, 0.72), rgba(9, 31, 18, 0.84)),
        var(--page-intro-image, url('../images/page-intro.jpg')) center/cover no-repeat;
    color: #fff;
}

.page-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 203, 5, 0.18), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.12), transparent 22%);
    pointer-events: none;
}

.page-intro .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-intro-copy {
    max-width: 720px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
}

.content-grid {
    display: grid;
    gap: 24px;
}

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

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

.content-card {
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.content-card h2 {
    font-size: 1.8rem;
}

.content-card p+p,
.content-card p+ul,
.content-card h2+p {
    margin-top: 14px;
}

.content-card-visual {
    min-height: 360px;
}

.visual-panel {
    min-height: 100%;
    border-radius: 24px;
}

.visual-panel-story {
    background: linear-gradient(145deg, #adb79a 0%, #5f2112 42%, #123824 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.gallery-tile {
    min-height: 240px;
    padding: 24px;
    border-radius: 28px;
    display: flex;
    align-items: end;
    font-weight: 800;
    color: #fff;
    box-shadow: var(--shadow);
}

.gallery-tile.variant-1 {
    background: linear-gradient(145deg, #7f1413, #153f2c);
}

.gallery-tile.variant-2 {
    background: linear-gradient(145deg, #24593d, #0b2414);
}

.gallery-tile.variant-3 {
    background: linear-gradient(145deg, #ca9d38, #5d1a12);
}

.gallery-tile.variant-4 {
    background: linear-gradient(145deg, #3a3a3a, #0c4225);
}

.news-detail-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
    align-items: start;
}

.news-detail-hero {
    max-height: 460px;
    margin-bottom: 24px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.news-detail-hero__image {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

.news-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 25px;
}

.news-detail-copy {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.news-suggestion-list {
    display: grid;
    gap: 14px;
}

.news-suggestion-card {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f7f6f2;
    border: 1px solid rgba(11, 37, 24, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-suggestion-card__media {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 6px;
}

.news-suggestion-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-suggestion-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.news-suggestion-card__badges {
    position: absolute;
    inset: 12px 12px auto 12px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-suggestion-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #123824;
    font-family: 'Montserrat';
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-suggestion-card__badge--accent {
    background: rgba(18, 56, 36, 0.86);
    color: #fff;
}

.news-suggestion-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(6, 26, 15, 0.08);
}

.auth-shell {
    background:
        radial-gradient(circle at top left, rgba(255, 203, 5, 0.18), transparent 28%),
        linear-gradient(180deg, #f8f4eb, #f3efe5);
}

.auth-card {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    max-width: 1180px;
    padding: 0;
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.auth-card__panel {
    position: relative;
    padding: 42px;
}

.auth-card__panel--brand {
    background:
        linear-gradient(180deg, rgba(6, 42, 21, 0.92), rgba(7, 54, 24, 0.94)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}


.auth-card__panel--form {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 5px 18px;
    border-radius: 999px;
    background: rgba(255, 203, 5, 0.16);
    color: #ffcf38;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.auth-card__title {
    margin: 26px 0 18px;
    font-size: clamp(2rem, 5vw, 2rem);
    /* line-height: 01; */
    letter-spacing: 0;
}

.auth-card__title strong {
    color: #ffcb05;
}

.auth-card__copy {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
}

.auth-card__points {
    display: grid;
    gap: 10px;
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
}

.auth-card__points li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.auth-card__points li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffcb05;
}

.auth-panel-kicker {
    color: #b13d2f;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.auth-panel-title {
    margin: 0;
    color: #0d2d1d;
    font-size: clamp(2rem, 3vw, 2rem);
}

.auth-panel-copy {
    color: #6b726f;
    font-size: 0.8rem;
}

.auth-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
}

.auth-helper-card {
    margin-top: 8px;
    padding: 10px 15px;
    border-radius: 12px;
    background: #f4f4f4;
    color: #636766;
    font-size: 0.6rem;
    line-height: normal;
}

.auth-grid-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.form-grid {
    margin: 1rem 0;
}

.auth-grid-form .form-full {
    grid-column: 1 / -1;
}

.justificatifs_metier_fichiers {
    margin: 1.5rem 0;
    display: grid;
    gap: 10px;
}

.auth-upload-card-top {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.auth-upload-card-top .auth-upload-card__title {
    width: 60%;
}

.auth-grid-form input,
.auth-grid-form select,
.auth-grid-form textarea,
.auth-grid-form input[type="file"] {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d8ddd9;
    border-radius: 18px;
    background: #fff;
    color: #123824;
    font-size: 0.98rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* .auth-grid-form input {
    width: auto;
} */

.auth-grid-form input:focus,
.auth-grid-form select:focus,
.auth-grid-form textarea:focus,
.auth-grid-form input[type="file"]:focus {
    outline: none;
    border-color: #ffcb05;
    box-shadow: 0 0 0 4px rgba(255, 203, 5, 0.16);
}

.auth-grid-form label {
    display: grid;
    gap: 6px;
    color: #123824;
    font-weight: 600;
}

.auth-radio-grid--sex {
    display: inline-flex;
    gap: 50px;
}

.auth-radio-grid--sex label {
    display: flex;
    align-items: center;
    /* gap: 6px; */
}

.auth-radio-grid--sex input {
    width: auto;
}

.auth-upload-section h3 {
    margin-bottom: 6px;
    color: #0d2d1d;
}

.auth-upload-section p {
    color: #68706c;
}

.auth-upload-card {
    display: grid;
    gap: 0;
    padding: 12px 18px;
    border: 1px solid #d8ddd9;
    border-radius: 22px;
    background: #fbfaf7;
}

.auth-upload-card__title {
    color: #0d2d1d;
    font-weight: 700;
}

.auth-upload-card__meta {
    color: #68706c;
    font-size: 0.7rem;
}

.auth-upload-card input[type="file"] {
    /* padding: 0; */
    border: 0;
    font-size: 0.8rem;
    border-radius: 10px;
    /* height: 100px;
    width: 100%; */
    padding: 0;
}

.auth-upload-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(13, 45, 29, 0.08);
    color: #0d2d1d;
    font-size: 0.76rem;
    font-weight: 700;
}

.auth-upload-badge[data-state="selected"] {
    background: rgba(255, 206, 0, 0.18);
    color: #6f5600;
}

.auth-upload-preview {
    display: grid;
    gap: 10px;
}

.auth-upload-preview__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 45, 29, 0.08);
}

.auth-upload-preview__thumb {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(13, 45, 29, 0.14);
}

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

.auth-radio-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid #d7d9d7;
    border-radius: 18px;
    background: #fff;
}

.auth-steps {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
}

.auth-step {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.auth-step strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    /* font-size: 0.8rem; */
}

.auth-step span,
.auth-step {
    font-size: 0.8rem;
}

.status-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #ecf9eb;
    color: #164126;
}

.check-line {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.check-line input {
    width: auto;
}

.check-line span {
    line-height: normal;
    font-size: 0.8rem;
    font-weight: 400;
    width: 90%;
    color: #123824;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.member-space-stack {
    display: grid;
    gap: 24px;
}

.member-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member-kpi-value {
    margin-top: 12px;
    font-size: 2rem;
    font-family: 'Sora', sans-serif;
    color: #0f3b24;
}

.member-kpi-meta,
.member-table-meta {
    color: #5e786b;
    font-size: 0.95rem;
}

.member-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.member-empty-state {
    padding: 24px;
    border-radius: 22px;
    background: #f7faf7;
    border: 1px solid rgba(12, 57, 33, 0.08);
}

.member-data-table-wrap {
    overflow-x: auto;
}

.member-data-table {
    width: 100%;
    border-collapse: collapse;
}

.member-data-table th,
.member-data-table td {
    padding: 16px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(12, 57, 33, 0.08);
    vertical-align: top;
}

.member-data-table th {
    color: #395748;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    background: #eef3ef;
    color: #284636;
}

.member-status-badge--valide,
.member-status-badge--public {
    background: #e8f7ea;
    color: #1d6939;
}

.member-status-badge--en_attente,
.member-status-badge--membres {
    background: #fff6de;
    color: #92620f;
}

.member-status-badge--refuse,
.member-status-badge--admin {
    background: #fde9e4;
    color: #9f3c24;
}

.member-documents-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.member-document-card {
    display: grid;
    gap: 16px;
}

.member-document-card__top,
.member-document-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.member-document-meta {
    color: #5e786b;
    font-size: 0.95rem;
}

.testimonials-swiper,
.partners-swiper {
    overflow: hidden;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
}

.testimonials-swiper .testimonial-card {
    height: 100%;
}

.testimonials-swiper .swiper-slide-active .testimonial-card {
    transform: translateY(-8px) scale(1);
    opacity: 1;
    background: linear-gradient(180deg, #f1f1ef 0%, #dfdfdc 100%);
    box-shadow: 0 22px 34px rgba(6, 26, 15, 0.12);
}

.testimonials-swiper .swiper-slide-prev .testimonial-card,
.testimonials-swiper .swiper-slide-next .testimonial-card {
    opacity: 0.9;
    transform: scale(0.97);
}

.testimonials-pagination {
    position: static;
    margin-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100% !important;
    left: auto !important;
    transform: none !important;
    overflow: visible;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    opacity: 1;
    background: #d8dad8;
    margin: 0 !important;
}

.testimonials-pagination.swiper-pagination-bullets-dynamic {
    left: auto !important;
    transform: none !important;
    white-space: nowrap;
}

.testimonials-pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #1d5a34;
}

.testimonials-swiper .swiper-slide {
    padding-top: 28px;
    padding-bottom: 18px;
}

.testimonial-card {
    position: relative;
    min-height: 312px;
    padding: 28px 34px 24px;
    border-radius: 34px;
    background: linear-gradient(180deg, #eeeeeb 0%, #dededb 100%);
    box-shadow: 0 18px 34px rgba(13, 27, 19, 0.1);
    overflow: visible;
}

.testimonial-top {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 20px;
}

.testimonial-card .avatar-square {
    width: 112px;
    height: 112px;
    flex: 0 0 112px;
    margin-top: -22px;
    border-radius: 20px;
    overflow: hidden;
    /* background: #0d0d0d; */
    box-shadow: 0 1px 2px rgba(8, 28, 13, 0.18);
}

.testimonial-card .avatar-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.52rem;
    font-weight: 700;
    color: #1a5a32;
}

.testimonial-meta p {
    margin: 0;
    color: #232323;
    font-size: 1rem;
    line-height: 1;
}

.testimonial-company {
    display: inline-block;
    margin-top: 0;
    color: #5b655d;
    font-size: 0.92rem;
    line-height: 1;
}

.testimonial-card blockquote {
    position: relative;
    margin: 0;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-card blockquote p {
    margin: 0;
    max-width: 84%;
    font-size: 1.05rem;
    line-height: 1.58;
    color: #191919;
}

.testimonial-quote {
    position: absolute;
    font-family: "Sora", sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    color: #111111;
    line-height: 1;
}

.testimonial-quote--open {
    left: 8px;
    bottom: -42%;
}

.testimonial-quote--close {
    right: 18px;
    top: -10px;
}

.testimonial-card small {
    display: block;
    margin-top: 18px;
    text-align: right;
    color: #8b8b88;
    font-size: 0.92rem;
}

@media (max-width: 980px) {

    .member-kpi-grid,
    .member-documents-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {

    .member-kpi-grid,
    .member-documents-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .member-section-heading {
        flex-direction: column;
    }

    .member-data-table th,
    .member-data-table td {
        min-width: 140px;
    }
}

.partner-card.swiper-slide,
.testimonial-card.swiper-slide {
    height: auto;
}

.admin-shell {
    display: grid;
    gap: 24px;
}

.admin-section {
    display: grid;
    gap: 18px;
}

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

.admin-grid-form input,
.admin-grid-form textarea,
.admin-grid-form select {
    width: 100%;
    border: 1px solid rgba(11, 37, 24, 0.1);
    border-radius: 16px;
    min-height: 54px;
    padding: 14px 16px;
    background: #fff;
}

.admin-grid-form textarea {
    min-height: 120px;
    resize: vertical;
}

.admin-card-group,
.admin-create-box {
    padding: 18px;
    border-radius: 18px;
    background: #f7f6f2;
}

.admin-stack {
    display: grid;
    gap: 20px;
}

@media (max-width: 680px) {
    .video-card iframe {
        min-height: 280px;
    }
}

.site-footer {
    position: relative;
    margin-top: -1px;
    padding: 0;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(8, 45, 19, 0.88), rgba(8, 45, 19, 0.82)),
        url('../images/footer-img.jpg') bottom center/cover no-repeat;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: stretch;
    padding: 58px 0 34px;
}

.site-footer__brand-panel,
.site-footer__newsletter-panel {
    min-width: 0;
}

.site-footer__brand-panel {
    display: grid;
    gap: 18px;
    align-content: end;
    padding-right: 36px;
}

.site-footer__newsletter-panel {
    display: grid;
    gap: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 44px;
    align-content: end;
}

.site-footer__title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;

    color: #FFFFFF;
}

.site-footer__title::first-line {
    color: #ffffff;
}

.site-footer__tagline {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.7;
}

.site-footer__newsletter-title {
    margin: 0;
    max-width: 540px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;

    color: #FFFFFF;
}

.site-footer__newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 14px;
    margin: 0;
}

.site-footer__newsletter-form input {
    min-height: 60px;
    border-radius: 18px;
    border: 0;
    background: rgba(255, 255, 255, 0.96);
    padding: 16px 20px;
}

.site-footer__newsletter-form .footer-btn {
    min-height: 60px;
    justify-content: center;
    border-radius: 18px;
    box-shadow: none;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-footer__socials a:hover {
    transform: translateY(-2px);
    background: #ffcb05;
    color: #154420;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.footer-links .footer-link-label {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    cursor: default;
}

.footer-links a.is-active {
    color: #ffcb05;
    font-weight: 700;
}

.footer-links .footer-link-label.is-active {
    color: #ffcb05;
    font-weight: 700;
}

.footer-links a:hover {
    color: #ffcb05;
}

.site-footer__bottom-bar {
    background: #f3c300;
}

.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
}

.footer-meta,
.site-footer__credit {
    margin: 0;
    color: #154420;
    font-size: 0.95rem;
    line-height: 1.5;
}

.site-footer__credit {
    text-align: right;
}

/* .activity-detail {
    padding-top: 72px;
} */

.activity-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.94fr);
    gap: 50px;
    align-items: center;
}

.activity-detail__copy {
    display: grid;
    gap: 34px;
}

.activity-process__arrow .fa-solid,
.activity-process__arrow .fas {
    font-weight: 900;
    font-size: 3rem;
}

.activity-detail__block {
    display: grid;
    gap: 16px;
}

.activity-detail__block h2 {
    margin: 0;
    color: #154420;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 40px;
    line-height: 1.02;
    max-width: 720px;
}

.activity-detail__block ul,
.activity-detail__block ol,
.activity-detail__panel ol,
.activity-detail__panel ul {
    margin: 0;
    padding-left: 22px;
    display: grid;
    gap: 5px;
}

.activity-detail__block li strong,
.activity-detail__panel li strong,
.activity-process__step h3 {
    font-weight: 800;
}

.activity-detail__panel {
    display: grid;
    gap: 26px;
    padding: 54px 46px;
    border-radius: 34px;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(21, 68, 32, 0.98) 0%, rgba(21, 68, 32, 0.94) 72%, rgba(119, 49, 20, 0.92) 100%),
        #154420;
}

.activity-detail__panel h2 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;

    color: #FFFFFF;
}

.activity-detail__panel h2 span {
    color: #ffcb05;
}

.activity-detail__panel li {
    color: rgba(255, 255, 255, 0.92);
}

.activity-detail__cta {
    justify-self: end;
    min-width: 230px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    backdrop-filter: blur(8px);
    font-weight: 800;
}

.activity-detail__cta:hover {
    background: #ffffff;
    color: #154420;
}

.activity-process {
    padding-top: 0;
}

.activity-process__shell {
    padding: 24px;
    border-radius: 34px;
    background: #d9f6d4;
}

.activity-process__header {
    border-radius: 28px;
    padding: 28px 24px 24px;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(21, 68, 32, 0.98) 0%, rgba(21, 68, 32, 0.94) 72%, rgba(119, 49, 20, 0.92) 100%),
        #154420;
}

.activity-process__header h2 {
    margin: 0;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 40px;
    color: #FFFFFF;
}

.activity-process__subtitle {
    margin: 10px 0 0;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #FFFFFF;
}

.activity-process__steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    padding: 20px 22px 12px;
}

.activity-process__step {
    display: grid;
    gap: 5px;
    justify-items: start;
}

.activity-process__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #154420;
    font-size: 1.8rem;
}

.activity-process__step h3 {
    margin: 0;
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 1.25rem;

    color: #000000;
}

.activity-process__step p {
    margin: 0;
}

.activity-process__arrow {
    display: grid;
    place-items: center;
    font-size: 3rem;
    color: #154420;
}