.coll-page h3 {
    display: block;
    color: inherit;
    margin-top: 0;
    margin-bottom: 0;
}

/* ===== BADGE / TAG ===== */
.coll-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--c-mint-light);
    color: var(--Primary-Green);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 14px;
}
.coll-badge--light {
    background: rgba(255,255,255,0.15);
    color: var(--c-amber-light);
}
.coll-badge--center {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   HERO
   ============================================================ */
.coll-hero {
    background: var(--c-cream);
}

.coll-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 24px 36px;
}
@media (min-width: 768px) {
    .coll-hero-content {
        padding: 80px 56px 80px 24px;
    }
}

.coll-hero h1 {
    font-family: var(--font-family-title);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--Primary-Brown);
    margin-bottom: 16px;
    text-align: left;
    animation: coll-fadeInUp 0.7s var(--ease-out-expo) 0.3s both;
}
.coll-hero h1 em {
    font-style: italic;
    color: var(--Primary-Green);
    position: relative;
}
.coll-hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--c-amber-light);
    z-index: -1;
    border-radius: 4px;
}

.coll-hero-desc {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--c-brown-light);
    line-height: 1.65;
    margin-bottom: 28px;
    animation: coll-fadeInUp 0.7s var(--ease-out-expo) 0.45s both;
}

@keyframes coll-fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes coll-fadeInDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.coll-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-mint-light);
    color: var(--Primary-Green);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 16px;
    animation: coll-fadeInDown 0.6s var(--ease-out-expo) 0.2s both;
}
.coll-hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--Primary-Green);
    border-radius: 50%;
    animation: coll-pulse 2s ease-in-out infinite;
}
@keyframes coll-pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ============================================================
   SECTION: GRATUIT
   ============================================================ */
.coll-gratuit {
    padding: clamp(48px, 7vw, 80px) 0;
    background: var(--Primary-Green);
}
.coll-gratuit .section-heading{
    color:var(--writingColorLight);
    padding: 20px 10px;
}

.coll-gratuit .section-body{
    color:var(--writingColorLight);
}
.coll-gratuit-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 44px;
}
.coll-gratuit-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) {
    .coll-gratuit-cards {
        grid-template-columns: 1fr 1fr;
    }
}
.coll-gratuit-card {
    background: var(--c-bg);
    border: 2px solid #eae8e3;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.coll-gratuit-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--c-mint-light);
    color: var(--Primary-Green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.coll-gratuit-text h3 {
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 700;
    color: var(--Primary-Brown);
    margin-bottom: 8px;
}
.coll-gratuit-text p {
    font-size: 0.88rem;
    color: var(--c-brown-light);
    line-height: 1.6;
}

.img-container{
    padding: 20px 10px;
    justify-content: center;
}

/* ============================================================
   SECTION: CONSTAT (ce qui fait la différence)
   ============================================================ */
.coll-constat {
    padding: clamp(48px, 7vw, 80px) 0;
    background: var(--c-amber-warm);
    position: relative;
    overflow: hidden;
}
.coll-constat::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,125,39,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.coll-constat-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}
@media (min-width: 768px) {
    .coll-constat-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
    }
}
.coll-constat blockquote {
    font-family: var(--font-family-title);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-style: italic;
    color: var(--Primary-Brown);
    line-height: 1.4;
    border-left: 4px solid var(--Primary-Orange);
    padding-left: 24px;
    margin: 0 0 24px;
}
.coll-constat-body {
    color: var(--Secondary-Brown);
    margin-bottom: 16px;
}
.coll-constat-body strong {
    color: var(--Primary-Brown);
    font-weight: 600;
}
.coll-constat-photo {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.coll-constat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================================
   SECTION: FEATURES (page personnalisée)
   ============================================================ */
.coll-features {
    padding: clamp(48px, 7vw, 80px) 0;
    background: var(--c-white);
}
.coll-features-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}
.coll-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 600px) {
    .coll-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 960px) {
    .coll-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.coll-feature-card {
    border-radius: 20px;
    padding: 28px 24px;
    border: 2px solid;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.coll-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(0,0,0,0.09);
}
.coll-feature-card--green  { background: var(--c-mint-light);  border-color: var(--c-mint); }
.coll-feature-card--orange { background: var(--c-amber-warm);  border-color: #f0d59a; }
.coll-feature-card--indigo { background: #eef2ff;               border-color: #c7d2fe; }
.coll-feature-card--purple { background: #fdf2f8;               border-color: #f0abda; }
.coll-feature-card--cream  { background: var(--c-cream);        border-color: #e5deda; }

.coll-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: white;
}
.coll-feature-card--green  .coll-feature-icon { background: var(--Primary-Green); }
.coll-feature-card--orange .coll-feature-icon { background: var(--Primary-Orange); }
.coll-feature-card--indigo .coll-feature-icon { background: var(--Indigo); }
.coll-feature-card--purple .coll-feature-icon { background: var(--Primary-Purple); }
.coll-feature-card--cream  .coll-feature-icon { background: var(--Primary-Brown); }

.coll-feature-card h3 {
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 700;
    color: var(--Primary-Brown);
    margin-bottom: 10px;
}
.coll-feature-card p {
    font-size: 0.88rem;
    color: var(--Secondary-Brown);
    line-height: 1.6;
}


/* ============================================================
   SECTION: PROCESSUS (3 étapes)
   ============================================================ */
.coll-process {
    padding: clamp(52px, 8vw, 96px) 0;
    background: var(--Primary-Green);
    color: white;
}
.coll-process-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 56px;
}
.coll-process-header .section-heading {
    color: white;
}
.coll-process-header .section-body {
    color: rgba(255,255,255,0.7);
}
.coll-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .coll-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}
.coll-step {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 32px 24px;
}
.coll-step-number {
    font-family: var(--font-family-title);
    font-size: 2.8rem;
    color: rgba(255,255,255,0.2);
    line-height: 1;
    margin-bottom: 14px;
}
.coll-step h3 {
    font-family: var(--font-family-text);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.coll-step p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.65;
}


/* ============================================================
   SECTION: PRENDRE RDV
   ============================================================ */
.coll-cta {
    padding: clamp(56px, 9vw, 104px) 0;
    background: var(--c-cream);
    text-align: center;
}
.coll-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}
.coll-cta h2 {
    font-family: var(--font-family-title);
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--Primary-Brown);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 16px;
}
.coll-cta-desc {
    font-size: 1rem;
    color: var(--c-brown-light);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 36px;
}
.coll-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

