/* ============================================
   PREMIUM INFRASTRUCTURE PAGE - SCOPED STYLES
   ============================================ */

.cnc-infra-wrapper {
    font-family: 'Inter', sans-serif;
    background-color: #0B1120;
    /* Deep dark background matching theme */
    color: #e2e8f0;
    overflow-x: hidden;
}

/* --- Hero Section --- */
.cnc-infra-hero {
    position: relative;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cnc-infra-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cnc-infra-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.cnc-infra-hero-text {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #94a3b8;
}

/* --- Grid Layout --- */
.cnc-infra-grid-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.cnc-infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* --- Card Image --- */
.cnc-infra-card-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cnc-infra-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cnc-infra-card:hover .cnc-infra-card-image {
    transform: scale(1.1);
}

/* --- Cards --- */
.cnc-infra-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cnc-infra-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cnc-infra-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cnc-infra-card:hover::after {
    opacity: 1;
}

/* --- Card Content --- */
.cnc-infra-card-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.cnc-infra-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.cnc-infra-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.cnc-infra-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cnc-infra-list-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cnc-infra-list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* --- Conclusion Section --- */
.cnc-infra-conclusion {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 1) 100%);
    max-width: 900px;
    margin: 0 auto;
}

.cnc-infra-conclusion-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1.5rem;
}

.cnc-infra-conclusion-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #94a3b8;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .cnc-infra-hero-title {
        font-size: 2.5rem;
    }

    .cnc-infra-grid {
        grid-template-columns: 1fr;
    }

    .cnc-infra-card {
        padding: 2rem;
    }
}