/* ══════════════════════════════════════
   SERVICE PAGES — styles partagés
   ══════════════════════════════════════ */

:root {
    --black: #0e0e10;
    --white: #f7f6f3;
    --violet: #7c3aed;
    --violet-l: #a78bfa;
    --grey: rgba(247,246,243,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* ── Hero page ── */
.sp-hero {
    padding: 160px 64px 100px;
    max-width: 860px;
    margin: 0 auto;
}

.sp-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--violet-l);
    margin-bottom: 20px;
}

.sp-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--grey);
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.2s;
    letter-spacing: 0.05em;
}
.sp-back:hover { color: var(--white); }
.sp-back svg { flex-shrink: 0; }

.sp-hero h1 {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.sp-hero h1 em {
    color: var(--violet-l);
    font-style: normal;
}

.sp-hero-intro {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--grey);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 48px;
}

.sp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--violet);
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
}
.sp-cta:hover { background: #6d28d9; transform: translateY(-1px); }

/* ── Divider ── */
.sp-divider {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    height: 1px;
    background: rgba(255,255,255,0.07);
}

/* ── Steps ── */
.sp-steps-section {
    padding: 80px 64px;
    max-width: 860px;
    margin: 0 auto;
}

.sp-section-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--violet-l);
    margin-bottom: 48px;
}

.sp-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sp-step {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 24px;
    align-items: start;
}

.sp-step-icon {
    font-size: 18px;
    color: var(--violet-l);
    margin-top: 2px;
}

.sp-step-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.sp-step-desc {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
}

/* ── Included tags ── */
.sp-included-section {
    padding: 80px 64px;
    max-width: 860px;
    margin: 0 auto;
}

.sp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.sp-tag {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(124,58,237,0.35);
    font-size: 13px;
    color: rgba(247,246,243,0.65);
    letter-spacing: 0.03em;
}

/* ── CTA block ── */
.sp-cta-section {
    padding: 80px 64px 60px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.sp-cta-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.sp-cta-title em {
    color: var(--violet-l);
    font-style: normal;
}

.sp-cta-sub {
    font-size: 15px;
    color: var(--grey);
    margin-bottom: 36px;
}

/* ── Autres services ── */
.sp-other-section {
    padding: 80px 64px 100px;
    max-width: 860px;
    margin: 0 auto;
}

.sp-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.sp-other-card {
    display: block;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s, background 0.2s;
}

.sp-other-card:hover {
    border-color: rgba(124,58,237,0.4);
    background: rgba(124,58,237,0.04);
}

.sp-other-num {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--violet-l);
    margin-bottom: 12px;
}

.sp-other-name {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
}

/* ── Footer ── */
.sp-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 64px;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.06em;
}

.sp-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.sp-footer a:hover { color: rgba(255,255,255,0.5); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .sp-hero,
    .sp-steps-section,
    .sp-included-section,
    .sp-cta-section,
    .sp-other-section { padding-left: 24px; padding-right: 24px; }

    .sp-other-grid { grid-template-columns: 1fr; }

    .sp-footer { padding-left: 24px; padding-right: 24px; }
}
