/* ── Cards 2 (Process / Steps Grid) Block ────────────────────────── */

.c2-block {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.c2-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.c2-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ── Header ──────────────────────────────────────────────────────── */

.c2-header {
    margin-bottom: 48px;
}

.c2-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.c2-title-accent {
    color: #c41e2a;
}

.c2-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    line-height: 1.65;
    margin: 0;
}

.c2-header[style*="center"] .c2-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ── Step Grid ───────────────────────────────────────────────────── */

.c2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Step Card ───────────────────────────────────────────────────── */

.c2-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Ghost step number */
.c2-num {
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    margin-bottom: 8px;
    user-select: none;
    letter-spacing: -2px;
}

.c2-content {
    position: relative;
}

/* Divider line + title row */
.c2-line-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.c2-divider {
    display: block;
    width: 32px;
    height: 3px;
    background: #c41e2a;
    flex-shrink: 0;
    border-radius: 2px;
}

.c2-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.c2-step-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.65;
    margin: 0;
}

/* ── CTA ─────────────────────────────────────────────────────────── */

.c2-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.c2-cta-btn {
    display: inline-block;
    background: #c41e2a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.c2-cta-btn:hover {
    background: #a01520;
    color: #ffffff;
}

/* ── Mobile ──────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .c2-grid {
        grid-template-columns: 1fr;
    }

    .c2-header {
        margin-bottom: 32px;
    }

    .c2-title {
        font-size: 28px;
    }

    .c2-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}
