/* enterprise.css - Styles specific to the Enterprise Platform page */

/* Reusable highlight section */
.section-highlight {
    max-width: 1180px;
    margin: 80px auto; /* Reduced from 140px for tighter spacing */
    padding: 60px 40px; /* Slightly reduced padding */
    background: var(--surface);
    border-radius: 28px;
    border: 1px solid rgba(0, 208, 255, 0.22);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.section-highlight h2 {
    font-size: 54px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: -0.6px;
}

.centered-list {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.4rem;
    line-height: 1.65;
    opacity: 0.94;
    list-style-type: disc;
    padding-left: 40px;
}

.section-highlight p {
    font-size: 1.4rem;
    line-height: 1.65;
    opacity: 0.94;
    max-width: 1000px;
    margin: 0 auto;
}

/* Feature cards */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto 80px; /* Reduced margins */
}

.feature-card {
    background: var(--surface);
    padding: 44px 40px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    transition: transform .3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card-red {
    border: 1px solid rgba(255,80,80,0.28);
}

.feature-card-red h3 {
    color: #ff5050;
}

.feature-card-green {
    border: 1px solid rgba(0,255,157,0.25);
}

.feature-card-green h3 {
    color: #00ff9d;
}

.feature-list {
    text-align: left;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.65;
    opacity: 0.94;
    list-style-type: disc;
    padding-left: 40px;
}

.feature-card h3 {
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Tighten video margins */
.video-container {
    max-width: 1120px;
    margin: 60px auto; /* Reduced from 100px */
    padding: 0 20px;
}

/* Core capabilities list */
.core-list {
    text-align: left;
    max-width: 1100px;
    margin: 0 auto 40px;
    font-size: 1.4rem;
    line-height: 1.65;
    opacity: 0.94;
    list-style-type: disc;
    padding-left: 40px;
}


.centered-q-grid {
display: grid;
grid-template-columns: repeat(2, minmax(300px, 378px));  
justify-content: center;  
gap: 32px;
margin-top: 32px;  
max-width: 1200px;  
}

/* .enterprise-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
} */