/* ============================================
   NOURIMOI - Site Vitrine
   Charte graphique "Style Kopa Illustré"
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

/* --- Variables CSS --- */
:root {
    /* Couleurs principales */
    --turquoise: #3ECFB2;
    --turquoise-dark: #2BB89D;
    --turquoise-light: #B8EDE3;
    --turquoise-pale: #E5F7F4;
    --marron: #3D3229;
    --marron-light: #5C4A3D;
    --beige: #FAF3E3;
    --beige-dark: #F0E5CE;
    --cream: #FFFCF5;
    --jaune: #FFE566;
    --jaune-pale: #FFF8DC;
    --rose: #FFCEC2;
    --vert: #A8D5A2;
    --orange: #FFB347;
    --white: #FFFFFF;
    --black: #2C2416;

    /* Typographie */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Bordures organiques */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-full: 50px;

    /* Ombres */
    --shadow-soft: 0 4px 0 rgba(0,0,0,0.08);
    --shadow-card: 0 6px 0 rgba(0,0,0,0.06);
    --shadow-sticker: 3px 4px 0 rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 24px rgba(62,207,178,0.18);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--marron);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--marron);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    font-size: 1.05rem;
    color: var(--marron-light);
    margin-bottom: var(--space-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Section --- */
.section {
    padding: var(--space-2xl) 0;
}

.section-beige {
    background-color: var(--beige);
}

.section-turquoise-pale {
    background-color: var(--turquoise-pale);
}

.section-cream {
    background-color: var(--cream);
}

.section-white {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    margin-bottom: var(--space-xs);
}

.section-header .section-badge {
    display: inline-block;
    background: var(--jaune);
    color: var(--marron);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sticker);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Tagline hero (remplace les stats) */
.hero-tagline {
    margin-top: var(--space-md);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--turquoise-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Boutons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--turquoise);
    color: var(--white);
    box-shadow: var(--shadow-sticker);
}

.btn-primary:hover {
    background: var(--turquoise-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--marron);
    border: 2.5px solid var(--marron);
    box-shadow: var(--shadow-sticker);
}

.btn-secondary:hover {
    background: var(--marron);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-jaune {
    background: var(--jaune);
    color: var(--marron);
    box-shadow: var(--shadow-sticker);
}

.btn-jaune:hover {
    background: #ffd633;
    transform: translateY(-2px);
}

.btn-rose {
    background: var(--rose);
    color: var(--marron);
    box-shadow: var(--shadow-sticker);
}

.btn-rose:hover {
    background: #ffb8a8;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

.btn .btn-auto-icon,
.btn .btn-loading-icon {
    font-size: 0.85em;
}

.btn.is-loading {
    opacity: 0.85;
    pointer-events: none;
}

.btn .btn-loading-icon {
    animation: btn-spin 0.9s linear infinite;
}

@keyframes btn-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 252, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2.5px solid var(--beige-dark);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    height: 90px;
    width: min(100%, 1480px);
    margin: 0 auto;
    padding: 0 clamp(0.45rem, 1.15vw, 1rem);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.navbar-logo .logo-image {
    height: 84px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

.navbar-logo .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--turquoise);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sticker);
    font-size: 1.5rem;
}

.navbar-logo .logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--marron);
}

.navbar-logo .logo-text span {
    color: var(--turquoise);
}

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.2rem, 0.55vw, 0.55rem);
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.navbar-menu a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(0.8rem, 0.63vw, 0.9rem);
    color: var(--marron-light);
    padding: 0.5rem clamp(0.5rem, 0.8vw, 0.9rem);
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
}

.navbar-menu a:hover {
    color: var(--turquoise-dark);
    background: var(--turquoise-pale);
    font-weight: 600;
}

.navbar-menu a.active {
    color: var(--turquoise-dark);
    background: var(--turquoise-pale);
    font-weight: 700;
    position: relative;
    box-shadow: inset 0 -2.5px 0 var(--turquoise-dark), 0 8px 18px rgba(62, 207, 178, 0.12);
}

.navbar-cta {
    margin-left: clamp(0.15rem, 0.5vw, 0.5rem);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.navbar-cta .btn {
    padding: 0.55rem clamp(0.72rem, 0.95vw, 1rem);
    font-size: clamp(0.76rem, 0.55vw, 0.84rem);
    white-space: nowrap;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--marron);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 78px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: var(--turquoise-pale);
    border-radius: 50%;
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--jaune-pale);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--turquoise-pale);
    color: var(--turquoise-dark);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    border: 2px solid var(--turquoise-light);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-content h1 {
    margin-bottom: var(--space-md);
}

.hero-content h1 .highlight {
    color: var(--turquoise);
    position: relative;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--jaune);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.6;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: var(--space-lg);
    color: var(--marron-light);
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-stats {
    display: flex;
    gap: var(--space-lg);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--turquoise);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: var(--marron-light);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Hero illustration */
.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    position: relative;
}


.hero-visual .visual-main {
    width: 100%;
    aspect-ratio: 1;
    background: transparent;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: none;
    border: none;
    overflow: visible;
}

.home-hero-logo {
    width: 120%;
    max-width: 120%;
    height: 120%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}



.hero-visual .visual-main .visual-emoji {
    font-size: 8rem;
    filter: drop-shadow(2px 3px 0 rgba(0,0,0,0.08));
}


/* Floating elements autour du hero */
.floating-element {
    position: absolute;
    border-radius: var(--radius-md);
    padding: 0.8rem 1.2rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sticker);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 4;
}

.floating-element:nth-child(2) { animation-delay: 0.5s; }
.floating-element:nth-child(3) { animation-delay: 1s; }
.floating-element:nth-child(4) { animation-delay: 1.5s; }

.float-1 {
    top: 10%;
    right: -5%;
    background: var(--jaune);
    color: var(--marron);
}

.float-2 {
    bottom: 25%;
    right: -8%;
    background: var(--rose);
    color: var(--marron);
}

.float-3 {
    bottom: 10%;
    left: 5%;
    background: var(--vert);
    color: var(--marron);
}

.float-4 {
    top: 25%;
    left: -5%;
    background: var(--white);
    color: var(--turquoise);
    border: 2px solid var(--turquoise-light);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--beige-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card:nth-child(1)::before { background: var(--vert); }
.service-card:nth-child(2)::before { background: var(--vert); }
.service-card:nth-child(3)::before { background: var(--vert); }
.service-card:nth-child(4)::before { background: var(--vert); }
.service-card:nth-child(5)::before { background: var(--vert); }
.service-card:nth-child(6)::before { background: var(--vert); }

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(93, 168, 84, 0.18);
    border-color: #E8F5E6;
}

.service-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sticker);
}

.service-card:nth-child(1) .card-icon { background: #E8F5E6; color: #5da854; }
.service-card:nth-child(2) .card-icon { background: #E8F5E6; color: #5da854; }
.service-card:nth-child(3) .card-icon { background: #E8F5E6; color: #5da854; }
.service-card:nth-child(4) .card-icon { background: #E8F5E6; color: #5da854; }
.service-card:nth-child(5) .card-icon { background: #E8F5E6; color: #5da854; }
.service-card:nth-child(6) .card-icon { background: #E8F5E6; color: #5da854; }

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--marron-light);
    margin-bottom: var(--space-sm);
}

.service-card .card-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: #5da854;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.service-card .card-link:hover {
    gap: 0.7rem;
}

/* --- A propos: améliorer la lisibilité des cartes valeurs --- */
.values-section .service-card {
    background: #fffef9;
    border: 2px solid #d8ead3;
    box-shadow: 0 8px 20px rgba(44, 36, 22, 0.06);
}

.values-section .service-card .card-icon {
    background: #eaf6e6;
    color: #4f9a45;
}

.values-section .service-card p {
    color: #4a3d32;
}

/* --- Impact / Chiffres --- */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.impact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 2.5px solid var(--beige-dark);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.impact-card .impact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto var(--space-sm);
    box-shadow: var(--shadow-sticker);
}

.impact-card:nth-child(1) .impact-icon { background: var(--turquoise-pale); }
.impact-card:nth-child(2) .impact-icon { background: var(--jaune-pale); }
.impact-card:nth-child(3) .impact-icon { background: #FFE8E2; }
.impact-card:nth-child(4) .impact-icon { background: #E8F5E6; }

.impact-card .impact-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--turquoise);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.impact-card .impact-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--marron-light);
}

/* --- A propos / Mission --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .image-main {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--turquoise-light), var(--turquoise-pale));
    border-radius: var(--radius-xl);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.about-image .image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-image .image-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--jaune);
    color: var(--marron);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sticker);
    font-size: 0.9rem;
}

.about-content h2 {
    margin-bottom: var(--space-sm);
}

.about-content .about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--turquoise-dark);
    margin-bottom: var(--space-md);
}

.about-content p {
    margin-bottom: var(--space-sm);
    text-align: justify;
    text-justify: inter-word;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.value-item .value-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--turquoise-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
}

.value-item .value-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--marron);
}

/* --- Equipe / Fondateurs --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 2.5px solid var(--beige-dark);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.team-card .team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto var(--space-sm);
    box-shadow: var(--shadow-sticker);
    border: 3px solid var(--white);
    overflow: hidden;
}

.team-card .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-card:nth-child(1) .team-avatar { background: var(--turquoise-pale); }
.team-card:nth-child(2) .team-avatar { background: var(--jaune-pale); }
.team-card:nth-child(3) .team-avatar { background: #FFE8E2; }
.team-card:nth-child(4) .team-avatar { background: #E8F5E6; }

.team-card h4 {
    margin-bottom: 0.2rem;
}

.team-card .team-role {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--turquoise);
    margin-bottom: 0.5rem;
}

.team-card p {
    font-size: 0.9rem;
}

.team-card .team-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-sm);
}

.team-card .team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marron-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.team-card .team-socials a:hover {
    background: var(--turquoise);
    color: var(--white);
}

/* --- Partenaires --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.partners-grid--three {
    grid-template-columns: repeat(3, minmax(240px, 320px));
    justify-content: center;
}

.partners-main-section {
    padding-bottom: var(--space-lg);
}

.partners-join-section {
    padding-top: var(--space-xl);
}

.partners-main-section .partner-card {
    padding: 2.1rem 1.8rem;
    min-height: 258px;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 2.5px solid var(--beige-dark);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--turquoise-light);
}

.partner-card .partner-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-soft);
}

.partner-card .partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.partner-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.partner-card p {
    font-size: 0.85rem;
}

/* --- Témoignages --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2.5px solid var(--beige-dark);
    position: relative;
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--turquoise-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.testimonial-card:nth-child(1) .author-avatar { background: var(--turquoise-pale); }
.testimonial-card:nth-child(2) .author-avatar { background: var(--jaune-pale); }
.testimonial-card:nth-child(3) .author-avatar { background: #FFE8E2; }

.testimonial-card .author-info h5 {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-card .author-info span {
    font-size: 0.8rem;
    color: var(--marron-light);
}

/* --- Comment ça marche --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    counter-reset: step;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--turquoise);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    box-shadow: var(--shadow-sticker);
}

.step-card .step-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.step-card h4 {
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
}

/* Ligne de connexion entre les étapes */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15%;
    width: 30%;
    height: 3px;
    background: var(--turquoise-light);
    border-radius: 3px;
}

/* --- CTA Section --- */
.cta-section {
    background: var(--turquoise);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 550px;
    margin: 0 auto var(--space-lg);
    font-size: 1.1rem;
}

.cta-section .btn-jaune {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact-item .contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-md);
    background: var(--turquoise-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--turquoise);
    box-shadow: var(--shadow-soft);
}

.contact-item h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.contact-item p {
    font-size: 0.9rem;
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2.5px solid var(--beige-dark);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--marron);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 2.5px solid var(--beige-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--marron);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 4px var(--turquoise-pale);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

/* --- Footer --- */
.footer {
    background: var(--marron);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-brand .footer-logo span {
    color: var(--turquoise);
}

.footer-brand .footer-logo-image {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin-bottom: var(--space-sm);
    background: var(--white);
    border-radius: 16px;
    padding: 10px 18px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--turquoise);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--turquoise);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-bottom a:hover {
    color: var(--turquoise);
}

/* --- Animations (scroll reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* --- Page Header (pour pages internes) --- */
.page-header {
    padding-top: calc(78px + var(--space-xl));
    padding-bottom: var(--space-xl);
    background: linear-gradient(180deg, #fffdf8 0%, #fbf4e6 60%, #f6edd8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--beige-dark);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: var(--turquoise-pale);
    border-radius: 50%;
    opacity: 0.4;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--marron-light);
}

.page-header .breadcrumb a {
    color: var(--turquoise);
    font-weight: 600;
}

.page-header h1 {
    margin-bottom: var(--space-xs);
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.page-header-impact {
    background: linear-gradient(180deg, #f3f8f6 0%, var(--beige) 100%);
}

.page-header-impact::before {
    background: #d8eee8;
    opacity: 0.5;
}

/* --- FAQ --- */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2.5px solid var(--beige-dark);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--turquoise-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem var(--space-md);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--marron);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question .faq-toggle {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--turquoise-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--turquoise);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 var(--space-md) 1.2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-turquoise { color: var(--turquoise); }
.text-marron { color: var(--marron); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }

/* --- Features list inline --- */
.features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    border: 2px solid var(--beige-dark);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.2rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--marron);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.feature-tag:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
}

/* --- Scroll to top --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--turquoise);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sticker);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--turquoise-dark);
    transform: translateY(-3px);
}

/* --- Separator décoratif --- */
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: var(--space-md) 0;
}

.separator .sep-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--turquoise-light);
}

.separator .sep-line {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: var(--beige-dark);
}

/* ============================================
   Form enhancements - global
   ============================================ */

select {
    cursor: pointer;
}

/* Password eye toggle */
.pw-toggle-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.pw-toggle-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--marron-light);
    padding: 0.25rem;
    line-height: 1;
    font-size: 0.95rem;
    transition: color 0.2s;
    z-index: 1;
}

.pw-toggle-btn:hover {
    color: var(--turquoise);
}

/* Password confirmation feedback */
.pw-confirm-feedback {
    font-size: 0.82rem;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 1.1rem;
    transition: color 0.2s;
}

.pw-match  { color: #16a34a; }
.pw-no-match { color: #dc2626; }

