/* ================================
   RELATED MODULES COMPONENT
================================ */

.link-related-all {
    color: var(--color-primary);
    text-decoration: none;
    transition: transform .2s ease, color .2s ease;
}

.link-related-all:hover {
    color: var(--color-primary-light);
    transform: translateX(4px);
}

/* Card base */
.related-card {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .06);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

/* Hover */
.related-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 72, 70, .18);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

/* Icon */
.related-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.related-card__icon svg,
.related-card__icon i {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

/* Body */
.related-card__body {
    flex: 1;
}

.related-card__title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.related-card__desc {
    color: var(--color-secondary-p);
    font-size: .95rem;
    line-height: 1.55;
}

/* Arrow */
.related-card__arrow {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .2s ease, transform .2s ease;
}

.related-card:hover .related-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.related-card__arrow svg {
    width: 18px;
    height: 18px;
}

.check-dot {
    box-shadow: 0 0 0 4px rgba(18, 113, 65, .08);
}

/* ================================
   STATS SECTION
================================ */

.stat-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

/* Accent line */
.stat-accent {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: var(--color-primary);
    margin: 0 auto;
}


.stat-value {
    font-weight: 700;
    font-size: 1.85rem;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    color: #6c757d;
    margin-top: .35rem;
}

.stat-card {
    border: 1px solid #eef0f2;
    border-radius: 1.25rem;
    background: #fff;
    padding: 1.25rem;
    height: 100%;
}

.usecase-card {
    border-radius: 1.25rem;
    border: 1px solid #eef0f2;
    background: #fff;
    padding: 1.25rem;
    height: 100%;
}

.icon-soft {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    flex-shrink: 0;
}

.card-soft {
    border-radius: 1.25rem;
    border: 1px solid #eef0f2;
    background: #fff;
    transition: all .2s ease;
    height: 100%;
}

.card-soft:hover {
    transform: translateY(-2px);
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .08);
    border-color: #e6e8eb;
}