/* ===== MENU SECONDAIRE SERVICES ===== */
.service-nav {
    position: fixed;
    top: 64px;
    /* nav mobile h-16 */
    left: 0;
    right: 0;
    z-index: 49;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.service-nav::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1024px) {
    .service-nav {
        top: 80px;
        /* nav desktop h-20 */
    }
}

.service-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    white-space: nowrap;
    padding: 0 20px;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 1280px) {
    .service-nav-inner {
        padding: 0 40px;
    }
}

.service-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--ink-light);
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: color .25s ease;
    flex-shrink: 0;
}

.service-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.service-nav-link:hover {
    color: var(--ink);
}

.service-nav-link:hover::after {
    transform: scaleX(1);
}

.service-nav-link.active {
    color: var(--navy);
    font-weight: 600;
}

.service-nav-link.active::after {
    transform: scaleX(1);
}

/* ===== HERO SERVICE ===== */
/* Compense nav (64 ou 80px) + service-nav (44px) */
.hero-service {
    padding-top: calc(64px + 44px + 40px);
    padding-bottom: 64px;
}

@media (min-width: 1024px) {
    .hero-service {
        padding-top: calc(80px + 44px + 64px);
        padding-bottom: 80px;
    }
}

.hero-service-tag {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(219, 101, 69, .9);
    /* coral sur fond navy */
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 24px;
}

.hero-service-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--coral);
}

.hero-service-title {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
}

.hero-service-kicker {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: rgba(242, 239, 232, .75);
    line-height: 1.3;
}

/* ===== CARTES APPROCHE ===== */
.approach-card {
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-top: 2px solid var(--navy);
    border-radius: 4px;
    padding: 32px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.approach-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(23, 26, 33, .07);
}

.approach-card h3 {
    font-family: 'Fraunces', serif;
}

.approach-bullets {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.approach-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .85rem;
    color: var(--ink-light);
    line-height: 1.4;
}

.approach-bullets li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ===== ÉTAPES PROCESSUS ===== */
.process-detail-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--coral);
    font-size: 2.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

.process-detail-card {
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-radius: 4px;
    padding: 32px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.process-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(23, 26, 33, .06);
}

.process-detail-card h3 {
    font-family: 'Fraunces', serif;
}

/* ===== ITEMS TECHNOLOGIE ===== */
.tech-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-left: 3px solid var(--coral);
    border-radius: 0 4px 4px 0;
    transition: transform .3s ease, box-shadow .3s ease;
}

.tech-card:hover {
    transform: translateX(3px);
    box-shadow: 4px 8px 20px rgba(23, 26, 33, .06);
}

.tech-card-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--coral);
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
}

.tech-card h3 {
    font-family: 'Fraunces', serif;
}

/* ===== CTA FINAL SERVICE ===== */
.service-cta-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(242, 239, 232, .55);
    transition: color .25s ease;
    margin-top: 4px;
}

.service-cta-next:hover {
    color: rgba(242, 239, 232, .85);
}

.service-cta-next svg {
    transition: transform .25s ease;
}

.service-cta-next:hover svg {
    transform: translateX(4px);
}
