/* Styles spécifiques à la page
   "Connecter un ERP maison ou un logiciel métier à une plateforme agréée"
   Complète /articles/global.css. */

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
}

.hero-actions .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent, #4fd1a5);
    color: #0a0a0a;
    font-family: 'Baloo Tamma 2', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .2s, opacity .2s;
}

.hero-actions .cta-button:hover {
    text-decoration: none;
    transform: translateY(-1px);
    opacity: 0.92;
}

.hero-actions .cta-button svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    transition: transform .2s;
}

.hero-actions .cta-button:hover svg {
    transform: translateX(3px);
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-muted, #666666);
}

.hero-lead {
    font-family: 'Saira Extra Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--text-primary, #e8e8e8);
    border-left: 3px solid var(--accent, #4fd1a5);
    padding-left: 20px;
    margin: 24px 0 0;
}

@media (max-width: 768px) {
    .hero-lead {
        font-size: 1.3rem;
    }
}

.check-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--accent, #4fd1a5);
    border-bottom: 2px solid var(--accent, #4fd1a5);
    transform: rotate(-45deg);
}

.tech-sheet {
    background: var(--bg-card, #161616);
    border: 1px solid var(--border, #222222);
    border-radius: 10px;
    padding: 24px 28px;
    margin: 20px 0 32px;
}

.tech-sheet dl {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 12px 24px;
    margin: 0;
}

.tech-sheet dt {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent, #4fd1a5);
    padding-top: 3px;
}

.tech-sheet dd {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary, #999999);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light, #1a1a1a);
}

.tech-sheet dd:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted, #666666);
}

.info-box a {
    color: var(--accent, #4fd1a5);
}

@media (max-width: 768px) {
    .tech-sheet {
        padding: 18px;
    }

    .tech-sheet dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .tech-sheet dt {
        padding-top: 10px;
    }
}