
/* ================================================================
   CRYPTO FORENSICS PAGE PREMIUM ENHANCEMENTS
   ================================================================ */

/* Service cards with hover effects */
.cf-service-card {
    background: linear-gradient(135deg, #fff, hsl(210 20% 99%));
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cf-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cf-service-card:hover::after {
    transform: scaleX(1);
}

.cf-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.15);
}

/* Process steps */
.cf-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.cf-process-step:hover {
    background: rgba(59, 130, 246, 0.03);
}

.cf-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Feature grid with icons */
.cf-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

/* Trust indicators */
.cf-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--foreground);
    font-weight: 500;
}

/* Stats bar */
.cf-stats-bar {
    background: linear-gradient(135deg, #0a1628, #0d1f3c);
    border-radius: 16px;
    padding: 2.5rem;
    color: #fff;
    margin: 3rem 0;
}

.cf-stat-item {
    text-align: center;
}

.cf-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cf-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}
