/* ==========================================================================
   COMPONENTS.CSS — Reusable UI pieces: cards, pills, icons, avatars.
   Below-the-fold heavy. Safe to load non-blocking (deferred in header).
   ========================================================================== */

.hero-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.1);
}

.stat-card,
.glass-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* Card family shares one hover treatment */
.service-card,
.service-detail-card,
.feature-card,
.testimonial-card,
.team-card,
.metric-card,
.form-card,
.insight-card,
.product-card,
.highlight-card,
.partner-card,
.backup-card,
.pillar-card,
.stat-item,
.mini-card,
.news-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.service-detail-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.team-card:hover,
.metric-card:hover,
.form-card:hover,
.insight-card:hover,
.product-card:hover,
.highlight-card:hover,
.partner-card:hover,
.backup-card:hover,
.pillar-card:hover,
.stat-item:hover,
.mini-card:hover,
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-item {
    padding: 18px;
    text-align: center;
    border-radius: 18px;
}

.highlight-card {
    padding: 28px;
}

.product-card {
    height: 100%;
}

.tag-pill {
    background: #e2e8f0;
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.logo-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    color: #334155;
}

.news-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.partner-card {
    padding: 36px;
    border-radius: 28px;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.12));
}

.backup-card {
    padding: 28px;
}

.mini-card {
    padding: 16px;
    border-radius: 16px;
}

.pillar-card {
    height: 100%;
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 16px;
}
