/* ===== NET / Cybersecurity Page ===== */

/* --- Hero --- */
.net-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, #0a0a1a 0%, #111133 50%, #1a1a4e 100%);
}

.net-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(68, 38, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.net-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(68, 38, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Animated network dots in hero bg */
.net-hero__dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.net-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(155, 138, 255, 0.5);
    box-shadow: 0 0 12px rgba(155, 138, 255, 0.3);
    animation: dotFloat 4s ease-in-out infinite;
}

@keyframes dotFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.4; }
    50% { transform: translateY(-15px) scale(1.4); opacity: 0.8; }
}

.net-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 60px 30px;
    max-width: 55%;
}

.net-hero__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #9b8aff;
    margin-bottom: 20px;
}

.net-hero__title {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.net-hero__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
    text-align: left !important;
}

.net-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero visuals — shield + staggered terminals */
.net-hero__visuals {
    position: relative;
    z-index: 2;
    flex: 0 0 460px;
    max-width: 460px;
    margin-right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.net-hero__shield {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.25) 0%, rgba(68, 38, 255, 0.08) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shieldPulse 3s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(68, 38, 255, 0.2), 0 0 120px rgba(68, 38, 255, 0.08);
}

.net-hero__shield i {
    font-size: 44px;
    color: #9b8aff;
    filter: drop-shadow(0 0 16px rgba(155, 138, 255, 0.5));
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(68, 38, 255, 0.2), 0 0 120px rgba(68, 38, 255, 0.08); }
    50% { transform: scale(1.06); box-shadow: 0 0 80px rgba(68, 38, 255, 0.3), 0 0 160px rgba(68, 38, 255, 0.12); }
}

.net-hero__terminals {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* Staggered card layout */
.net-terminal--mini {
    position: relative;
    transition: transform 0.3s ease, z-index 0s;
}

.net-terminal--mini:nth-child(1) {
    transform: rotate(-1.5deg) translateX(-8px);
    z-index: 3;
}

.net-terminal--mini:nth-child(2) {
    transform: rotate(0.8deg) translateX(12px);
    margin-top: -4px;
    z-index: 2;
}

.net-terminal--mini:nth-child(3) {
    transform: rotate(-0.5deg) translateX(-4px);
    margin-top: -4px;
    z-index: 1;
}

.net-terminal--mini:hover {
    transform: rotate(0deg) translateX(0) scale(1.03);
    z-index: 10;
}

.net-terminal--mini .net-terminal__body {
    padding: 10px 16px;
    min-height: 110px;
}

/* Hero inline nums under buttons */
.net-hero__nums {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.net-hero__num {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
}

.net-hero__num strong {
    color: #fff;
    font-weight: 700;
    margin-right: 4px;
}

/* Terminal base styles */
.net-terminal {
    background: rgba(10, 10, 26, 0.9);
    border: 1px solid rgba(124, 92, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(68, 38, 255, 0.15);
}

.net-terminal__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.net-terminal__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.net-terminal__dot--red { background: #ff5f57; }
.net-terminal__dot--yellow { background: #ffbd2e; }
.net-terminal__dot--green { background: #28c840; }

.net-terminal__dot-title {
    margin-left: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}

.net-terminal__body {
    padding: 20px;
    min-height: 220px;
}

.net-terminal__line {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.t-green { color: #28c840; }
.t-dim { color: rgba(255, 255, 255, 0.4); }

.net-terminal__blink {
    animation: blink 1s step-end infinite;
}

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

/* Przyciski */
.net-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.net-btn--primary {
    background: linear-gradient(135deg, #5a3fff 0%, #7c5cff 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(90, 63, 255, 0.25);
}

.net-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(90, 63, 255, 0.35);
    color: #fff;
    text-decoration: none;
}

.net-btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    background: transparent;
}

.net-btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
}

/* --- Sekcja usług --- */
.net-services {
    padding: 80px 0;
}

.net-section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.net-section-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: #555;
    margin-bottom: 50px;
    text-align: left !important;
    max-width: 800px;
}

.net-service-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    background: #fff;
    transition: all 0.35s ease;
}

.net-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--blue);
}

.net-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(68, 38, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.net-service-card__icon i {
    font-size: 24px;
    color: var(--blue);
}

.net-service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.net-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.net-service-card ul li {
    padding: 7px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.net-service-card ul li:last-child {
    border-bottom: none;
}

.net-service-card ul li i {
    color: var(--blue);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* --- Technologie (tagi) --- */
.net-tech {
    padding: 20px 0 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.net-tech__category {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    margin-top: 28px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(68, 38, 255, 0.1);
}

.net-tech__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.net-tech__tag {
    font-size: 14px;
    color: #000;
    padding: 8px 20px;
    border: 1px solid #000;
    line-height: 2.2;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.net-tech__tag:hover {
    background-color: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* --- Oferta (co możemy zrobić) --- */
.net-offer {
    padding: 80px 0 60px;
}

.net-offer__card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.35s ease;
}

.net-offer__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--blue);
}

.net-offer__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(68, 38, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.net-offer__icon i {
    font-size: 22px;
    color: var(--blue);
}

.net-offer__card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.net-offer__card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    text-align: left !important;
}

/* --- Wyróżniki --- */
.net-stats {
    padding: 60px 0 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.net-stat {
    text-align: center;
    padding: 30px 15px;
}

.net-stat__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(68, 38, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.net-stat__icon i {
    font-size: 20px;
    color: var(--blue);
}

.net-stat__value {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.net-stat__label {
    font-size: 13px;
    color: #888;
    text-align: center !important;
}

/* --- ASI Filharmonia --- */
.net-asi {
    padding: 80px 0;
}

.net-asi__content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.net-asi__text {
    flex: 1;
}

.net-asi__text h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.net-asi__text h2 span {
    color: var(--blue);
}

.net-asi__badge {
    display: inline-block;
    background: rgba(68, 38, 255, 0.08);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 60px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.net-asi__text p {
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    text-align: left !important;
}

.net-asi__details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.net-asi__detail {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(68, 38, 255, 0.05);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.net-asi__detail i {
    color: var(--blue);
    font-size: 14px;
}

.net-asi__ref {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.net-asi__ref:hover {
    border-color: var(--blue);
    color: var(--blue);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(68, 38, 255, 0.1);
}

.net-asi__ref i {
    font-size: 16px;
}

/* ASI — two photos side by side */
.net-asi__images {
    flex: 0 0 45%;
    max-width: 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.net-asi__images img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* --- Lucatel — dark case study --- */
.net-lucatel {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #111133 50%, #1a1a4e 100%);
    border-radius: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.net-lucatel::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(68, 38, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.net-lucatel__badge {
    display: inline-block;
    background: rgba(155, 138, 255, 0.15);
    color: #9b8aff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 60px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.net-lucatel__content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.net-lucatel__text {
    flex: 1;
}

.net-lucatel__text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.net-lucatel__text h2 span {
    color: #9b8aff;
}

.net-lucatel__text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    text-align: left !important;
}

.net-lucatel__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.net-lucatel__badges span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 18px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.net-lucatel__badges span i {
    color: #9b8aff;
}

.net-lucatel__visual {
    flex: 0 0 380px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.net-lucatel__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    transition: all 0.3s ease;
}

.net-lucatel__card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(68, 38, 255, 0.15);
}

.net-lucatel__card i {
    font-size: 24px;
    color: #9b8aff;
    flex-shrink: 0;
}

.net-lucatel__card strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.net-lucatel__card span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

/* --- Portfolio realizacji --- */
.net-portfolio {
    padding: 60px 0;
}

.net-portfolio h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.net-portfolio > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: left !important;
}

.net-portfolio-item {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    height: 100%;
    transition: all 0.35s ease;
}

.net-portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.net-portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.net-portfolio-item:hover img {
    transform: scale(1.05);
}

.net-portfolio-item__body {
    padding: 20px;
}

.net-portfolio-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(68, 38, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.net-portfolio-item__icon i {
    font-size: 16px;
    color: var(--blue);
}

.net-portfolio-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #000;
}

.net-portfolio-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left !important;
}

/* Portfolio icon list */
.net-portfolio-item__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.net-portfolio-item__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.net-portfolio-item__list li:last-child {
    border-bottom: none;
}

.net-portfolio-item__list li i {
    color: var(--blue);
    font-size: 12px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* --- CTA --- */
.net-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, #4426FF 0%, #6a4fff 100%);
    border-radius: 30px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.net-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.net-cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.net-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
    text-align: center !important;
}

.net-cta .net-btn--white {
    background: #fff;
    color: var(--blue);
    padding: 18px 44px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.net-cta .net-btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    color: var(--blue);
    text-decoration: none;
}

/* --- Tooltip --- */
.tooltip-inner {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 0.5rem 0.75rem;
    background-color: var(--blue);
    color: #fff;
    opacity: 1 !important;
    border-radius: 0.5rem;
}

.tooltip {
    --bs-tooltip-opacity: 1 !important;
}

/* --- Naprawa menu Bootstrap --- */
#site-navigation-wrap .dropdown-menu {
    display: block !important;
    float: none;
    position: relative;
    top: auto;
    left: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* --- Responsive 911px --- */
@media screen and (max-width: 911px) {
    .net-hero {
        min-height: auto;
        border-radius: 0px;
        flex-direction: column;
    }

    .net-hero__content {
        padding: 50px 24px 30px;
        max-width: 100%;
    }

    .net-hero__visuals {
        flex: none;
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        padding: 0 20px 20px;
    }

    .net-hero__shield {
        width: 70px;
        height: 70px;
    }

    .net-hero__shield i {
        font-size: 32px;
    }

    .net-terminal--mini:nth-child(1),
    .net-terminal--mini:nth-child(2),
    .net-terminal--mini:nth-child(3) {
        transform: none;
        margin-top: 6px;
    }

    .net-terminal--mini:hover {
        transform: none;
    }

    .net-terminal {
        width: 100%;
    }

    .net-hero__nums {
        gap: 16px;
        margin-top: 24px;
    }

    .net-hero__num {
        font-size: 12px;
    }

    .net-hero__desc {
        font-size: 15px;
    }

    .net-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .net-service-card {
        padding: 30px 24px;
        margin-bottom: 16px;
    }

    .net-service-card h3 {
        font-size: 19px;
    }

    .net-asi__content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .net-asi__images {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .net-asi__images img {
        height: 260px;
        border-radius: 12px;
    }

    .net-offer__card {
        padding: 28px 22px;
    }

    .net-asi__details {
        gap: 8px;
    }

    .net-asi__detail {
        font-size: 12px;
        padding: 6px 12px;
    }

    .net-lucatel {
        border-radius: 16px;
        padding: 50px 0;
    }

    .net-lucatel__content {
        flex-direction: column;
        gap: 30px;
    }

    .net-lucatel__visual {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .net-tech__tag {
        font-size: 12px;
        padding: 6px 14px;
        line-height: 2.8;
    }

    .net-tech__category {
        font-size: 14px;
    }

    .net-cta {
        padding: 50px 20px;
        border-radius: 16px;
        margin: 30px 0;
    }

    .net-cta h2 {
        font-size: 26px;
    }

    .net-portfolio-item img {
        height: 180px;
    }

    .net-section-title {
        font-size: 26px;
    }

    .net-section-subtitle {
        font-size: 15px;
    }

    p {
        font-size: 16px !important;
        text-align: left !important;
    }
}

/* ===== DASHBOARD MONITORINGU SIECI ===== */
.net-dashboard-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #111133 50%, #1a1a4e 100%);
    border-radius: 30px;
    padding: 70px 50px;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.net-dash__badge {
    display: inline-block;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.net-dash__title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 14px;
}

.net-dash__accent {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.net-dash__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Panel główny */
.net-dash__panel {
    background: rgba(10, 10, 26, 0.85);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.net-dash__panel-bar {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.net-dash__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.net-dash__dot--red { background: #ff5f57; }
.net-dash__dot--yellow { background: #ffbd2e; }
.net-dash__dot--green { background: #28c840; }

.net-dash__panel-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-family: 'Courier New', monospace;
    margin-left: 8px;
}

.net-dash__panel-title i {
    color: #60a5fa;
}

.net-dash__live-badge {
    margin-left: auto;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.net-dash__live-dot {
    width: 6px;
    height: 6px;
    background: #f87171;
    border-radius: 50%;
    animation: netLivePulse 1.5s ease-in-out infinite;
}

@keyframes netLivePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.5); }
    50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(248, 113, 113, 0); }
}

.net-dash__panel-body {
    padding: 18px;
}

/* Metryki */
.net-dash__metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.net-dash__metric:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(96, 165, 250, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
}

.net-dash__metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(155, 138, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.net-dash__metric-icon i { font-size: 17px; color: #9b8aff; }
.net-dash__metric-icon--green { background: rgba(52, 211, 153, 0.12); }
.net-dash__metric-icon--green i { color: #34d399; }
.net-dash__metric-icon--blue { background: rgba(96, 165, 250, 0.12); }
.net-dash__metric-icon--blue i { color: #60a5fa; }
.net-dash__metric-icon--amber { background: rgba(251, 191, 36, 0.12); }
.net-dash__metric-icon--amber i { color: #fbbf24; }

.net-dash__metric-value {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.net-dash__metric-value small {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.net-dash__metric-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.net-dash__metric-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.net-dash__metric-bar span {
    display: block;
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease;
}

.net-dash__metric-bar--green { background: #34d399; }
.net-dash__metric-bar--blue { background: #60a5fa; }
.net-dash__metric-bar--purple { background: #9b8aff; }

/* Widgety */
.net-dash__widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
}

.net-dash__widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.net-dash__widget-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.net-dash__widget-title i {
    color: #60a5fa;
    margin-right: 6px;
}

.net-dash__widget-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
}

.net-dash__widget-badge--green {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
}

.net-dash__widget-live {
    display: flex;
    align-items: center;
}

/* Tabela urządzeń */
.net-dash__devices {
    padding: 4px 0;
}

.net-dash__device-head {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
    gap: 8px;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.net-dash__device-head span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.net-dash__device-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
    gap: 8px;
    padding: 9px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
    align-items: center;
}

.net-dash__device-row:last-child {
    border-bottom: none;
}

.net-dash__device-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.net-dash__device-row span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.net-dash__device-row > span:first-child i {
    color: #60a5fa;
    margin-right: 6px;
    font-size: 11px;
}

.net-dash__ip {
    font-family: 'Courier New', monospace;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.35) !important;
}

/* Status online */
.net-dash__status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px !important;
}

.net-dash__status--online {
    color: #34d399 !important;
}

.net-dash__status-dot {
    width: 6px;
    height: 6px;
    background: #34d399;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.net-dash__status-dot--ping {
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.3), 0 0 12px rgba(52, 211, 153, 0.5);
    transform: scale(1.3);
}

/* Traffic bar */
.net-dash__traffic {
    display: flex;
    align-items: center;
    gap: 8px;
}

.net-dash__traffic-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.net-dash__traffic-fill {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #818cf8);
    border-radius: 4px;
    transition: width 1.5s ease;
}

.net-dash__traffic-val {
    font-size: 10px !important;
    color: rgba(255, 255, 255, 0.35) !important;
    font-family: 'Courier New', monospace;
    min-width: 28px;
    text-align: right;
}

/* Wykres ruchu */
.net-dash__chart {
    padding: 14px 16px;
}

.net-dash__svg {
    width: 100%;
    height: 80px;
}

.net-dash__chart-line1 { filter: drop-shadow(0 0 4px rgba(96,165,250,0.3)); }
.net-dash__chart-line2 { filter: drop-shadow(0 0 3px rgba(52,211,153,0.2)); }

.net-dash__chart-pulse,
.net-dash__chart-pulse2 {
    animation: netChartPulse 2s ease-in-out infinite;
}

@keyframes netChartPulse {
    0%, 100% { r: 3; opacity: 1; }
    50% { r: 5; opacity: 0.6; }
}

.net-dash__chart-legend {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.net-dash__chart-legend span {
    font-size: 10px !important;
    color: rgba(255, 255, 255, 0.35) !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.net-dash__legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Feed alertów — stała wysokość */
.net-dash__alerts {
    padding: 8px 0;
    height: 220px;
    overflow: hidden;
}

.net-dash__alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
}

.net-dash__alert:hover {
    background: rgba(255, 255, 255, 0.03);
}

.net-dash__alert--new {
    background: rgba(255, 255, 255, 0.04);
}

.net-dash__alert-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Courier New', monospace;
    min-width: 36px;
}

.net-dash__alert-icon {
    font-size: 12px;
    min-width: 16px;
    text-align: center;
}

.net-dash__alert--success .net-dash__alert-icon { color: #34d399; }
.net-dash__alert--warning .net-dash__alert-icon { color: #fbbf24; }
.net-dash__alert--danger .net-dash__alert-icon { color: #f87171; }
.net-dash__alert--info .net-dash__alert-icon { color: #60a5fa; }

.net-dash__alert-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

/* Footer note */
.net-dash__footer-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    margin-top: 28px;
    margin-bottom: 0;
}

.net-dash__footer-note i {
    color: #34d399;
    margin-right: 4px;
}

/* Wykres: Obciążenie urządzeń (bars) */
.net-dash__bars-chart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 4px;
}

.net-dash__bar-group {
    display: grid;
    grid-template-columns: 56px 1fr 36px;
    align-items: center;
    gap: 10px;
}

.net-dash__bar-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    font-family: 'Courier New', monospace;
}

.net-dash__bar-track {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.net-dash__bar-fill {
    height: 5px;
    border-radius: 4px;
    transition: width 1.2s ease;
}

.net-dash__bar-fill--cpu {
    background: linear-gradient(90deg, #818cf8, #6366f1);
}

.net-dash__bar-fill--ram {
    background: linear-gradient(90deg, #f472b6, #ec4899);
    opacity: 0.7;
}

.net-dash__bar-val {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Courier New', monospace;
    text-align: right;
}

/* Wykres: Zagrożenia (kolumny) */
.net-dash__columns-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    height: 90px;
    padding: 0 4px 22px;
}

.net-dash__col-wrap {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.net-dash__col {
    width: 100%;
    background: linear-gradient(180deg, rgba(248,113,113,0.5) 0%, rgba(248,113,113,0.15) 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1.5s ease, background 0.3s ease;
    min-height: 4px;
}

.net-dash__col:hover {
    background: linear-gradient(180deg, rgba(248,113,113,0.7) 0%, rgba(248,113,113,0.3) 100%);
}

.net-dash__col--today {
    background: linear-gradient(180deg, rgba(96,165,250,0.6) 0%, rgba(96,165,250,0.2) 100%);
}

.net-dash__col--today:hover {
    background: linear-gradient(180deg, rgba(96,165,250,0.8) 0%, rgba(96,165,250,0.35) 100%);
}

.net-dash__col span {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.net-dash__widget-badge--red {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

/* Security summary widget */
.net-dash__security {
    padding: 4px 0;
}

.net-dash__sec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
}

.net-dash__sec-item:last-child {
    border-bottom: none;
}

.net-dash__sec-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.net-dash__sec-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.net-dash__sec-icon--green {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

.net-dash__sec-icon--amber {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.net-dash__sec-icon--red {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}

.net-dash__sec-body {
    flex: 1;
    min-width: 0;
}

.net-dash__sec-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2px;
}

.net-dash__sec-status {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.net-dash__sec-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.net-dash__sec-tag--green {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
}

.net-dash__sec-tag--amber {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* ===== Dashboard mobile ===== */
@media (max-width: 911px) {
    .net-dashboard-section {
        padding: 50px 20px;
        border-radius: 16px;
        margin: 30px 0;
    }

    .net-dash__title {
        font-size: 28px;
    }

    .net-dash__subtitle {
        font-size: 15px;
    }

    .net-dash__panel-body {
        padding: 12px;
    }

    .net-dash__device-head,
    .net-dash__device-row {
        grid-template-columns: 1.5fr 1fr;
    }

    .net-dash__device-head span:nth-child(3),
    .net-dash__device-head span:nth-child(4),
    .net-dash__device-row .net-dash__status,
    .net-dash__device-row .net-dash__traffic {
        display: none;
    }

    .net-dash__metric-value {
        font-size: 24px;
    }

    .net-dash__metric {
        padding: 14px 10px;
    }

    .net-dash__chart {
        padding: 10px;
    }

    .net-dash__svg {
        height: 60px;
    }
}

/* ===== Tech-stack toggle ===== */
.net-tech__more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
}

.net-tech__more--open {
    max-height: 2000px;
    opacity: 1;
}

.net-tech__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 60px;
    background: transparent;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.net-tech__toggle:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(68, 38, 255, 0.04);
}

.net-tech__toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* ===== CTA inline (wewnątrz sekcji) ===== */
.net-cta-inline {
    margin-top: 50px;
    padding: 36px 40px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.net-cta-inline p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.net-cta-inline .net-btn--outline {
    border-color: rgba(0, 0, 0, 0.2);
    color: #000;
}

.net-cta-inline .net-btn--outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(68, 38, 255, 0.05);
}

.net-cta-inline__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== CTA mini (samodzielna sekcja) ===== */
.net-cta-mini {
    margin: 40px 0;
}

.net-cta-mini__content {
    padding: 40px;
    background: linear-gradient(135deg, #0a0a1a 0%, #111133 50%, #1a1a4e 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.net-cta-mini__content::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(68, 38, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.net-cta-mini__content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
    position: relative;
    z-index: 2;
}

.net-cta-mini__content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: left !important;
}

.net-cta-mini__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ===== CTA / inline mobile ===== */
@media (max-width: 911px) {
    .net-cta-inline {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .net-cta-inline p {
        font-size: 16px;
    }

    .net-cta-inline__buttons {
        justify-content: center;
        width: 100%;
    }

    .net-cta-inline__buttons .net-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }

    .net-cta-mini__content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        border-radius: 16px;
    }

    .net-cta-mini__content h3 {
        font-size: 19px;
    }

    .net-cta-mini__actions {
        justify-content: center;
        width: 100%;
    }

    .net-cta-mini__actions .net-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
}
