/* ============================================================
   SERVICES — liste
   Extrait de templates/services/index.html.twig
   ============================================================ */

/* ── Service Cards ──────────────────────────────── */
.iz-service-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(10,14,26,0.07);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    cursor: default;
}

.iz-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(21,87,255,0.03);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: inherit;
    pointer-events: none;
}

.iz-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10,14,26,0.12);
    border-color: rgba(21,87,255,0.15);
}

.iz-service-card:hover::before { opacity: 1; }

.iz-service-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.iz-service-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(21,87,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--service-color, #1557FF);
    transition: all 0.3s ease;
    border: 2px solid rgba(21,87,255,0.1);
}

.iz-service-card:hover .iz-service-card__icon {
    background: #1557FF;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(21,87,255,0.35);
    transform: scale(1.05);
}

.iz-service-card__tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(21,87,255,0.08);
    color: #1557FF;
    white-space: nowrap;
}

.iz-service-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0A0E1A;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.iz-service-card__desc {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.iz-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1557FF;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.iz-service-card__link:hover { gap: 12px; color: #0046EE; }

.iz-service-card__bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 5rem;
    color: rgba(21,87,255,0.04);
    pointer-events: none;
    transition: all 0.4s ease;
}

.iz-service-card:hover .iz-service-card__bg-icon {
    transform: scale(1.2) rotate(10deg);
    color: rgba(21,87,255,0.07);
}

/* ── Process ────────────────────────────────────── */
.iz-process-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 10%, rgba(21,87,255,.13), transparent 26%), radial-gradient(circle at 88% 88%, rgba(21,87,255,.2), transparent 30%), #080d19;
    color: #fff;
}
.iz-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .14;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.iz-process-section .container { position: relative; z-index: 1; }
.iz-process-section .iz-section-label { color: #8eacff; }
.iz-process-section h2 { color: #fff; }
.iz-process-row { position: relative; margin: 0 -10px; }
.iz-process-row > div { padding: 10px; }
.iz-process-step {
    height: 100%;
    min-height: 278px;
    padding: 26px;
    text-align: left;
    border: 1px solid rgba(21,87,255,.28);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(21,87,255,.15), rgba(9,17,34,.82) 48%);
    box-shadow: 0 18px 55px rgba(0,0,0,.22);
    backdrop-filter: blur(10px);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.iz-process-step:hover { transform: translateY(-8px); border-color: rgba(21,87,255,.72); box-shadow: 0 22px 65px rgba(0,70,238,.2); }
.iz-process-step--bordered::before,
.iz-process-step--bordered::after,
.iz-process-step__connector { display: none; }
.iz-process-step__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.iz-process-step__num { margin: 0; color: rgba(255,255,255,.18); -webkit-text-stroke: 0; font-size: 3.7rem; letter-spacing: -.08em; }
.iz-process-step__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: #1557ff;
    box-shadow: 0 10px 28px rgba(21,87,255,.36);
}
.iz-process-step__title { color: #fff; font-size: 1.18rem; margin-bottom: 10px; }
.iz-process-step__desc { color: rgba(224,234,255,.68); font-size: .9rem; line-height: 1.72; }
@media (min-width: 768px) {
    .iz-process-row > div:nth-child(even) { transform: translateY(28px); }
    .iz-process-section { padding-bottom: 8rem; }
}
@media (max-width: 767px) {
    .iz-process-step { min-height: 230px; }
    .iz-process-step__top { margin-bottom: 28px; }
}
