/* ============================================
   CABLYS Website - MVP Section Styles
   ============================================ */

/* ============================================
   MVP & PARTNERSHIP SECTION
   ============================================ */

.mvp {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.mvp-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.mvp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.mvp-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.mvp-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.mvp-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.mvp-cta {
    text-align: center;
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    color: white;
}

.mvp-cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mvp-cta p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.mvp-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .mvp-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INFO TABLE STYLES (Riutilizzabile)
   ============================================ */

/* Tabella Informativa */
.info-table-wrapper {
    margin: 3rem 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
}

.info-table thead {
    background: var(--primary-color);
    color: white;
}

.info-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.info-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.info-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

.info-table tbody tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 1.2rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    vertical-align: middle;
}

.info-table td:first-child {
    font-weight: 500;
    min-width: 200px;
}

.info-table td:nth-child(2) {
    color: var(--text-secondary);
}

.info-table td:last-child {
    text-align: center;
    min-width: 150px;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-active {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-dev {
    background: rgba(251, 191, 36, 0.15);
    color: #d97706;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-roadmap {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Tech Stack Info */
.tech-stack-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
}

.tech-stack-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-list {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Security Disclaimer */
.security-disclaimer {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.4);
    border-radius: 12px;
    text-align: center;
}

.security-disclaimer p {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .info-table th,
    .info-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .info-table td:first-child {
        min-width: 150px;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .tech-list {
        font-size: 0.9rem;
    }
}

