/* ============================================================
   Sektör sayfaları
   ============================================================ */

/* ── Hero ── */
.sec-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 74px;
    background: var(--ms-bg);
}
.sec-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.sec-hero__glow {
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    height: 540px;
    background: radial-gradient(closest-side, rgba(186, 0, 19, 0.13), rgba(186, 0, 19, 0) 70%);
}
.sec-hero__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 30%, #000 26%, transparent 74%);
    mask-image: radial-gradient(ellipse 72% 62% at 50% 30%, #000 26%, transparent 74%);
}
.sec-hero__inner {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

/* ── Sektör amblemi (her sektörde yalnızca emoji değişir) ── */
.sec-emblem {
    position: relative;
    width: 94px;
    height: 94px;
    margin: 0 auto 26px;
}
.sec-emblem__tile {
    position: relative;
    z-index: 2;
    width: 94px;
    height: 94px;
    border-radius: 27px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow:
        0 18px 44px rgba(186, 0, 19, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    line-height: 1;
    animation: secFloat 5.2s ease-in-out infinite;
}
.sec-emblem__ring {
    position: absolute;
    inset: -10px;
    border-radius: 34px;
    border: 1.5px dashed rgba(186, 0, 19, 0.28);
    animation: secFloat 5.2s ease-in-out infinite;
}
.sec-emblem__badge {
    position: absolute;
    z-index: 3;
    right: -6px;
    bottom: -6px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--ms-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(186, 0, 19, 0.38);
    border: 3px solid var(--ms-bg);
    animation: secFloat 5.2s ease-in-out infinite;
}
@keyframes secFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

/* ── Yetenek zinciri (her sektörde 4 etiket değişir) ── */
.cap-chain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 5px;
    margin-top: 36px;
}
.cap-node {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    padding: 9px 15px;
    font-family: var(--ms-font-heading);
    font-size: 12.5px;
    font-weight: 600;
    color: #454545;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.18s,
        box-shadow 0.18s;
}
.cap-node:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}
.cap-node .material-symbols-outlined {
    font-size: 16px;
    color: var(--ms-red);
}
.cap-sep {
    width: 18px;
    height: 1.5px;
    background: #e0e0e0;
    border-radius: 2px;
    flex-shrink: 0;
}

@media (max-width: 620px) {
    .cap-sep {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .sec-emblem__tile,
    .sec-emblem__ring,
    .sec-emblem__badge {
        animation: none;
    }
}
