/* ===================================================
   ENGINEERING EXPERIENCE
=================================================== */

.experience-hero {
    padding: 180px 0 120px;
    background: #0c0f14;
    color: #fff;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.75;
}

.experience-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.05;
    margin-bottom: 30px;
    max-width: 1000px;
}

.experience-hero h1 span {
    display: block;
}

.hero-description {
    max-width: 850px;
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.85;
}

.experience-strip {
    border-top: 1px solid #1d2530;
    border-bottom: 1px solid #1d2530;
    background: #0f141b;
}

.capability-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.capability-strip div {
    text-align: center;
    padding: 30px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d0d7e2;
    border-right: 1px solid #1d2530;
}

.capability-strip div:last-child {
    border-right: none;
}

.experience-intro {
    padding: 120px 0;
}

.narrow {
    max-width: 900px;
    margin: auto;
}

.experience-intro h2,
.engineering-principles h2,
.confidentiality h2,
.experience-cta h2 {
    margin-bottom: 30px;
}

.experience-intro p,
.confidentiality p,
.experience-cta p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.experience-domains {
    padding: 40px 0 120px;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.domain-card {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 24px;
    padding: 40px;
    transition: 0.3s ease;
}

.domain-card:hover {
    transform: translateY(-6px);
}

.domain-card h3 {
    margin-bottom: 18px;
    font-size: 1.6rem;
}

.domain-card p {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #55606d;
}

.programs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.programs span {
    border: 1px solid #dbe3ea;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.85rem;
}

.engineering-principles {
    padding: 120px 0;
    background: #f5f7fa;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.principle {
    background: white;
    border-radius: 20px;
    padding: 35px;
}

.principle h3 {
    margin-bottom: 15px;
}

.principle p {
    line-height: 1.8;
}

.confidentiality {
    padding: 120px 0;
}

.experience-cta {
    padding: 140px 0;
    background: #0c0f14;
    color: white;
    text-align: center;
}

.experience-cta .btn-primary {
    margin-top: 20px;
    display: inline-flex;
}

/* ===================================================
   PROFESSIONAL ENGAGEMENTS
=================================================== */

.professional-engagements {
    padding: 120px 0;
    background: #0f141b;
    color: #ffffff;
}

.engagements-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

.engagements-header h2 {
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
}

.engagements-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.engagement-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.18);
}

.engagement-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
    line-height: 1.3;
}

.engagement-card p {
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
}

.engagement-footer {
    max-width: 900px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.engagement-footer p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .engagement-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .professional-engagements {
        padding: 80px 0;
    }

    .engagement-card {
        padding: 28px;
    }

    .engagements-header {
        margin-bottom: 50px;
    }

}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .domain-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .experience-hero {
        padding: 140px 0 80px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .capability-strip {
        grid-template-columns: 1fr;
    }

    .capability-strip div {
        border-right: none;
        border-bottom: 1px solid #1d2530;
    }
}
