/* ====================================
   WHY REVO PAGE - NEW SECTIONS STYLES
==================================== */

/* Cost Breakdown Grid */
.cost-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cost-item {
    background: rgba(19, 27, 47, 0.6);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.cost-item:hover {
    border-color: rgba(157, 0, 255, 0.3);
    transform: translateY(-5px);
}

.cost-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #9D00FF, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cost-item h4 {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cost-note {
    font-size: 0.95rem;
    color: #a0aec0;
    font-style: italic;
}

/* Speed Grid */
.speed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.speed-card {
    background: rgba(19, 27, 47, 0.4);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.speed-card:hover {
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

.speed-icon {
    font-size: 2.5rem;
    color: #00D9FF;
    margin-bottom: 1rem;
}

.speed-card h4 {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.speed-card p {
    font-size: 0.95rem;
    color: #a0aec0;
    line-height: 1.6;
}

/* Speed Statement */
.speed-statement {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(157, 0, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(157, 0, 255, 0.2);
}

/* Value Note */
.value-note {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .cost-breakdown-grid,
    .speed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .speed-statement h2 {
        font-size: 1.8rem !important;
    }

    .speed-statement p {
        font-size: 1.1rem !important;
    }
}