/* =========================================
   SECTOR 3 PAGE – ENTERPRISE APPLE CLEAN
========================================= */

.sector3-service {
    padding: 100px 20px;
    background: #f5f5f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1d1d1f;
    line-height: 1.5;
}

/* ELIMINARE FANTOME TEMĂ - NUCLEAR RESET */
.sector3-service *, 
.sector3-service *::before, 
.sector3-service *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    /* Dezactivăm elementele invizibile ale temei care ocupă spațiu în grid */
    content: none !important; 
}

/* Re-activăm content pentru elementele reale după reset */
.sector3-service h1, .sector3-service h2, .sector3-service h3, 
.sector3-service p, .sector3-service a, .sector3-service strong,
.sector3-service div, .sector3-service span {
    content: normal !important;
}

.sector3-container {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

/* ---------- TITLURI ---------- */

.sector3-service h1 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    color: #111;
    display: block;
}

.sector3-service h2 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 90px 0 40px 0;
    letter-spacing: -0.3px;
    color: #1d1d1f;
    display: block;
}

/* ---------- PARAGRAFE ---------- */

.sector3-service p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3c;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ---------- IMPORTANT CTA ---------- */

.sector3-service .important-call {
    background: #111;
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    margin-bottom: 70px;
}

.sector3-service .important-call a {
    display: inline-block;
    background: #0071e3;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.25s ease;
}

/* ---------- CARD GRID - ALINIERE PERFECTĂ ---------- */

.sector3-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 30px !important;
    margin: 50px 0 !important;
    padding: 0 !important;
}

/* Forțăm 3 pe rând pe desktop */
.sector3-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: left;
    /* Calcul: (100% - 2 gap-uri de 30px) / 3 */
    flex: 0 0 calc(33.33% - 20px) !important;
    display: flex;
    flex-direction: column;
}

.sector3-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.sector3-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.sector3-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    text-align: left;
    margin: 0;
}

/* ---------- BENEFITS STRIP ---------- */

.sector3-benefits {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin: 60px 0 !important;
}

.sector3-benefit {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    font-weight: 500;
    font-size: 16px;
    flex: 1 1 220px;
}

/* ---------- NAP CARD ---------- */

.sector3-nap {
    background: #ffffff;
    padding: 50px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    margin-top: 70px;
}

/* ---------- MAP ---------- */

.sector3-map {
    margin-top: 60px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.sector3-map iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
    .sector3-card {
        flex: 0 0 calc(50% - 15px) !important;
    }
}

@media (max-width: 768px) {
    .sector3-service { padding: 70px 15px; }
    .sector3-service h1 { font-size: 28px; }
    
    .sector3-card {
        flex: 0 0 100% !important;
        padding: 30px;
    }
    
    .sector3-map iframe { height: 350px; }
}