.sectors-page {
    isolation: isolate;
    overflow-x: clip;
    overflow-y: visible;
    background:
        linear-gradient(180deg, rgba(0, 167, 160, 0.07), transparent 18%),
        linear-gradient(180deg, transparent 36%, rgba(198, 31, 61, 0.05) 78%, transparent 100%);
}

[data-sector-hero-copy],
[data-sector-hero-title] span,
[data-sector-hero-cta] {
    will-change: transform, opacity;
}

.sectors-page:not(.is-sectors-ready) [data-sector-hero-copy],
.sectors-page:not(.is-sectors-ready) [data-sector-hero-title] span,
.sectors-page:not(.is-sectors-ready) [data-sector-hero-cta] {
    opacity: 0;
}

.sectors-hero {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: 100vh;
    padding: 148px 0 80px;
}

.sectors-hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 0;
    width: 100vw;
    transform: translateX(-50%);
    background-image:
        linear-gradient(90deg, rgba(5, 5, 9, 0.2), rgba(5, 5, 9, 0.08)),
        url("/assets/img/sectors_Hero.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    pointer-events: none;
}

.sectors-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.sectors-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    text-align: right;
}

.sectors-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(245, 247, 251, 0.7);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sectors-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary), rgba(255, 255, 255, 0.1));
}

.sectors-hero__title {
    max-width: 1320px;
    margin-top: 22px;
    margin-left: auto;
    color: #fff;
    font-size: clamp(2.45rem, 4.7vw, 4.35rem);
    line-height: 1.06;
    font-weight: 700;
}

.sectors-hero__title span {
    display: block;
}

.sectors-kicker:empty,
.sectors-hero__title span:empty {
    display: none;
}

.sectors-hero__lead {
    max-width: 1120px;
    margin-top: 22px;
    margin-left: auto;
    color: #fff;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.35;
    font-weight: 600;
}

.sectors-hero__text {
    max-width: 1120px;
    margin-top: 18px;
    margin-left: auto;
    color: rgba(245, 247, 251, 0.68);
    font-size: clamp(0.98rem, 1.08vw, 1.12rem);
    line-height: 1.72;
}

.sectors-hero__text:empty {
    display: none;
}

.sectors-hero__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 42px;
}

.sectors-intro {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 104px 0 28px;
}

.sectors-intro__content {
    max-width: none;
}

.sectors-intro h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 3.7rem);
    line-height: 1.08;
    font-weight: 700;
}

.sectors-intro__copy {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.sectors-intro__copy p {
    margin: 0;
    color: rgba(245, 247, 251, 0.72);
    font-size: clamp(0.98rem, 1.08vw, 1.12rem);
    line-height: 1.72;
}

.sectors-story {
    position: relative;
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 88px 0 160px;
}

.sectors-story::before {
    content: "";
    position: absolute;
    inset: 5% -12% auto auto;
    width: 420px;
    height: 420px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(198, 31, 61, 0.14), transparent 68%);
    filter: blur(12px);
}

.sectors-story__grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
    gap: clamp(44px, 6vw, 112px);
    align-items: start;
}

.sectors-story__nav,
.sector-nav {
    position: sticky;
    top: calc(var(--header-height) + 38px);
    align-self: start;
}

.sector-nav {
    position: relative;
    display: grid;
    gap: 2px;
    padding: 10px 0 10px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sector-nav__indicator {
    position: absolute;
    left: -1px;
    top: 10px;
    width: 2px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    box-shadow:
        0 0 18px rgba(0, 167, 160, 0.38),
        0 0 30px rgba(198, 31, 61, 0.14);
    transform: translateY(0);
    will-change: transform, height;
}

.sector-nav__indicator::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 16px rgba(0, 167, 160, 0.72);
    transform: translate(-50%, -50%);
}

.sector-nav__item {
    position: relative;
    display: block;
    width: 100%;
    padding: 18px 0 18px 22px;
    border: 0;
    background: transparent;
    color: rgba(245, 247, 251, 0.58);
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: color 0.26s ease, opacity 0.26s ease, transform 0.26s ease, text-shadow 0.26s ease;
}

.sector-nav__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: rgba(245, 247, 251, 0.34);
    transform: translateY(-50%) scaleX(1);
    transform-origin: left center;
    transition: background-color 0.26s ease, transform 0.26s ease;
}

.sector-nav__item:hover,
.sector-nav__item:focus-visible,
.sector-nav__item.is-active {
    color: #fff;
    opacity: 1;
    outline: none;
}

.sector-nav__item.is-active {
    transform: translateX(4px);
    text-shadow: 0 0 18px rgba(0, 167, 160, 0.18);
}

.sector-nav__item.is-active::before {
    background: rgba(0, 167, 160, 0.92);
    transform: translateY(-50%) scaleX(1.65);
}

.sectors-story__panels {
    display: grid;
    gap: clamp(34px, 5vw, 64px);
}

.sector-panel {
    position: relative;
    display: grid;
    align-content: center;
    min-height: min(620px, 72vh);
    padding: clamp(30px, 4.2vw, 58px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 167, 160, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
    box-shadow: inset 1px 0 0 rgba(0, 167, 160, 0.16);
    opacity: 0.58;
    overflow: hidden;
    transition: border-color 0.24s ease, opacity 0.24s ease, box-shadow 0.24s ease;
}

.sector-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 80% 16%, rgba(0, 167, 160, 0.18), transparent 30%),
        radial-gradient(circle at 20% 86%, rgba(198, 31, 61, 0.1), transparent 30%);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.sector-panel.is-active {
    border-color: rgba(0, 167, 160, 0.46);
    opacity: 1;
    box-shadow: inset 1px 0 0 rgba(0, 167, 160, 0.42), 0 28px 76px rgba(0, 0, 0, 0.28);
}

.sector-panel.is-active::before {
    opacity: 1;
}

.sector-panel[data-sector-panel="finance"] {
    background:
        linear-gradient(90deg, rgba(5, 9, 14, 0.9), rgba(5, 9, 14, 0.68) 46%, rgba(5, 9, 14, 0.88)),
        linear-gradient(180deg, rgba(0, 167, 160, 0.18), rgba(198, 31, 61, 0.08)),
        url("../img/common_CardBackground1.png") center / cover no-repeat;
}

.sector-panel[data-sector-panel="finance"]::before {
    background:
        radial-gradient(circle at 80% 16%, rgba(0, 167, 160, 0.2), transparent 30%),
        radial-gradient(circle at 20% 86%, rgba(198, 31, 61, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(5, 9, 14, 0.1), rgba(5, 9, 14, 0.42));
}

.sector-panel[data-sector-panel="enterprise"] {
    background:
        linear-gradient(90deg, rgba(5, 9, 14, 0.9), rgba(5, 9, 14, 0.66) 48%, rgba(5, 9, 14, 0.88)),
        linear-gradient(180deg, rgba(0, 167, 160, 0.15), rgba(198, 31, 61, 0.09)),
        url("../img/common_CardBackground2.png") center / cover no-repeat;
}

.sector-panel[data-sector-panel="enterprise"]::before {
    background:
        radial-gradient(circle at 78% 18%, rgba(0, 167, 160, 0.18), transparent 32%),
        radial-gradient(circle at 18% 82%, rgba(198, 31, 61, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(5, 9, 14, 0.08), rgba(5, 9, 14, 0.44));
}

.sector-panel[data-sector-panel="public"] {
    background:
        linear-gradient(90deg, rgba(5, 9, 14, 0.9), rgba(5, 9, 14, 0.66) 48%, rgba(5, 9, 14, 0.88)),
        linear-gradient(180deg, rgba(0, 167, 160, 0.15), rgba(198, 31, 61, 0.09)),
        url("../img/home_WhatWeDo.png") center / cover no-repeat;
}

.sector-panel[data-sector-panel="public"]::before {
    background:
        radial-gradient(circle at 78% 18%, rgba(0, 167, 160, 0.18), transparent 32%),
        radial-gradient(circle at 18% 82%, rgba(198, 31, 61, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(5, 9, 14, 0.08), rgba(5, 9, 14, 0.44));
}

.sector-panel[data-sector-panel="education"] {
    background:
        linear-gradient(90deg, rgba(5, 9, 14, 0.9), rgba(5, 9, 14, 0.66) 48%, rgba(5, 9, 14, 0.88)),
        linear-gradient(180deg, rgba(0, 167, 160, 0.15), rgba(198, 31, 61, 0.09)),
        url("../img/common_CardBackground3.png") center / cover no-repeat;
}

.sector-panel[data-sector-panel="education"]::before {
    background:
        radial-gradient(circle at 78% 18%, rgba(0, 167, 160, 0.18), transparent 32%),
        radial-gradient(circle at 18% 82%, rgba(198, 31, 61, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(5, 9, 14, 0.08), rgba(5, 9, 14, 0.44));
}

.sector-panel__content {
    position: relative;
    z-index: 2;
}

.sector-panel__index {
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(0, 167, 160, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.sector-panel h3 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 3.6vw, 3.85rem);
    line-height: 1.02;
    font-weight: 700;
}

.sector-panel__narrative {
    max-width: 900px;
    margin-top: clamp(20px, 2.8vw, 34px);
}

.sector-panel__narrative h4 {
    max-width: 720px;
    margin: 0 0 20px;
    padding: 12px 18px 12px 20px;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    background: linear-gradient(
        90deg,
        rgba(0, 167, 160, 0.13) 0%,
        rgba(0, 167, 160, 0.07) 34%,
        rgba(255, 255, 255, 0.018) 66%,
        transparent 100%
    );
    color: #fff;
    font-size: clamp(1.26rem, 2.16vw, 2.2rem);
    line-height: 1.18;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.sector-panel__narrative p,
.sector-panel__narrative li {
    color: rgba(245, 247, 251, 0.72);
    font-size: clamp(0.98rem, 1.08vw, 1.1rem);
    line-height: 1.7;
}

.sector-panel__narrative p {
    margin: 0;
}

.sector-panel__narrative p + p {
    margin-top: 8px;
}

.sector-panel__narrative ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 18px 0 20px;
    padding: 0;
    list-style: none;
}

.sector-panel__narrative li {
    flex: 0 1 auto;
    min-height: 0;
    padding: 9px 13px;
    border: 1px solid rgba(0, 167, 160, 0.18);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(0, 167, 160, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(5, 9, 14, 0.34);
    color: rgba(245, 247, 251, 0.78);
    font-size: clamp(0.88rem, 0.95vw, 0.98rem);
    line-height: 1.35;
}

.sector-panel__text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 30px;
    margin-top: clamp(24px, 3.2vw, 42px);
}

.sector-panel__text-grid section:first-child {
    grid-column: 1 / -1;
    max-width: 840px;
}

.sector-panel__text-grid span {
    display: block;
    margin-bottom: 11px;
    color: rgba(245, 247, 251, 0.96);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sector-panel__text-grid p {
    margin: 0;
    color: rgba(245, 247, 251, 0.68);
    font-size: 0.98rem;
    line-height: 1.7;
}

.sectors-final-cta {
    position: relative;
    width: min(1320px, calc(100% - 48px));
    margin: 28px auto 64px;
    padding: 40px 72px 46px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), transparent 22%),
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
        radial-gradient(circle at 88% 78%, rgba(0, 167, 160, 0.16), transparent 24%),
        linear-gradient(135deg, #06215B 0%, #071017 52%, #00857f 130%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.sectors-final-cta::after {
    content: none;
}

.sectors-final-cta > * {
    position: relative;
    z-index: 1;
}

.sectors-final-cta > div:first-child {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.sectors-final-cta__rule {
    width: 100%;
    height: 1px;
    margin-top: 24px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 12%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.18) 88%,
        transparent 100%
    );
}

.sectors-final-cta h2 {
    max-width: 760px;
    margin: 0 0 0 auto;
    color: rgba(245, 247, 251, 0.95);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-align: right;
}

.sectors-final-cta p {
    max-width: 780px;
    margin: 18px 0 0 auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.5;
    text-align: right;
}

.sectors-final-cta__actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 14px;
}

.sectors-final-cta .section-cta {
    font-size: 1rem;
}

.sectors-final-cta .section-cta--danger {
    order: 2;
}

.sectors-final-cta .section-cta:hover {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .section-cta,
    .sector-nav__item,
    .sector-nav__item::before,
    .sector-panel,
    .sector-panel::before {
        transition: none;
    }
}

@media (max-width: 1180px) {
    .sectors-hero {
        grid-template-columns: 1fr;
        padding-top: 132px;
    }

    .sectors-story__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sectors-story__nav {
        position: sticky;
        top: var(--header-height);
        z-index: 5;
        margin: 0 -2px;
        padding: 12px 0;
        background: linear-gradient(180deg, rgba(5, 5, 9, 0.96), rgba(5, 5, 9, 0.82));
        backdrop-filter: blur(18px);
    }

    .sector-nav {
        position: static;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 0 2px 8px;
        border-left: 0;
        scrollbar-width: thin;
    }

    .sector-nav__item {
        flex: 0 0 auto;
        padding: 12px 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.035);
        font-size: 0.86rem;
        white-space: nowrap;
    }

    .sector-nav__item::before {
        display: none;
    }

    .sector-nav__indicator {
        display: none;
    }

    .sector-nav__item.is-active {
        border-color: rgba(0, 167, 160, 0.5);
        background: rgba(0, 167, 160, 0.1);
        transform: none;
    }

    .sector-panel {
        min-height: auto;
        padding-block: 34px;
    }

    .sector-panel__text-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {
    .sectors-hero,
    .sectors-intro,
    .sectors-story,
    .sectors-final-cta {
        width: min(100% - 48px, 1320px);
    }

    .sectors-hero {
        padding: 92px 0 60px;
    }

    .sectors-hero__title {
        font-size: clamp(2.45rem, 12vw, 4.2rem);
    }

    .sectors-hero__contact-cta {
        width: 100%;
        justify-content: center;
    }

    .sectors-intro {
        padding: 64px 0 8px;
    }

    .sectors-intro h2 {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .sectors-intro__copy {
        margin-top: 22px;
    }

    .sectors-story {
        padding: 72px 0 104px;
    }

    .sectors-story__grid {
        gap: 26px;
    }

    .sectors-story__nav {
        position: static;
        margin: 0;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .sector-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        overflow: visible;
        padding: 0;
        scrollbar-width: auto;
    }

    .sector-nav__item {
        flex: 1 1 calc(50% - 8px);
        min-height: 48px;
        padding: 11px 12px;
        border-radius: 8px;
        white-space: normal;
        text-align: center;
    }

    .sectors-final-cta {
        margin: 18px auto 40px;
        padding: 28px 24px 36px;
        align-items: flex-start;
        border-radius: 10px;
    }

    .sectors-final-cta > div:first-child,
    .sectors-final-cta h2,
    .sectors-final-cta p {
        margin-left: 0;
        text-align: left;
    }

    .sectors-final-cta .section-cta {
        width: 100%;
        justify-content: center;
    }

    .sectors-final-cta__actions {
        justify-content: stretch;
    }

    .sector-panel {
        min-height: auto;
        padding: 24px 20px 26px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background:
            linear-gradient(180deg, rgba(5, 9, 14, 0.82), rgba(5, 9, 14, 0.9)),
            linear-gradient(135deg, rgba(0, 167, 160, 0.1), rgba(198, 31, 61, 0.07));
        box-shadow: inset 0 1px 0 rgba(0, 167, 160, 0.18);
        opacity: 1;
    }

    .sector-panel.is-active {
        border-color: rgba(0, 167, 160, 0.34);
        box-shadow: inset 0 1px 0 rgba(0, 167, 160, 0.24), 0 16px 42px rgba(0, 0, 0, 0.2);
    }

    .sector-panel::before,
    .sector-panel.is-active::before {
        opacity: 0.42;
    }

    .sector-panel h3 {
        font-size: clamp(1.55rem, 8vw, 2.35rem);
        line-height: 1.1;
    }

    .sector-panel__index {
        margin-bottom: 12px;
    }

    .sector-panel__text-grid {
        gap: 18px;
        margin-top: 22px;
    }

    .sector-panel__text-grid span {
        margin-bottom: 8px;
        font-size: 0.72rem;
    }

    .sector-panel__text-grid p {
        font-size: 0.94rem;
        line-height: 1.62;
    }

}

@media (max-width: 640px) {
    .sectors-hero,
    .sectors-intro,
    .sectors-story,
    .sectors-final-cta {
        width: min(100% - 32px, 1320px);
    }

    .sectors-hero {
        padding: 108px 0 36px;
    }

    .sectors-hero__content {
        text-align: left;
    }

    .sectors-hero__title,
    .sectors-hero__lead,
    .sectors-hero__text {
        margin-left: 0;
    }

    .sectors-hero__actions {
        justify-content: flex-start;
    }

    .sector-nav__item {
        flex-basis: 100%;
    }
}
