/* =========================================================
   SECTOR PAGES
   ========================================================= */

.sector-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .86) 0%,
            rgba(0, 0, 0, .68) 55%,
            rgba(0, 0, 0, .35) 100%),
        url('/assets/images/sectors/sector-default.jpg') center center / cover no-repeat;
}

.sector-hero-content {
    max-width: 850px;
    padding: 100px 0;
    color: #fff;
}

.sector-hero h1 {
    max-width: 850px;
    margin: 15px 0 25px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.05;
    font-weight: 800;
}

.sector-hero-description {
    max-width: 720px;
    margin-bottom: 35px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.sector-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sector-intro {
    background: #fff;
}

.sector-intro h2,
.sector-focus h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
}

.sector-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

.section-light {
    background: #f5f5f5;
}

.sector-area-card {
    height: 100%;
    padding: 35px;
    background: #fff;
    border: 1px solid #e5e5e5;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.sector-area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    border-color: #cc0000;
}

.sector-area-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #cc0000;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
}

.sector-area-card h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.sector-focus {
    background: #fff;
}

.sector-focus-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sector-focus-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
}

.sector-focus-item span {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
}

.sector-cta {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.sector-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sector-cta h2 {
    margin: 10px 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.sector-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
}

@media (max-width: 991px) {

    .sector-hero {
        min-height: 500px;
    }

    .sector-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 575px) {

    .sector-hero-content {
        padding: 80px 0;
    }

    .sector-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sector-hero-actions .btn {
        width: 100%;
    }

    .sector-area-card {
        padding: 28px;
    }

}


/* =========================================================
   SECTOR VALUE CHAIN
========================================================= */

.sector-value-chain {
    background: #fff;
}

.sector-value-chain h2 {
    max-width: 620px;
    margin-bottom: 1.5rem;
}

.sector-value-chain p {
    max-width: 620px;
    color: #555;
    line-height: 1.8;
}


/* Chain list */

.sector-chain-list {
    position: relative;
    padding-left: 0.5rem;
}

.sector-chain-item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 1.25rem;

    min-height: 76px;

    padding: 1rem 1.25rem;

    background: #f8f8f8;

    border-left: 3px solid #cc0000;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.sector-chain-item:hover {
    transform: translateX(6px);
    background: #fff;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.sector-chain-number {
    flex: 0 0 48px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;

    color: #cc0000;
}

.sector-chain-name {
    font-size: 1.05rem;
    font-weight: 700;

    color: #111;
}

.sector-chain-arrow {
    position: absolute;

    left: 21px;
    bottom: -22px;

    z-index: 2;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.7rem;

    color: #daa520;
}

.sector-chain-item:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .sector-chain-item {
        min-height: 68px;
        padding: 0.85rem 1rem;
    }

    .sector-chain-number {
        flex-basis: 38px;
    }

    .sector-chain-name {
        font-size: 0.95rem;
    }

}