/* ===== SECTION 1 — ACTIVITÉ ===== */
.section-partner-activity {
    background: linear-gradient(160deg, #fff600 0%, #ffb300 55%, #eb8309 100%);
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.section-partner-activity > .container {
    padding-top: 64px;
}

.partner-activity-heading {
    text-align: left;
    margin-bottom: 40px;
    font-size: clamp(1.4rem, 3.2vw, 3rem);
}

.partner-activity-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.partner-activity-text p {
    color: #2a2a2a;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.65;
    margin: 0 0 16px;
}

.partner-activity-text p a {
    color: #891812;
    font-weight: 600;
    text-decoration: underline;
}

.partner-activity-text p a:hover {
    color: #5a0d0d;
}

.partner-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.partner-cta-group .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Étapes */
.partner-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    border-left: 4px solid var(--red);
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-step:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(164, 20, 20, 0.15);
}

.partner-step__num {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.partner-step__body {
    min-width: 0;
}

.partner-step__title {
    margin: 0 0 4px;
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: #891812;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.partner-step__text {
    margin: 0;
    font-size: 1.1rem;
    color: #3a3a3a;
    font-weight: 400;
}

/* ===== SÉPARATEUR ===== */
.section-separator {
    height: 6px;
    background: linear-gradient(90deg, var(--red) 0%, #7f1212 50%, var(--red) 100%);
}

/* ===== SECTION 2 — TEST CHEZ SOI ===== */
.section-try-home {
    background: linear-gradient(160deg, #1a1200 0%, #1a0505 40%, #0c0c0c 100%);
    position: relative;
    overflow: hidden;
}

.try-home-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.try-home-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #c41818 0%, #a41414 60%, #7f1212 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 246, 0, 0.28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -2px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.try-home-card__mascot {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.try-home-card__mascot img {
    width: 100%;
    /*max-width: 180px;*/
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.try-home-card__content {
    min-width: 0;
}

.try-home-card__title {
    margin: 0 0 16px;
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.try-home-card__text {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
}

.try-home-card__text:last-of-type {
    margin-bottom: 24px;
}

.try-home-card__body {
    margin-bottom: 24px;
}

.try-home-card__body p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
}

.try-home-card__body p:last-child {
    margin-bottom: 0;
}

.try-home-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: #111;
    text-decoration: none !important;
}

.try-home-card .btn:hover {
    background: #fff8a6;
    color: var(--red);
    border-color: rgba(164, 20, 20, 0.4);
}

/* Badges requis */
.try-home-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.try-home-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 246, 0, 0.15);
    border: 1px solid rgba(255, 246, 0, 0.3);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.try-home-badge .material-symbols-outlined {
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .partner-activity-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-visual {
        order: -1;
    }

    .try-home-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .try-home-card__mascot {
        display: none;
    }
}
