/* === CONSEIL & ACCOMPAGNEMENT - AGENCY STYLE === */

:root {
    --primary-red: #ef3e36;
    --text-dark: #1a1a1a;
    --text-body: #64748b;
    --bg-light: #ffffff;
    --bg-cards: #ffffff;
    --bg-trust: #f8fafc;
    --bg-cta: #1e293b;
    --border-light: #e2e8f0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* 1. HERO SECTION (AGENCY STYLE) */
.council-hero {
    padding: 6rem 1rem 4rem;
    background-color: white;
    border-bottom: 1px solid var(--border-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.kicker {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-tag {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.benefit-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit-list i {
    color: var(--primary-red);
    margin-right: 10px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(239, 62, 54, 0.2);
}

.btn-primary:hover {
    background-color: #d12c24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 62, 54, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--text-dark);
    background-color: var(--text-dark);
    color: white;
}

.hero-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 2. TRUST BAND */
.trust-band {
    background-color: var(--bg-trust);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--primary-red);
}

/* 3. PROFILE SELECTOR */
.profile-section {
    padding: 6rem 1rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.profile-icon {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.profile-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.profile-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    color: var(--text-body);
}

.profile-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5em;
    position: relative;
}

.profile-list li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.link-arrow {
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover {
    gap: 8px;
}

/* 4. SERVICES GRID */
.services-section {
    padding: 0 1rem 6rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-tag {
    display: inline-block;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 1rem;
    width: fit-content;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* 5. PROCESS SECTION */
.process-section {
    padding: 6rem 1rem;
    background: var(--bg-trust);
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* 6. FINAL CTA */
.final-cta {
    padding: 6rem 1rem;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .benefit-list {
        text-align: left;
        display: inline-block;
    }

    .profile-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
}