/* 
    EASYBOOST SUCCESS METRICS v3.0 - DATA-DENSE EDITION
    Focus: Heavy Content, Technical Proof, Looping Graphs
*/

.smx-wrapper {
    background-color: #020205 !important;
    padding: 120px 0 !important;
    position: relative !important;
    font-family: 'Outfit', sans-serif !important;
}

.smx-container {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 25px !important;
}

.smx-header {
    text-align: left;
    margin-bottom: 70px;
    max-width: 800px;
}

.smx-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; color: #fff; line-height: 1;
}

.smx-header p {
    font-size: 18px; color: #94a3b8; margin-top: 20px; line-height: 1.6;
}

/* --- THE DATA GRID --- */
.smx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.smx-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 50px 40px;
    position: relative;
    transition: 0.4s ease;
}

.smx-card:hover {
    border-color: rgba(0, 194, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.smx-category {
    font-size: 11px; font-weight: 800; color: #00C2FF;
    text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 25px; display: block;
}

.smx-value-box { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.smx-number { font-family: 'Syne'; font-size: 60px; font-weight: 800; color: #fff; line-height: 1; }
.smx-unit { font-size: 30px; font-weight: 700; color: #00C2FF; }

/* Content Section */
.smx-p { font-size: 15px; color: #cbd5e1; line-height: 1.7; margin-bottom: 30px; }

/* Feature Bullets (Added Content) */
.smx-features {
    list-style: none; padding: 0; margin: 0 0 35px 0;
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px;
}
.smx-feat-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: #94a3b8; margin-bottom: 12px;
}
.smx-feat-item i { font-size: 10px; color: #00C2FF; }

/* --- LOOPING GRAPH ENGINE --- */
.smx-graph-wrap { width: 100%; height: 70px; position: relative; }

.smx-line {
    fill: none; stroke: #00C2FF; stroke-width: 3; stroke-linecap: round;
    stroke-dasharray: 600; stroke-dashoffset: 600;
    filter: drop-shadow(0 0 10px #00C2FF);
    animation: loopGraph 5s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes loopGraph {
    0% { stroke-dashoffset: 600; opacity: 0; }
    30% { stroke-dashoffset: 0; opacity: 1; }
    70% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: -600; opacity: 0; }
}

/* Card Themes */
.card-conversion .smx-unit, .card-conversion .smx-feat-item i { color: #FF2E63; }
.card-conversion .smx-line { stroke: #FF2E63; filter: drop-shadow(0 0 10px #FF2E63); animation-delay: 1s; }

.card-authority .smx-unit, .card-authority .smx-feat-item i { color: #FF9933; }
.card-authority .smx-line { stroke: #FF9933; filter: drop-shadow(0 0 10px #FF9933); animation-delay: 2s; }

/* Responsive */
@media (max-width: 1100px) {
    .smx-grid { grid-template-columns: 1fr; }
    .smx-card { padding: 40px 30px; }
}