
/* ══════════════════════════════════════════
   RESTORED: VISION 2030 STYLES
   ══════════════════════════════════════════ */
.v30-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.v30-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: #fb8b01;
}

.v30-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.v30-header h2 {
    font-size: 20px;
    font-weight: 900;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v30-header h2 span { color: #fb8b01; }

.v30-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.v30-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.v30-card:hover { background: #f9fafb; }

.v30-icon {
    font-size: 32px;
    background: rgba(251,139,1,0.12);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    color: #d97000;
}

.v30-info { flex: 1; }

.v30-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #111827;
}

.v30-desc {
    font-size: 12.5px;
    color: #4b5563;
    line-height: 1.6;
}

@media(max-width:900px) { .v30-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px) { .v30-grid { grid-template-columns: 1fr; } .v30-section { padding: 20px; } }
