/* SOLUTION SUMMARY LOOP (End of Deep Dives) */

.solution-summary-section {
    position: relative;
    background-color: #050505;
    padding: 120px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

/* Background Grid Effect */
.solution-summary-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 0%, black 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.summary-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Header */
.summary-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.summary-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #00FFCC;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    opacity: 0.9;
}

.summary-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #FFF;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.summary-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #A0A0A0;
    font-weight: 300;
}

/* Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.summary-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.summary-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

/* Icons */
.card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    border: 1px solid currentColor;
    background: rgba(255,255,255,0.05);
}

.icon-teal { color: #00FFCC; box-shadow: 0 0 15px rgba(0, 255, 204, 0.2); }
.icon-purple { color: #8A2BE2; box-shadow: 0 0 15px rgba(138, 43, 226, 0.2); }
.icon-orange { color: #FF4500; box-shadow: 0 0 15px rgba(255, 69, 0, 0.2); }

/* Card Content */
.summary-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 4px;
}

.card-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.summary-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #CCC;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-roi {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #AAA;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.card-roi strong {
    color: #FFF;
    display: block;
    margin-bottom: 4px;
}

.summary-card:hover .icon-teal + h3 + .card-subtitle + p + .card-roi strong { color: #00FFCC; }
.summary-card:hover .icon-purple + h3 + .card-subtitle + p + .card-roi strong { color: #8A2BE2; }
.summary-card:hover .icon-orange + h3 + .card-subtitle + p + .card-roi strong { color: #FF4500; }


/* Big Stat Box */
.card-stat-box {
    border: 1px solid;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.3);
}

.box-teal { border-color: #00FFCC; }
.box-purple { border-color: #8A2BE2; }
.box-orange { border-color: #FF4500; }

.stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #FFF;
    line-height: 1;
    margin-bottom: 8px;
}

.box-teal .stat-val { color: #00FFCC; text-shadow: 0 0 10px rgba(0,255,204,0.4); }
.box-purple .stat-val { color: #8A2BE2; text-shadow: 0 0 10px rgba(138,43,226,0.4); }
.box-orange .stat-val { color: #FF4500; text-shadow: 0 0 10px rgba(255,69,0,0.4); }

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: #AAA;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Human Tag */
.card-human-tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-human-tag i { font-size: 14px; }

.box-teal ~ .card-human-tag { color: #00FFCC; }
.box-purple ~ .card-human-tag { color: #8A2BE2; }
.box-orange ~ .card-human-tag { color: #FF4500; }

/* Responsive */
@media (max-width: 1024px) {
    .summary-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .summary-card {
        margin-bottom: 20px;
    }
}
