/* ═══════════════════════════════════════════════════════════════════
   Home — Technology Hub Section
   Açık tema, lacivert (--accent-color) ana ton.
   Fütüristik, animasyonlu, 3x2 tab + tek dinamik panel.
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --th-navy: #04415f; /* site --accent-color ile aynı */
    --th-navy-dark: #011e2c; /* site --heading-color */
    --th-navy-soft: #0a6a9a;
    --th-mist: #e9eff4;
    --th-paper: #ffffff;
    --th-line: rgba(4, 65, 95, 0.12);
    --th-shadow: 0 20px 60px -25px rgba(4, 65, 95, 0.35);
    --th-shadow-soft: 0 8px 24px -8px rgba(4, 65, 95, 0.18);
    --th-radius-lg: 22px;
    --th-radius-md: 16px;
    --th-radius-sm: 10px;
}

/* ── SECTION ─────────────────────────────────────────────────────── */
.tech-hub {
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(4, 65, 95, 0.045) 0%, transparent 60%), #f7fafc;
    overflow: hidden;
}

    .tech-hub::before,
    .tech-hub::after {
        content: "";
        position: absolute;
        width: 540px;
        height: 540px;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.35;
        pointer-events: none;
        z-index: 0;
    }

    .tech-hub::before {
        top: -160px;
        left: -180px;
        background: radial-gradient(circle, rgba(10,106,154,0.45), transparent 70%);
    }

    .tech-hub::after {
        bottom: -200px;
        right: -160px;
        background: radial-gradient(circle, rgba(4,65,95,0.35), transparent 70%);
    }

    .tech-hub .container {
        position: relative;
        z-index: 1;
    }

/* ── HEADING ─────────────────────────────────────────────────────── */
.tech-hub__heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.tech-hub__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--th-navy);
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--th-line);
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
}

.tech-hub__title {
    font-family: var(--heading-font);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--th-navy-dark);
    margin: 18px 0 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

    .tech-hub__title span {
        background: linear-gradient(120deg, var(--th-navy) 30%, var(--th-navy-soft) 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.tech-hub__subtitle {
    font-size: 1.02rem;
    color: color-mix(in srgb, var(--th-navy-dark), transparent 30%);
    line-height: 1.65;
    margin: 0;
}

/* ── TABS (3x2 grid) ─────────────────────────────────────────────── */
.tech-hub__tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.tech-hub__tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--th-paper);
    border: 1.5px solid var(--th-line);
    border-radius: var(--th-radius-md);
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.34, 1.25, 0.64, 1), border-color 0.3s ease, box-shadow 0.35s ease, background 0.3s ease;
    overflow: hidden;
    text-align: left;
    font-family: var(--heading-font);
}

    .tech-hub__tab::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(4,65,95,0.04) 0%, transparent 55%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .tech-hub__tab:hover {
        border-color: color-mix(in srgb, var(--th-navy), transparent 50%);
        transform: translateY(-3px);
        box-shadow: var(--th-shadow-soft);
    }

        .tech-hub__tab:hover::before {
            opacity: 1;
        }

    .tech-hub__tab.is-active {
        background: linear-gradient(135deg, var(--th-navy) 0%, var(--th-navy-soft) 100%);
        border-color: var(--th-navy);
        color: #fff;
        box-shadow: 0 16px 40px -12px rgba(4,65,95,0.55);
        transform: translateY(-2px);
    }

        .tech-hub__tab.is-active::before {
            opacity: 0;
        }

.tech-hub__tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(4,65,95,0.08);
    color: var(--th-navy);
    font-size: 1.15rem;
    transition: all 0.35s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.tech-hub__tab.is-active .tech-hub__tab-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.25) inset;
}

.tech-hub__tab-label {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--th-navy-dark);
    line-height: 1.2;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.tech-hub__tab.is-active .tech-hub__tab-label {
    color: #fff;
}

.tech-hub__tab-glow {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.35) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tech-hub__tab.is-active .tech-hub__tab-glow {
    opacity: 1;
}

/* ── STAGE (dinamik panel kapsayıcı) ─────────────────────────────── */
.tech-hub__stage {
    position: relative;
    background: var(--th-paper);
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius-lg);
    box-shadow: var(--th-shadow);
    overflow: hidden;
    min-height: 460px;
}

    /* Dekoratif üst çizgi */
    .tech-hub__stage::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, var(--th-navy) 20%, var(--th-navy-soft) 50%, var(--th-navy) 80%, transparent 100%);
        z-index: 5;
    }

/* ── PANEL ───────────────────────────────────────────────────────── */
.tech-hub__panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 44px 44px;
    align-items: stretch;
    height: 100%;
    opacity: 0;
    animation: none;
}

    .tech-hub__panel.is-active {
        display: grid;
        animation: techHubFadeIn 0.6s cubic-bezier(0.25, 0.9, 0.35, 1) forwards;
    }

@keyframes techHubFadeIn {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── CONTENT (sağ taraf) ─────────────────────────────────────────── */
.tech-hub__content {
    padding: 8px 4px;
    display: grid;
    justify-items: start;
    align-content: center;
    height: 100%;
    min-height: 0;

}

.tech-hub__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(4,65,95,0.08);
    color: var(--th-navy);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

    .tech-hub__badge i {
        font-size: 0.95rem;
    }

.tech-hub__content h3 {
    font-family: var(--heading-font);
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    font-weight: 800;
    color: var(--th-navy-dark);
    margin: 0 0 14px;
    line-height: 1.25;
}

.tech-hub__cta .tx-btn--primary{
    margin-top: 20px;
}

.tech-hub__content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--th-navy-dark), transparent 25%);
    margin: 0 0 20px;
}

.tech-hub__features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 1rem !important;
}

    .tech-hub__features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.94rem;
        color: var(--th-navy-dark);
        font-weight: 500;
    }

    .tech-hub__features i {
        color: var(--th-navy);
        font-size: 1rem;
        flex-shrink: 0;
    }

.tech-hub__cta {
    margin-top: auto;
    align-self: flex-end;
}

    .tech-hub__cta i {
        transition: transform 0.3s ease;
    }

    .tech-hub__cta:hover i {
        transform: translateX(4px);
    }

/* ── VISUAL (sol taraf) ──────────────────────────────────────────── */
.tech-hub__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}

.tech-hub__visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--th-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animasyonlu scan-line efekti — fütüristik his */
.tech-hub__scan-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent 0%, rgba(4,65,95,0.06) 50%, transparent 100%);
    pointer-events: none;
    animation: techHubScan 4.5s linear infinite;
    z-index: 1;
}

@keyframes techHubScan {
    0% {
        transform: translateY(-140px);
    }

    100% {
        transform: translateY(calc(100% + 20px));
    }
}

/* ── AATS görsel (SVG küçültülmüş) ───────────────────────────────── */
.tech-hub__aats-wrap {
    position: relative;
    width: 90%;
    max-width: 380px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tech-hub__aats-wrap .tech-hub-aats-svg {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        overflow: visible;
        animation: techHubFloat 7s ease-in-out infinite;
    }

    /* ── AATS SVG Animasyonu — AATS sayfasındaki sekans ──────────────
   Panel aktif olduğunda (panel.is-active) tetiklenir:
   kamera parçaları -> halkalar -> ikonlar
   Yavaşlatılmış süre (hub için), sonsuz tekrarsız tek sefer oynar. */

    /* Başlangıç: tüm parçalar gizli/kaydırılmış */
    .tech-hub__aats-wrap #ig-cam-top {
        transform: translateY(-55px);
        transform-origin: 366px 180px;
        opacity: 0;
    }

    .tech-hub__aats-wrap #ig-cam-left {
        transform: translateX(-45px) translateY(30px);
        transform-origin: 330px 283px;
        opacity: 0;
    }

    .tech-hub__aats-wrap #ig-cam-right {
        transform: translateX(45px) translateY(30px);
        transform-origin: 400px 283px;
        opacity: 0;
    }

    .tech-hub__aats-wrap #ig-cam-dome {
        transform: scale(0.6);
        transform-origin: 366px 283px;
        opacity: 0;
    }

    .tech-hub__aats-wrap .ig-arc {
        opacity: 0;
    }

    .tech-hub__aats-wrap .ig-icon-group {
        opacity: 0;
    }

    .tech-hub__aats-wrap .ig-from-left {
        transform: translateX(-40px);
    }

    .tech-hub__aats-wrap .ig-from-right {
        transform: translateX( 40px);
    }

/* Panel aktifken animasyon başlar — keyframes ile */
.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-cam-left {
    animation: thAatsCamL 1.0s cubic-bezier(0.34,1.25,0.64,1) 0.14s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-cam-right {
    animation: thAatsCamR 1.0s cubic-bezier(0.34,1.25,0.64,1) 0.14s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-cam-top {
    animation: thAatsCamT 1.05s cubic-bezier(0.34,1.25,0.64,1) 0.42s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-cam-dome {
    animation: thAatsCamD 1.10s cubic-bezier(0.34,1.4,0.64,1) 0.73s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-arc-0 {
    animation: thAatsArc 0.70s ease-out 1.00s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-arc-1 {
    animation: thAatsArc 0.70s ease-out 1.14s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-arc-2 {
    animation: thAatsArc 0.70s ease-out 1.28s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-arc-3 {
    animation: thAatsArc 0.70s ease-out 1.42s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-arc-4 {
    animation: thAatsArc 0.70s ease-out 1.56s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-arc-5 {
    animation: thAatsArc 0.70s ease-out 1.70s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-arc-6 {
    animation: thAatsArc 0.70s ease-out 1.84s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-arc-7 {
    animation: thAatsArc 0.70s ease-out 1.98s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-g-sol-ust {
    animation: thAatsIconL 0.90s cubic-bezier(0.34,1.25,0.64,1) 1.30s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-g-sol-orta-u {
    animation: thAatsIconL 0.90s cubic-bezier(0.34,1.25,0.64,1) 1.58s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-g-sol-orta-a {
    animation: thAatsIconL 0.90s cubic-bezier(0.34,1.25,0.64,1) 1.86s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-g-sol-alt {
    animation: thAatsIconL 0.90s cubic-bezier(0.34,1.25,0.64,1) 2.14s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-g-sag-ust {
    animation: thAatsIconR 0.90s cubic-bezier(0.34,1.25,0.64,1) 1.30s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-g-sag-orta-u {
    animation: thAatsIconR 0.90s cubic-bezier(0.34,1.25,0.64,1) 1.58s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-g-sag-orta-a {
    animation: thAatsIconR 0.90s cubic-bezier(0.34,1.25,0.64,1) 1.86s forwards;
}

.tech-hub__panel[data-tech-panel="aats"].is-animated .tech-hub__aats-wrap #ig-g-sag-alt {
    animation: thAatsIconR 0.90s cubic-bezier(0.34,1.25,0.64,1) 2.14s forwards;
}

@keyframes thAatsCamT {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes thAatsCamL {
    to {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

@keyframes thAatsCamR {
    to {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

@keyframes thAatsCamD {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes thAatsArc {
    to {
        opacity: 1;
    }
}

@keyframes thAatsIconL {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes thAatsIconR {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes techHubFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ── Yolcu Takip — Telefon + 5 Fragment Kart ─────────────────────── */

.tech-hub__pta-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dekoratif glow'lar */
.tech-hub__pta-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.tech-hub__pta-glow--a {
    top: 10%;
    left: 6%;
    background: rgba(10,106,154,0.45);
}

.tech-hub__pta-glow--b {
    bottom: 8%;
    right: 6%;
    background: rgba(4,65,95,0.35);
}

/* Telefon — ortada, "nefes alan" yumuşak yüzme */
.tech-hub__pta-device {
    position: relative;
    width: 32%;
    aspect-ratio: 9 / 19;
    z-index: 3;
    filter: drop-shadow(0 20px 40px rgba(4,65,95,0.35));
    animation: thPtaBreath 5s ease-in-out infinite;
}

.tech-hub__pta-device-base,
.tech-hub__pta-device-frame,
.tech-hub__pta-device-screen {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-hub__pta-device-screen {
    animation: thPtaScreenPulse 3s ease-in-out infinite;
}

/* Telefon hafif nefes alma */
@keyframes thPtaBreath {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-6px) scale(1.015);
    }
}

@keyframes thPtaScreenPulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.92;
    }
}

/* 5 fragment kart */
.tech-hub__pta-card {
    position: absolute;
    width: 28%;
    aspect-ratio: 1 / 1;
    z-index: 4;
    opacity: 0;
    transform: translateX(-140%) scale(0.6);
    filter: drop-shadow(0 10px 24px rgba(4,65,95,0.25));
}

.tech-hub__pta-shape,
.tech-hub__pta-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-hub__pta-ring-outer {
    animation: thPtaSpin 18s linear infinite;
}

.tech-hub__pta-ring-inner {
    animation: thPtaSpin 14s linear infinite reverse;
}

.tech-hub__pta-icon {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    inset: auto;
}

/* 5 kartın yerleşimi — telefonun etrafında dengeli */
.tech-hub__pta-card--1 {
    top: 4%;
    left: 4%;
}

.tech-hub__pta-card--2 {
    top: 28%;
    right: 2%;
}

.tech-hub__pta-card--3 {
    bottom: 30%;
    left: 2%;
}

.tech-hub__pta-card--4 {
    bottom: 6%;
    right: 6%;
}

.tech-hub__pta-card--5 {
    top: 46%;
    left: 50%;
    transform: translateX(-50%) scale(0.6);
}

/* Panel aktifken kartlar soldan sağa iğne gibi sırayla gelir + sonra sürekli nefes alır */
.tech-hub__panel[data-tech-panel="passenger"].is-animated .tech-hub__pta-card--1 {
    animation: thPtaShoot 0.70s cubic-bezier(0.34,1.3,0.64,1) 0.15s forwards, thPtaBreathCard 4s ease-in-out 1.2s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-animated .tech-hub__pta-card--2 {
    animation: thPtaShoot 0.70s cubic-bezier(0.34,1.3,0.64,1) 0.35s forwards, thPtaBreathCard 4s ease-in-out 1.4s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-animated .tech-hub__pta-card--3 {
    animation: thPtaShoot 0.70s cubic-bezier(0.34,1.3,0.64,1) 0.55s forwards, thPtaBreathCard 4s ease-in-out 1.6s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-animated .tech-hub__pta-card--4 {
    animation: thPtaShoot 0.70s cubic-bezier(0.34,1.3,0.64,1) 0.75s forwards, thPtaBreathCard 4s ease-in-out 1.8s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-animated .tech-hub__pta-card--5 {
    animation: thPtaShootCenter 0.70s cubic-bezier(0.34,1.3,0.64,1) 0.95s forwards, thPtaBreathCardCenter 4s ease-in-out 2.0s infinite;
}

/* Kart ring yavaş dönüş */
@keyframes thPtaSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* Soldan sağa iğne gibi gelme */
@keyframes thPtaShoot {
    0% {
        opacity: 0;
        transform: translateX(-140%) scale(0.6);
    }

    70% {
        opacity: 1;
        transform: translateX(8%) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes thPtaShootCenter {
    0% {
        opacity: 0;
        transform: translateX(-200%) scale(0.6);
    }

    70% {
        opacity: 1;
        transform: translateX(-42%) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}
/* Sürekli nefes alma (giriş animasyonundan sonra) */
@keyframes thPtaBreathCard {
    0%, 100% {
        transform: translateX(0) scale(1);
    }

    50% {
        transform: translateX(0) scale(1.06);
    }
}

@keyframes thPtaBreathCardCenter {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.06);
    }
}

/* ── ROTA OPTİMİZASYON GÖRSELİ ────────────────────────────────────── */

.tech-hub__grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(4,65,95,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(4,65,95,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.tech-hub__route-svg {
    position: relative;
    width: 85%;
    height: 85%;
    z-index: 2;
}

.tech-hub__route-main {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: techHubDraw 2.5s ease-out forwards;
    animation-delay: 0.3s;
    filter: drop-shadow(0 2px 4px rgba(4,65,95,0.25));
}

@keyframes techHubDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.tech-hub__route-pulse {
    filter: drop-shadow(0 0 8px rgba(4,65,95,0.6));
}

.tech-hub__route-alt {
    opacity: 0.55;
}

.tech-hub__pin {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: var(--th-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(4,65,95,0.3);
    z-index: 3;
    animation: techHubPinPop 0.45s cubic-bezier(0.34, 1.6, 0.64, 1) forwards;
    transform: scale(0);
    opacity: 0;
}

.tech-hub__pin--1 {
    top: 70%;
    left: 14%;
    animation-delay: 0.6s;
    background: #d63384;
}

.tech-hub__pin--2 {
    left: 33%;
    top: 53%;
    background: rgb(255, 138, 0);
    animation-delay: 1.0s;
}

.tech-hub__pin--3 {
    top: 40%;
    background: rgb(38, 166, 154);
    left: 62%;
    animation-delay: 1.4s;
}

.tech-hub__pin--4 {
    top: 21%;
    right: 14%;
    background: rgb(10, 106, 154);
    animation-delay: 1.8s;
}

@keyframes techHubPinPop {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.tech-hub__route-chip {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px 14px;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius-sm);
    box-shadow: var(--th-shadow-soft);
    backdrop-filter: blur(4px);
    z-index: 4;
    animation: techHubSlideIn 0.5s ease-out 2.2s forwards;
    opacity: 0;
    transform: translateY(8px);
}

@keyframes techHubSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-hub__route-chip-label {
    font-size: 0.68rem;
    color: color-mix(in srgb, var(--th-navy-dark), transparent 40%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-hub__route-chip-value {
    font-size: 1.05rem;
    color: var(--th-navy);
    font-weight: 800;
    line-height: 1;
    margin-top: 2px;
}

/* ── RAPORLAMA GÖRSELİ ───────────────────────────────────────────── */
.tech-hub__visual-inner--report {
    background: linear-gradient(135deg, #f2f6f9 0%, #e3edf3 100%);
    padding: 24px;
}

.tech-hub__kpi {
    position: absolute;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    background: #fff;
    border-radius: var(--th-radius-sm);
    border: 1px solid var(--th-line);
    box-shadow: var(--th-shadow-soft);
    z-index: 3;
    opacity: 0;
    transform: translateY(-10px);
    animation: techHubSlideIn 0.5s ease-out forwards;
}

.tech-hub__kpi--1 {
    top: 18px;
    left: 18px;
    animation-delay: 0.2s;
}

.tech-hub__kpi--2 {
    top: 18px;
    right: 18px;
    animation-delay: 0.4s;
}

.tech-hub__kpi-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--th-navy-dark), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-hub__kpi-ghost,
.tech-hub__kpi-line,
.tech-hub__kpi-chip {
    display: block;
}

.tech-hub__kpi-ghost {
    height: 10px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(4,65,95,0.16), rgba(10,106,154,0.32));
}

.tech-hub__kpi-ghost--wide {
    width: 100%;
}

.tech-hub__kpi-ghost--mid {
    width: 72%;
}

.tech-hub__kpi-ghost--short {
    width: 48%;
}

.tech-hub__kpi-line {
    width: 100%;
    height: 28px;
    margin-top: 10px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(10,106,154,0.20), rgba(38,166,154,0.30));
    position: relative;
    overflow: hidden;
}

.tech-hub__kpi-line::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(4,65,95,0.45), rgba(38,166,154,0.70));
    transform: translateY(-50%) skewX(-20deg);
}

.tech-hub__kpi-line--soft {
    width: 68%;
    height: 8px;
    margin-top: 10px;
}

.tech-hub__kpi-line--soft::after {
    left: 0;
    right: 0;
    background: rgba(4,65,95,0.22);
    transform: translateY(-50%);
}

.tech-hub__kpi-chip {
    width: 54px;
    height: 18px;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(38,166,154,0.20);
    border: 1px solid rgba(38,166,154,0.30);
}

.tech-hub__chart {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 14px 16px;
    background: #fff;
    border-radius: var(--th-radius-md);
    border: 1px solid var(--th-line);
    box-shadow: var(--th-shadow-soft);
    z-index: 3;
    opacity: 0;
    animation: techHubFadeUp 0.6s ease-out 0.6s forwards;
}

@keyframes techHubFadeUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-hub__chart-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--th-navy-dark);
    margin-bottom: 10px;
}

.tech-hub__bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 70px;
}

.tech-hub__bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, var(--th-navy-soft) 0%, var(--th-navy) 100%);
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    animation: techHubBarGrow 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
    transform: scaleY(0);
}

    .tech-hub__bar:nth-child(1) {
        animation-delay: 0.8s;
    }

    .tech-hub__bar:nth-child(2) {
        animation-delay: 0.9s;
    }

    .tech-hub__bar:nth-child(3) {
        animation-delay: 1.0s;
    }

    .tech-hub__bar:nth-child(4) {
        animation-delay: 1.1s;
    }

    .tech-hub__bar:nth-child(5) {
        animation-delay: 1.2s;
    }

    .tech-hub__bar:nth-child(6) {
        animation-delay: 1.3s;
    }

    .tech-hub__bar:nth-child(7) {
        animation-delay: 1.4s;
    }

@keyframes techHubBarGrow {
    to {
        transform: scaleY(1);
    }
}

.tech-hub__trend {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    z-index: 1;
    opacity: 0.55;
}

.tech-hub__trend-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: techHubDraw 2s ease-out 0.5s forwards;
}

/* ── YÖNETİM PANELİ GÖRSELİ ──────────────────────────────────────── */
.tech-hub__visual-inner--management {
    background:
        radial-gradient(circle at 18% 18%, rgba(51, 168, 200, 0.16), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(38, 166, 154, 0.14), transparent 26%),
        linear-gradient(135deg, #eef5f8 0%, #dfeaf0 100%);
    padding: 20px;
}

.tech-hub__dash {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(4, 65, 95, 0.1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 58px rgba(1, 30, 44, 0.14);
    backdrop-filter: blur(14px);
    opacity: 1;
    z-index: 2;
}

.tech-hub__dash-head {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f5f8fa;
    border-bottom: 1px solid var(--th-line);
}

.tech-hub__dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1dce3;
}

    .tech-hub__dash-dot:nth-child(1) {
        background: #ff6058;
    }

    .tech-hub__dash-dot:nth-child(2) {
        background: #ffc229;
    }

    .tech-hub__dash-dot:nth-child(3) {
        background: #28ca42;
    }

.tech-hub__dash-title {
    margin-left: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--th-navy-dark);
}

.tech-hub__dash-body {
    display: grid;
    grid-template-columns: 112px 1fr;
    min-height: 284px;
}

.tech-hub__dash-sidebar {
    background: linear-gradient(180deg, rgba(249,251,252,0.96), rgba(240,247,250,0.92));
    border-right: 1px solid var(--th-line);
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .tech-hub__dash-sidebar span,
    .tech-hub__dash-nav {
        display: flex;
        align-items: center;
        gap: 6px;
        width: 100%;
        padding: 6px 8px;
        border: 0;
        font-size: 0.72rem;
        color: color-mix(in srgb, var(--th-navy-dark), transparent 35%);
        background: transparent;
        border-radius: 6px;
        font: inherit;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
    }

        .tech-hub__dash-sidebar span.active,
        .tech-hub__dash-nav.active,
        .tech-hub__dash-nav:hover {
            background: var(--th-navy);
            color: #fff;
        }

        .tech-hub__dash-nav:hover {
            transform: translateX(2px);
        }

    .tech-hub__dash-sidebar i {
        font-size: 0.85rem;
    }

.tech-hub__dash-main {
    padding: 10px 12px;
    position: relative;
    overflow: hidden;
}

.tech-hub__dash-view {
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: techHubDashViewIn 260ms ease both;
}

    .tech-hub__dash-view[hidden] {
        display: none;
}

.tech-hub__dash-summary {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 8px;
    margin-bottom: 4px;
}

.tech-hub__dash-summary-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(4,65,95,0.08);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(242,247,250,0.82));
    color: inherit;
}

button.tech-hub__dash-summary-card {
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

    button.tech-hub__dash-summary-card:hover {
        border-color: rgba(4,65,95,0.22);
        box-shadow: 0 12px 24px rgba(1, 30, 44, 0.1);
        transform: translateY(-2px);
    }

    button.tech-hub__dash-summary-card:focus-visible,
    .tech-hub__dash-nav:focus-visible {
        outline: 2px solid rgba(51, 168, 200, 0.65);
        outline-offset: 2px;
    }

.tech-hub__dash-summary-label {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(1,30,44,0.52);
}

.tech-hub__dash-mini-bars {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 54px;
}

.tech-hub__dash-mini-bars i {
    width: 12px;
    height: var(--mini-h);
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(180deg, #33a8c8 0%, #04415f 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.tech-hub__dash-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
}

.tech-hub__dash-flow i {
    flex: 1;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(4,65,95,0.14), rgba(38,166,154,0.30));
    position: relative;
}

.tech-hub__dash-flow i::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(4,65,95,0.34);
    border-right: 2px solid rgba(4,65,95,0.34);
    transform: translateY(-50%) rotate(45deg);
}

.tech-hub__dash-flow i:last-child::after {
    display: none;
}

.tech-hub__dash-row {
    display: grid;
    grid-template-columns: 30px 1fr auto 14px;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #f9fbfc;
    font-size: 0.74rem;
    opacity: 1;
}

.tech-hub__dash-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--th-navy), var(--th-navy-soft));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
}

    .tech-hub__dash-avatar i {
        font-size: 0.72rem;
    }

.tech-hub__dash-name {
    font-weight: 700;
    color: var(--th-navy-dark);
}

.tech-hub__dash-role {
    font-size: 0.68rem;
    color: color-mix(in srgb, var(--th-navy-dark), transparent 40%);
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(4,65,95,0.06);
    font-weight: 600;
}

.tech-hub__dash-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1dce3;
    box-shadow: 0 0 0 4px rgba(4,65,95,0.05);
}

    .tech-hub__dash-status.on {
        background: #28ca42;
    }

    .tech-hub__dash-status.off {
        background: #d1dce3;
    }

    .tech-hub__dash-status.soft {
        background: #7ebad2;
    }

.tech-hub__dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

    .tech-hub__dash-kpis span,
    .tech-hub__dash-permissions span {
        padding: 10px;
        border: 1px solid rgba(4,65,95,0.08);
        border-radius: 12px;
        background: rgba(255,255,255,0.72);
    }

    .tech-hub__dash-kpis strong {
        display: block;
        color: var(--th-navy);
        font-size: 1.15rem;
        line-height: 1;
    }

    .tech-hub__dash-kpis small,
    .tech-hub__dash-permissions small {
        display: block;
        margin-top: 4px;
        color: color-mix(in srgb, var(--th-navy-dark), transparent 42%);
        font-size: 0.66rem;
        font-weight: 700;
    }

.tech-hub__dash-table {
    margin-top: 4px;
    border: 1px solid rgba(4,65,95,0.08);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.74);
}

.tech-hub__dash-table-head,
.tech-hub__dash-table-row {
    display: grid;
    grid-template-columns: 1.1fr 0.6fr 1fr 0.8fr;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: 0.68rem;
}

.tech-hub__dash-table-head {
    color: rgba(1,30,44,0.54);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(4,65,95,0.04);
}

.tech-hub__dash-table-row {
    color: var(--th-navy-dark);
    font-weight: 700;
}

    .tech-hub__dash-table-row + .tech-hub__dash-table-row {
        border-top: 1px solid rgba(4,65,95,0.07);
    }

    .tech-hub__dash-table-row i {
        display: block;
        height: 6px;
        border-radius: 999px;
        background: linear-gradient(90deg, #33a8c8 var(--fill), rgba(4,65,95,0.1) var(--fill));
    }

.tech-hub__dash-pill {
    justify-self: start;
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 0.62rem;
}

    .tech-hub__dash-pill.is-ok {
        color: #146c43;
        background: rgba(40,202,66,0.14);
    }

    .tech-hub__dash-pill.is-watch {
        color: #8a5a00;
        background: rgba(255,194,41,0.18);
    }

    .tech-hub__dash-pill.is-soft {
        color: var(--th-navy);
        background: rgba(51,168,200,0.14);
    }

.tech-hub__dash-permissions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

    .tech-hub__dash-permissions span {
        display: grid;
        gap: 6px;
    }

    .tech-hub__dash-permissions i {
        color: var(--th-navy);
        font-size: 1.05rem;
    }

    .tech-hub__dash-permissions strong {
        color: var(--th-navy-dark);
        font-size: 0.78rem;
    }

.tech-hub__dash-settings {
    display: grid;
    gap: 9px;
}

    .tech-hub__dash-settings label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        border: 1px solid rgba(4,65,95,0.08);
        border-radius: 12px;
        background: rgba(255,255,255,0.72);
        color: var(--th-navy-dark);
        font-size: 0.76rem;
        font-weight: 700;
    }

    .tech-hub__dash-settings i {
        width: 34px;
        height: 18px;
        border-radius: 999px;
        background: rgba(4,65,95,0.16);
        position: relative;
    }

        .tech-hub__dash-settings i::after {
            content: "";
            position: absolute;
            top: 3px;
            left: 3px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 2px 5px rgba(1,30,44,0.16);
            transition: transform 180ms ease;
        }

        .tech-hub__dash-settings i.is-on {
            background: var(--th-navy);
        }

        .tech-hub__dash-settings i.is-on::after {
            transform: translateX(16px);
        }

@keyframes techHubDashViewIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── FİLO YÖNETİMİ GÖRSELİ ───────────────────────────────────────── */
.tech-hub__visual-inner--fleet {
    background: linear-gradient(135deg, #ebf2f6 0%, #d8e5ee 100%);
}

.tech-hub__fleet-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--th-navy) 0%, var(--th-navy-soft) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 40px rgba(4,65,95,0.4), 0 0 0 4px rgba(255,255,255,0.5), 0 0 0 5px rgba(4,65,95,0.2);
    animation: techHubPulse 2.5s ease-in-out infinite;
}

    .tech-hub__fleet-core i {
        font-size: 1.6rem;
        line-height: 1;
    }

.tech-hub__fleet-core-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}

@keyframes techHubPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(4,65,95,0.4), 0 0 0 4px rgba(255,255,255,0.5), 0 0 0 5px rgba(4,65,95,0.2);
    }

    50% {
        box-shadow: 0 0 60px rgba(4,65,95,0.6), 0 0 0 4px rgba(255,255,255,0.5), 0 0 0 8px rgba(4,65,95,0.15);
    }
}

.tech-hub__fleet-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1.5px dashed rgba(4,65,95,0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: techHubSpin 30s linear infinite;
}

.tech-hub__fleet-orbit--1 {
    width: 180px;
    height: 180px;
}

.tech-hub__fleet-orbit--2 {
    width: 260px;
    height: 260px;
    animation-duration: 45s;
    animation-direction: reverse;
}

.tech-hub__fleet-orbit--3 {
    width: 340px;
    height: 340px;
    animation-duration: 60s;
}

@keyframes techHubSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.tech-hub__fleet-node {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--th-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(4,65,95,0.25), 0 0 0 1px rgba(4,65,95,0.1);
    z-index: 3;
    animation: techHubFleetBob 3s ease-in-out infinite;
}

    .tech-hub__fleet-node.node-1 {
        top: 20%;
        left: 30%;
        animation-delay: 0s;
    }

    .tech-hub__fleet-node.node-2 {
        top: 18%;
        right: 28%;
        animation-delay: 0.5s;
    }

    .tech-hub__fleet-node.node-3 {
        top: 48%;
        left: 8%;
        animation-delay: 1s;
    }

    .tech-hub__fleet-node.node-4 {
        top: 48%;
        right: 8%;
        animation-delay: 1.5s;
    }

    .tech-hub__fleet-node.node-5 {
        bottom: 18%;
        left: 28%;
        animation-delay: 2s;
    }

    .tech-hub__fleet-node.node-6 {
        bottom: 20%;
        right: 30%;
        animation-delay: 2.5s;
    }

@keyframes techHubFleetBob {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.tech-hub__fleet-stats {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 10px;
    z-index: 4;
}

.tech-hub__fleet-stat {
    padding: 8px 14px;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--th-line);
    border-radius: var(--th-radius-sm);
    box-shadow: var(--th-shadow-soft);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: techHubSlideIn 0.5s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(8px);
}

    .tech-hub__fleet-stat:nth-child(2) {
        animation-delay: 1.2s;
    }

.tech-hub__fleet-stat-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--th-navy);
    line-height: 1;
}

.tech-hub__fleet-stat-label {
    font-size: 0.65rem;
    color: color-mix(in srgb, var(--th-navy-dark), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
    font-weight: 600;
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .tech-hub {
        padding: 70px 0 80px;
    }

    .tech-hub__panel {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 26px;
    }

    .tech-hub__visual {
        max-width: 400px;
    }

    .tech-hub__content {
        text-align: center;
        padding: 0 4px;
        height: auto;
    }

    .tech-hub__features li {
        justify-content: center;
    }

    .tech-hub__cta {
        align-self: center;
        margin-top: 8px;
    }
}

@media (max-width: 767px) {
    .tech-hub__tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .tech-hub__tab {
        padding: 12px 14px;
    }

    .tech-hub__tab-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .tech-hub__tab-label {
        font-size: 0.82rem;
    }

    .tech-hub__panel {
        padding: 22px 18px;
    }

    .tech-hub__content h3 {
        font-size: 1.35rem;
    }

    .tech-hub__visual {
        max-width: 320px;
    }

    .tech-hub__dash-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tech-hub__dash-sidebar {
        flex-direction: row;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid var(--th-line);
    }

    .tech-hub__dash-nav {
        flex: 0 0 auto;
        width: auto;
        white-space: nowrap;
    }

    .tech-hub__dash-kpis,
    .tech-hub__dash-permissions {
        grid-template-columns: 1fr;
    }

    .tech-hub__dash-table-head,
    .tech-hub__dash-table-row {
        grid-template-columns: 1fr 0.5fr 0.8fr;
    }

        .tech-hub__dash-table-head span:last-child,
        .tech-hub__dash-table-row span:last-child {
            display: none;
        }

    .tech-hub__fleet-orbit--3 {
        width: 260px;
        height: 260px;
    }

    .tech-hub__fleet-orbit--2 {
        width: 200px;
        height: 200px;
    }

    .tech-hub__fleet-orbit--1 {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .tech-hub__tabs {
        grid-template-columns: 1fr;
    }

    .tech-hub__title {
        font-size: 1.65rem;
    }
}


/* ==================================
   Technology Hub — delayed viewport-triggered motion
   AATS + Passenger Tracking inline SVG
================================== */

/* AATS başlangıç durumu görünmez kalsın; animasyon JS ile gelen .is-animated üzerinden başlasın */
.tech-hub__panel[data-tech-panel="aats"] .tech-hub__aats-wrap #ig-cam-top,
.tech-hub__panel[data-tech-panel="aats"] .tech-hub__aats-wrap #ig-cam-left,
.tech-hub__panel[data-tech-panel="aats"] .tech-hub__aats-wrap #ig-cam-right,
.tech-hub__panel[data-tech-panel="aats"] .tech-hub__aats-wrap #ig-cam-dome,
.tech-hub__panel[data-tech-panel="aats"] .tech-hub__aats-wrap .ig-arc,
.tech-hub__panel[data-tech-panel="aats"] .tech-hub__aats-wrap .ig-icon-group {
    will-change: transform, opacity;
}


/* ==================================
   Technology Hub — final fixes
================================== */

/* AATS: alt taraftaki gömülü yazıyı kırpmak için sahneyi yukarı al */
.tech-hub__aats-wrap {
    overflow: hidden;
}

    .tech-hub__aats-wrap .tech-hub-aats-svg {
        transform: translateY(-22px) scale(1.03);
        transform-origin: center center;
    }

/* ==================================
   Passenger Tracking — image version
================================== */

.tech-hub__visual-inner--passenger {
    overflow: hidden;
}

.tech-hub__pta-stage {
    width: 100%;
    height: 100%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tech-hub__pta-glow {
    display: none !important;
}

.tech-hub__pta-image-wrap {
    width: min(100%, 390px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-hub__pta-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 18px 34px rgba(4, 65, 95, 0.16));
}

/* Eğer scan-line bu görselin üstünde kötü görünürse kapat */
.tech-hub__panel[data-tech-panel="passenger"] .tech-hub__scan-line {
    display: none;
}

@media (max-width: 991px) {
    .tech-hub__pta-stage {
        padding: 14px;
    }

    .tech-hub__pta-image-wrap {
        width: min(100%, 360px);
    }
}

@media (max-width: 767px) {
    .tech-hub__pta-stage {
        padding: 10px;
    }

    .tech-hub__pta-image-wrap {
        width: min(100%, 320px);
    }
}


/* ==================================
   Technology Hub — Passenger Tracking inline SVG
   Telefon görünür, kartlar soldan sağa oturur
================================== */

.tech-hub__visual-inner--passenger {
    background: none;
    border: none;
    
}

.tech-hub__panel[data-tech-panel="passenger"] .tech-hub__scan-line {
    display: none;
}

.tech-hub__pta-stage {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tech-hub__pta-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(54px);
    opacity: .34;
    pointer-events: none;
}

.tech-hub__pta-glow--a {
    top: 8%;
    left: 6%;
    background: rgba(10, 106, 154, 0.28);
}

.tech-hub__pta-glow--b {
    right: 6%;
    bottom: 8%;
    background: rgba(4, 65, 95, 0.22);
}

.tech-hub__pta-inline-wrap {
    position: relative;
    z-index: 2;
    width: min(100%, 420px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-hub__pta-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    filter: drop-shadow(0 18px 34px rgba(4, 65, 95, 0.14));
}

    .tech-hub__pta-svg #screen {
        transform-box: fill-box;
        transform-origin: center center;
        opacity: 0;
        transform: translateY(54px) rotate(-6.46919deg) scale(.82);
    }

    .tech-hub__pta-svg #grup-3,
    .tech-hub__pta-svg #grup-4,
    .tech-hub__pta-svg #grup-5,
    .tech-hub__pta-svg #grup-6,
    .tech-hub__pta-svg #grup-7 {
        opacity: 0;
        transform-box: fill-box;
        transform-origin: center center;
    }

    .tech-hub__pta-svg #grup-3 {
        transform: translateX(-120px) scale(1.78);
    }

    .tech-hub__pta-svg #grup-4 {
        transform: translateX(-140px) scale(.78);
    }

    .tech-hub__pta-svg #grup-5 {
        transform: translateX(-160px) scale(.78);
    }

    .tech-hub__pta-svg #grup-6 {
        transform: translateX(-180px) scale(.78);
    }

    .tech-hub__pta-svg #grup-7 {
        transform: translateX(-200px) scale(.78);
    }

.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg #screen {
    animation: techHubPassengerPhoneIn 0.92s cubic-bezier(.34, 1.25, .64, 1) .08s both, techHubPassengerPhoneFloat 5.4s ease-in-out 1.2s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg #grup-3 {
    animation: techHubPassengerCardIn 0.78s cubic-bezier(.34, 1.22, .64, 1) .34s both, techHubPassengerCardFloat 4.6s ease-in-out 1.35s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg #grup-4 {
    animation: techHubPassengerCardIn 0.78s cubic-bezier(.34, 1.22, .64, 1) .52s both, techHubPassengerCardFloat 4.8s ease-in-out 1.52s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg #grup-5 {
    animation: techHubPassengerCardIn 0.78s cubic-bezier(.34, 1.22, .64, 1) .70s both, techHubPassengerCardFloat 5s ease-in-out 1.70s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg #grup-6 {
    animation: techHubPassengerCardIn 0.78s cubic-bezier(.34, 1.22, .64, 1) .88s both, techHubPassengerCardFloat 5.2s ease-in-out 1.88s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg #grup-7 {
    animation: techHubPassengerCardIn 0.78s cubic-bezier(.34, 1.22, .64, 1) 1.06s both, techHubPassengerCardFloat 5.4s ease-in-out 2.06s infinite;
}

.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg:hover #screen {
    filter: drop-shadow(0 0 10px rgba(4, 65, 95, 0.10));
}

.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg:hover #grup-3,
.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg:hover #grup-4,
.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg:hover #grup-5,
.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg:hover #grup-6,
.tech-hub__panel[data-tech-panel="passenger"].is-active .tech-hub__pta-svg:hover #grup-7 {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.14));
}

@keyframes techHubPassengerPhoneIn {
    0% {
        opacity: 0;
        transform: translateY(54px) rotate(-6.46919deg) scale(.82);
    }

    68% {
        opacity: 1;
        transform: translateY(-6px) rotate(-6.46919deg) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(-6.46919deg) scale(1);
    }
}

@keyframes techHubPassengerPhoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(-6.46919deg) scale(1);
    }

    50% {
        transform: translateY(-6px) rotate(-6.46919deg) scale(1.01);
    }
}

@keyframes techHubPassengerCardIn {
    0% {
        opacity: 0;
        transform: translateX(-140px) scale(.78);
    }

    72% {
        opacity: 1;
        transform: translateX(8px) scale(1.03);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes techHubPassengerCardFloat {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
    }

    50% {
        transform: translateX(0) translateY(-4px) scale(1.02);
    }
}

@media (max-width: 991px) {
    .tech-hub__pta-stage {
        padding: 14px;
    }

    .tech-hub__pta-inline-wrap {
        width: min(100%, 380px);
    }
}

@media (max-width: 767px) {
    .tech-hub__pta-stage {
        padding: 10px;
    }

    .tech-hub__pta-inline-wrap {
        width: min(100%, 320px);
    }

    .tech-hub__pta-glow {
        width: 180px;
        height: 180px;
        filter: blur(42px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-hub__pta-svg #screen,
    .tech-hub__pta-svg #grup-3,
    .tech-hub__pta-svg #grup-4,
    .tech-hub__pta-svg #grup-5,
    .tech-hub__pta-svg #grup-6,
    .tech-hub__pta-svg #grup-7 {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==================================
   Technology Hub — path label zoom
   Dış grup animasyonda kalır, iç grup büyür
================================== */

.tech-hub__aats-wrap .th-zoomable-group,
.tech-hub__pta-svg .th-zoomable-group {
    cursor: zoom-in;
    pointer-events: all;
}

    .tech-hub__aats-wrap .th-zoomable-group .th-zoom-target,
    .tech-hub__pta-svg .th-zoomable-group .th-zoom-target {
        transform-box: fill-box;
        transform-origin: center center;
        transition: transform .34s cubic-bezier(.34, 1.22, .64, 1), filter .28s ease, opacity .28s ease;
        will-change: transform, filter;
    }

    /* AATS biraz daha güçlü büyüsün */
    .tech-hub__aats-wrap .th-zoomable-group:hover .th-zoom-target,
    .tech-hub__aats-wrap .th-zoomable-group.is-text-zoomed .th-zoom-target {
        transform: scale(2);
        filter: drop-shadow(0 0 10px rgba(4, 65, 95, 0.18));
    }

    /* Yolcu takip daha kontrollü büyüsün */
    .tech-hub__pta-svg .th-zoomable-group:hover .th-zoom-target,
    .tech-hub__pta-svg .th-zoomable-group.is-text-zoomed .th-zoom-target {
        transform: scale(2);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.16));
    }

    /* Hafif bütünsel vurgu */
    .tech-hub__aats-wrap .th-zoomable-group:hover,
    .tech-hub__pta-svg .th-zoomable-group:hover {
        filter: brightness(1.5);
    }

@media (max-width: 767px) {
    .tech-hub__aats-wrap .th-zoomable-group:hover .th-zoom-target,
    .tech-hub__aats-wrap .th-zoomable-group.is-text-zoomed .th-zoom-target {
        transform: scale(2);
    }

    .tech-hub__pta-svg .th-zoomable-group:hover .th-zoom-target,
    .tech-hub__pta-svg .th-zoomable-group.is-text-zoomed .th-zoom-target {
        transform: scale(2);
    }
}

.tech-hub__visual-inner--passenger,
.tech-hub__pta-stage,
.tech-hub__pta-inline-wrap,
.tech-hub__pta-svg {
    overflow: visible !important;
}

    /* Hover büyümesi sınır aşabilsin */
    .tech-hub__pta-svg .th-zoomable-group {
        transform-box: fill-box;
        transform-origin: center center;
        pointer-events: all;
    }

        .tech-hub__pta-svg .th-zoomable-group .th-zoom-target {
            transform-box: fill-box;
            transform-origin: center center;
            transition: transform .34s cubic-bezier(.34, 1.22, .64, 1), filter .28s ease;
            will-change: transform, filter;
        }

        .tech-hub__pta-svg .th-zoomable-group:hover .th-zoom-target,
        .tech-hub__pta-svg .th-zoomable-group.is-text-zoomed .th-zoom-target {
            transform: scale(2);
            filter: drop-shadow(0 10px 20px rgba(4, 65, 95, 0.18));
        }

.tech-hub__aats-wrap,
.tech-hub__aats-wrap .tech-hub-aats-svg,
.tech-hub__visual,
.tech-hub__visual-inner {
    overflow: visible;
}

    .tech-hub__aats-wrap .th-zoomable-group {
        cursor: zoom-in;
    }

    .tech-hub__aats-wrap .th-zoom-anchor {
        transform-box: fill-box;
        transform-origin: center center;
    }

    .tech-hub__aats-wrap .th-zoom-target {
        transform-box: fill-box;
        transform-origin: center center;
        transition: transform .28s cubic-bezier(.34, 1.22, .64, 1), filter .22s ease;
        will-change: transform, filter;
    }

    .tech-hub__aats-wrap .th-zoomable-group:hover .th-zoom-target,
    .tech-hub__aats-wrap .th-zoomable-group.is-text-zoomed .th-zoom-target {
        transform: scale(2);
        filter: drop-shadow(0 10px 18px rgba(4, 65, 95, 0.16));
    }

    .tech-hub__aats-wrap .th-hover-hit {
        fill: transparent;
        pointer-events: all;
    }

    .tech-hub__aats-wrap .th-zoom-anchor,
    .tech-hub__aats-wrap .th-zoom-target {
        pointer-events: none;
    }

    .tech-hub__visual,
    .tech-hub__visual-inner,
    .tech-hub__aats-wrap,
    .tech-hub__aats-wrap .tech-hub-aats-svg {
        overflow: visible !important;
    }

        /* ==================================
   AATS — stable zoom hit areas
================================== */

        .tech-hub__visual,
        .tech-hub__visual-inner,
        .tech-hub__aats-wrap,
        .tech-hub__aats-wrap .tech-hub-aats-svg {
            overflow: visible !important;
        }

            .tech-hub__aats-wrap .th-zoomable-group {
                cursor: zoom-in;
                pointer-events: all;
            }

            .tech-hub__aats-wrap .th-hover-hit {
                fill: transparent;
                pointer-events: all;
            }

            .tech-hub__aats-wrap .th-zoom-anchor,
            .tech-hub__aats-wrap .th-zoom-target {
                pointer-events: none;
            }

            .tech-hub__aats-wrap .th-zoom-anchor {
                transform-box: fill-box;
                transform-origin: center center;
            }

            .tech-hub__aats-wrap .th-zoom-target {
                transform-box: fill-box;
                transform-origin: center center;
                transition: transform .26s cubic-bezier(.34, 1.22, .64, 1), filter .22s ease;
                will-change: transform, filter;
            }

            .tech-hub__aats-wrap .th-zoomable-group:hover .th-zoom-target,
            .tech-hub__aats-wrap .th-zoomable-group.is-text-zoomed .th-zoom-target {
                transform: scale(2);
                filter: drop-shadow(0 10px 18px rgba(4, 65, 95, 0.16));
            }

            /* ==================================
   Technology Hub — V2 visual refresh
   ONLY: route / report / management / fleet
   AATS ve Passenger selector'larına dokunmaz.
   technology-hub.css dosyasının EN ALTINA ekle.
================================== */

/* Ortak: bu 4 görsel artık kendi küçük kartının içinde değil, büyük panelin içinde yaşasın */
.tech-hub__panel:is(
    [data-tech-panel="route"],
    [data-tech-panel="report"],
    [data-tech-panel="management"],
    [data-tech-panel="fleet"]
) .tech-hub__visual {
    max-width: 500px;
    isolation: isolate;
}

.tech-hub__panel:is(
    [data-tech-panel="route"],
    [data-tech-panel="report"],
    [data-tech-panel="management"],
    [data-tech-panel="fleet"]
) .tech-hub__visual-inner {
    overflow: visible;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0;
}

.tech-hub__panel:is(
    [data-tech-panel="route"],
    [data-tech-panel="report"],
    [data-tech-panel="management"],
    [data-tech-panel="fleet"]
) .tech-hub__scan-line {
    opacity: .36;
    mix-blend-mode: multiply;
}

/* ════════════════════════════════════════════════════════════════
   ROTA OPTİMİZASYONU — çoklu rota çizimi
   ════════════════════════════════════════════════════════════════ */
.tech-hub__panel[data-tech-panel="route"] .tech-hub__visual-inner--route {
    min-height: 430px;
    position: relative;
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__visual-inner--route::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 74%, rgba(255, 138, 0, .18), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(38, 166, 154, .18), transparent 27%),
        radial-gradient(circle at 55% 48%, rgba(4, 65, 95, .11), transparent 34%),
        linear-gradient(135deg, rgba(247, 251, 253, .34), rgba(231, 240, 246, .28));
    z-index: 0;
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__visual-inner--route::after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 320'%3E%3Cdefs%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='3.2' result='b'/%3E%3CfeMerge%3E%3CfeMergeNode in='b'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M36 258 C92 205 112 158 166 150 C226 142 250 92 378 54' fill='none' stroke='%2304415f' stroke-width='8' stroke-linecap='round' opacity='.15'/%3E%3Cpath d='M36 258 C92 205 112 158 166 150 C226 142 250 92 378 54' fill='none' stroke='%230A6A9A' stroke-width='4' stroke-linecap='round' filter='url(%23glow)'/%3E%3Cpath d='M52 238 C104 238 126 198 176 200 C238 202 272 176 352 202' fill='none' stroke='%23FF8A00' stroke-width='4' stroke-linecap='round' stroke-dasharray='12 10' filter='url(%23glow)'/%3E%3Cpath d='M76 86 C128 42 178 78 196 124 C224 190 302 116 374 126' fill='none' stroke='%2326A69A' stroke-width='4' stroke-linecap='round' stroke-dasharray='8 8' filter='url(%23glow)'/%3E%3Cpath d='M74 278 C128 282 160 250 198 232 C246 210 288 248 360 248' fill='none' stroke='%23E85D75' stroke-width='3.4' stroke-linecap='round' stroke-dasharray='6 9' opacity='.9'/%3E%3Ccircle cx='36' cy='258' r='8' fill='%2304415f'/%3E%3Ccircle cx='378' cy='54' r='8' fill='%230A6A9A'/%3E%3Ccircle cx='352' cy='202' r='7' fill='%23FF8A00'/%3E%3Ccircle cx='374' cy='126' r='7' fill='%2326A69A'/%3E%3Ccircle cx='360' cy='248' r='6.5' fill='%23E85D75'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: thRouteMapPulseV2 5.8s ease-in-out infinite;
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__grid-bg {
    inset: 16px;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(4,65,95,.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4,65,95,.075) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(circle at center, #000 0 62%, transparent 100%);
    opacity: .8;
    z-index: 1;
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__route-svg {
    width: 94%;
    height: 94%;
    z-index: 3;
    opacity: .62;
    filter: drop-shadow(0 16px 28px rgba(4, 65, 95, .16));
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__route-main {
    stroke-width: 5.5;
    filter: drop-shadow(0 0 12px rgba(10, 106, 154, .38));
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__route-alt {
    stroke: rgba(4, 65, 95, .22);
    stroke-width: 2.4;
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__pin {
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.86);
    box-shadow: 0 16px 28px rgba(4,65,95,.24), 0 0 0 7px rgba(255,255,255,.54);
    transition: transform .28s cubic-bezier(.34, 1.22, .64, 1), box-shadow .25s ease;
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__pin:hover {
    transform: scale(1.16) translateY(-4px);
    box-shadow: 0 20px 38px rgba(4,65,95,.30), 0 0 0 9px rgba(255,255,255,.64);
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__pin--1 { background: #d63384; color: #fff; }
.tech-hub__panel[data-tech-panel="route"] .tech-hub__pin--2 { background: #ff8a00; color: #fff; }
.tech-hub__panel[data-tech-panel="route"] .tech-hub__pin--3 { background: #26a69a; color: #fff; }
.tech-hub__panel[data-tech-panel="route"] .tech-hub__pin--4 { background: #0a6a9a; color: #fff; }

.tech-hub__panel[data-tech-panel="route"] .tech-hub__route-chip {
    right: 8px;
    bottom: 6px;
    padding: 13px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(4,65,95,.12);
    box-shadow: 0 22px 48px rgba(4,65,95,.18);
}

.tech-hub__panel[data-tech-panel="route"] .tech-hub__route-chip::before {
    content: "4 rota karşılaştırıldı";
    display: block;
    margin-bottom: 4px;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(1,30,44,.55);
}

@keyframes thRouteMapPulseV2 {
    0%, 100% { transform: scale(1); opacity: .92; }
    50% { transform: scale(1.025); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════
   GELİŞMİŞ RAPORLAMA — etkileşimli dummy dashboard
   ════════════════════════════════════════════════════════════════ */
.tech-hub__panel[data-tech-panel="report"] .tech-hub__visual-inner--report {
    min-height: 100%;
    padding: 0;
    position: relative;
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__visual-inner--report::before {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(4,65,95,.08);
    color: var(--th-navy-dark);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__kpi {
    min-width: 150px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
    border: 1px solid rgba(4,65,95,.12);
    box-shadow: 0 22px 50px rgba(4,65,95,.16);
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: transform .28s cubic-bezier(.34, 1.22, .64, 1), box-shadow .28s ease, border-color .28s ease;
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__kpi:hover {
    transform: translateY(-10px) scale(1.04);
    border-color: rgba(10,106,154,.34);
    box-shadow: 0 30px 70px rgba(4,65,95,.22);
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__kpi::after {
    position: absolute;
    left: 50%;
    bottom: -42px;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    padding: 8px 11px;
    border-radius: 999px;
    background: #011e2c;
    color: #fff;
    font-size: .68rem;
    font-weight: 750;
    box-shadow: 0 14px 30px rgba(1,30,44,.25);
    transition: opacity .24s ease, transform .24s ease;
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__kpi--1::after { content: "Filtre: araç ve bölge kırılımı"; }
.tech-hub__panel[data-tech-panel="report"] .tech-hub__kpi--2::after { content: "Filtre: zamanında varış trendi"; }

.tech-hub__panel[data-tech-panel="report"] .tech-hub__kpi:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__chart {
    left: 18px;
    right: 18px;
    bottom: 22px;
    padding: 20px 20px 18px;
    border-radius: 26px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(4,65,95,.11);
    box-shadow: 0 28px 70px rgba(4,65,95,.18);
    backdrop-filter: blur(16px);
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__chart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .82rem;
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__chart-title::after {
    padding: 5px 9px;
    border-radius: 999px;
    color: #0a6a9a;
    background: rgba(10,106,154,.09);
    font-size: .63rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__bars {
    height: 120px;
    align-items: flex-end;
    gap: 11px;
    padding-top: 12px;
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar {
    position: relative;
    min-width: 22px;
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, #26a69a 0%, #0a6a9a 58%, #04415f 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 12px 24px rgba(4,65,95,.13);
    cursor: pointer;
    transition: transform .28s cubic-bezier(.34, 1.22, .64, 1), opacity .22s ease, filter .22s ease;
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__bars:hover .tech-hub__bar:not(:hover) {
    opacity: .38;
    filter: grayscale(.35);
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar:hover {
    transform: scaleY(1.08) translateY(-8px);
    filter: saturate(1.2);
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar::after {
    position: absolute;
    left: 50%;
    top: -36px;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    padding: 7px 9px;
    border-radius: 999px;
    background: #011e2c;
    color: #fff;
    font-size: .64rem;
    font-weight: 800;
    white-space: nowrap;
    transition: opacity .22s ease, transform .22s ease;
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar:nth-child(1)::after { content: "Hat A"; }
.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar:nth-child(2)::after { content: "Hat B"; }
.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar:nth-child(3)::after { content: "Hat C"; }
.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar:nth-child(4)::after { content: "Hat D"; }
.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar:nth-child(5)::after { content: "Hat E"; }
.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar:nth-child(6)::after { content: "Hat F"; }
.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar:nth-child(7)::after { content: "Hat G"; }

.tech-hub__panel[data-tech-panel="report"] .tech-hub__bar:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tech-hub__panel[data-tech-panel="report"] .tech-hub__trend {
    width: 82%;
    top: 47%;
    opacity: .32;
    filter: drop-shadow(0 10px 18px rgba(4,65,95,.16));
}

/* ════════════════════════════════════════════════════════════════
   YÖNETİM PANELİ — özet / kullanıcı / yetki / ayarlar hissi
   ════════════════════════════════════════════════════════════════ */
.tech-hub__panel[data-tech-panel="management"] .tech-hub__visual-inner--management {
    min-height: 100%;
    padding: 0;
}

.tech-hub__panel[data-tech-panel="management"] .tech-hub__dash {
    width: min(100%, 440px);
    min-height: 315px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(239,246,250,.76));
    border: 1px solid rgba(4,65,95,.12);
    box-shadow: 0 32px 80px rgba(4,65,95,.20);
}

.tech-hub__panel[data-tech-panel="management"] .tech-hub__dash-head {
    padding: 13px 16px;
    background: linear-gradient(135deg, #011e2c, #04415f);
}

.tech-hub__panel[data-tech-panel="management"] .tech-hub__dash-title {
    color: rgba(255,255,255,.86);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tech-hub__panel[data-tech-panel="management"] .tech-hub__dash-body {
    grid-template-columns: 118px 1fr;
    min-height: 310px;
}

.tech-hub__panel[data-tech-panel="management"] .tech-hub__dash-sidebar {
    padding: 14px 10px;
    background: linear-gradient(180deg, rgba(1,30,44,.045), rgba(10,106,154,.045));
}

.tech-hub__panel[data-tech-panel="management"] .tech-hub__dash-sidebar span {
    position: relative;
    min-height: 34px;
    padding: 8px 9px;
    border-radius: 13px;
    color: rgba(1,30,44,.62);
}

.tech-hub__panel[data-tech-panel="management"] .tech-hub__dash-sidebar span.active {
    color: #fff;
    background: linear-gradient(135deg, #04415f, #0a6a9a);
    box-shadow: 0 12px 22px rgba(4,65,95,.20);
}

.tech-hub__panel[data-tech-panel="management"] .tech-hub__dash-main {
    position: relative;
    padding: 15px;
    overflow: hidden;
}

.tech-hub__panel[data-tech-panel="management"] .tech-hub__dash-row {
    grid-template-columns: 30px 1fr auto 14px;
    padding: 9px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(4,65,95,.07);
}

/* ════════════════════════════════════════════════════════════════
   FİLO YÖNETİMİ — radar değil operasyon/araç yönetim ekranı hissi
   ════════════════════════════════════════════════════════════════ */
.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__visual-inner--fleet {
    min-height: 100%;
    position: relative;
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__visual-inner--fleet::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 32px;
    background:
        linear-gradient(rgba(4,65,95,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4,65,95,.055) 1px, transparent 1px),
        radial-gradient(circle at 28% 26%, rgba(38,166,154,.16), transparent 28%),
        radial-gradient(circle at 76% 70%, rgba(255,138,0,.16), transparent 30%);
    background-size: 28px 28px, 28px 28px, auto, auto;
    z-index: 0;
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__visual-inner--fleet::after {
    content: "Görev Atama  •  Bakım  •  Maliyet";
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 6;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(4,65,95,.10);
    box-shadow: 0 18px 36px rgba(4,65,95,.15);
    color: rgba(1,30,44,.72);
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-core {
    width: 94px;
    height: 94px;
    background: linear-gradient(135deg, #011e2c, #04415f 58%, #26a69a);
    box-shadow: 0 0 46px rgba(4,65,95,.42), 0 0 0 10px rgba(255,255,255,.58), 0 26px 60px rgba(4,65,95,.20);
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-orbit {
    border-style: solid;
    border-color: rgba(4,65,95,.14);
    box-shadow: inset 0 0 30px rgba(10,106,154,.055);
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-orbit--1 { width: 170px; height: 170px; }
.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-orbit--2 { width: 250px; height: 250px; }
.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-orbit--3 { width: 335px; height: 335px; }

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node {
    width: 46px;
    height: 46px;
    background: #fff;
    border: 2px solid rgba(255,255,255,.85);
    box-shadow: 0 16px 32px rgba(4,65,95,.20), 0 0 0 7px rgba(255,255,255,.42);
    cursor: pointer;
    transition: transform .28s cubic-bezier(.34, 1.22, .64, 1), box-shadow .28s ease, background .28s ease, color .28s ease;
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node:hover {
    transform: translateY(-8px) scale(1.18);
    background: #04415f;
    color: #fff;
    box-shadow: 0 22px 44px rgba(4,65,95,.28), 0 0 0 9px rgba(10,106,154,.13);
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node::after {
    position: absolute;
    left: 50%;
    bottom: -42px;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    white-space: nowrap;
    padding: 7px 10px;
    border-radius: 999px;
    background: #011e2c;
    color: #fff;
    font-size: .64rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(1,30,44,.26);
    transition: opacity .22s ease, transform .22s ease;
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node.node-1::after { content: "Serviste • %82 doluluk"; }
.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node.node-2::after { content: "Görev bekliyor"; }
.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node.node-3::after { content: "Bakım planlandı"; }
.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node.node-4::after { content: "Transferde"; }
.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node.node-5::after { content: "Raporlandı"; }
.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node.node-6::after { content: "Yeni görev"; }

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-node:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-stats {
    left: 8px;
    bottom: 4px;
    gap: 12px;
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-stat {
    min-width: 102px;
    padding: 12px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(4,65,95,.10);
    box-shadow: 0 20px 46px rgba(4,65,95,.16);
    transition: transform .26s ease, box-shadow .26s ease;
}

.tech-hub__panel[data-tech-panel="fleet"] .tech-hub__fleet-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(4,65,95,.20);
}

/* Responsive */
@media (max-width: 991px) {
    .tech-hub__stage {
        height: auto;
        min-height: 400px;
    }

    .tech-hub__panel:is([data-tech-panel="route"], [data-tech-panel="report"], [data-tech-panel="management"], [data-tech-panel="fleet"]) .tech-hub__visual-inner {
        min-height: 360px;
    }

    .tech-hub__panel[data-tech-panel="management"] .tech-hub__dash {
        transform: none;
    }
}

@media (max-width: 767px) {
    .tech-hub__stage {
        min-height: 0;
    }

    .tech-hub__panel[data-tech-panel="route"] .tech-hub__visual-inner--route::after {
        inset: 8px;
    }

    .tech-hub__panel[data-tech-panel="report"] .tech-hub__kpi {
        min-width: 120px;
        padding: 13px 14px;
    }

    .tech-hub__panel[data-tech-panel="management"] .tech-hub__dash-body {
        grid-template-columns: 96px 1fr;
    }

    .tech-hub__panel[data-tech-panel="fleet"] .tech-hub__visual-inner--fleet::after {
        display: none;
    }
}
