/*

TemplateMo 594 nexus flow

https://templatemo.com/tm-594-nexus-flow

*/

@charset "utf-8";
/* CSS Document */

/* --- Self-hosted webfonts (no CDN). Subsets: latin, latin-ext (PL diacritics), cyrillic (RU). --- */
/* JetBrains Mono (variable file covers 400-700) — used for body text */
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/jetbrains-mono-cyrillic.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* Share Tech Mono (latin only — the only subset published for this face) — used for headings/UI */
@font-face {
    font-family: 'Share Tech Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/share-tech-mono-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    margin: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

/* Screen-reader only — visible to Google / accessibility, hidden visually */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --primary-grey: #e5e7eb;
    --primary-orange: #f97316;
    --primary-purple: #7c3aed;
    --secondary-amber: #fbbf24;
    --dark-bg: #1a0b2e;
    --darker-bg: #0f051a;
    --card-bg: rgba(229, 231, 235, 0.03);
    --border-color: rgba(28, 101, 255, 0.2);
    --text-primary: rgb(255, 255, 255);
    --text-secondary: #a1a1aa;
    --primary-cyan: #00ffff;
    --primary-pink: #ff00ff;
}

body {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    background: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Enhanced Cyberpunk Background */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    overflow: hidden;
    z-index: -5;
}

/* Animated gradient background */
.cyber-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 60% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    animation: gradientRotate 30s linear infinite;
    filter: blur(40px);
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Matrix rain effect */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
}

.matrix-column {
    position: absolute;
    top: -100vh;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--primary-cyan);
    text-shadow: 0 0 5px var(--primary-cyan);
    animation: matrixFall linear infinite;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-cyan) 50%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.matrix-column:nth-child(3n) {
    color: var(--primary-pink);
    text-shadow: 0 0 5px var(--primary-pink);
    background: linear-gradient(to bottom, transparent 0%, var(--primary-pink) 50%, transparent 100%);
}

.matrix-column:nth-child(5n) {
    color: var(--primary-purple);
    text-shadow: 0 0 5px var(--primary-purple);
    background: linear-gradient(to bottom, transparent 0%, var(--primary-purple) 50%, transparent 100%);
}

@keyframes matrixFall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(200vh);
    }
}

/* Animated grid overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-repeat: repeat;
    animation: gridMove 20s linear infinite;
    will-change: background-position;
}

.grid-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 0, 255, 0.03) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 0, 255, 0.03) 2px, transparent 2px);
    background-size: 100px 100px;
    background-repeat: repeat;
    animation: gridMove 20s linear infinite;
    will-change: background-position;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-cyan);
    animation: float 20s infinite;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.particle:nth-child(odd) {
    background: var(--primary-pink);
    box-shadow: 0 0 10px var(--primary-pink);
    animation-duration: 25s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Glowing orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -4;
}

.orb1 {
    width: 300px;
    height: 300px;
    background: var(--primary-cyan);
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: var(--primary-pink);
    bottom: 10%;
    right: -200px;
    animation-delay: 5s;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: var(--primary-purple);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* Scanlines effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.scanlines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 255, 255, 0.03) 50%,
        transparent 100%
    );
    background-size: 100% 4px;
    animation: scanline 8s linear infinite;
}

.scanlines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px);
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Navigation */
/* Tylko gorny pasek (bezposrednie dziecko body) — NIE breadcrumb ani menu mobilne,
   ktore tez sa elementami <nav> i wczesniej dziedziczyly fixed/z-index:10000/tlo */
body > nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 10000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =============================
   Desktop Cyberpunk Language Switcher
============================= */
.language-switcher-wrapper {
    position: relative;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
}

.language-switcher-wrapper .language-switcher-toggle {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border: 1px solid #0ff;
    border-radius: 3px;
    transition: 0.2s all;
    user-select: none;
}

.language-switcher-wrapper .language-switcher-toggle:hover {
    color: #f90;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff inset;
}

.language-switcher-wrapper .language-switcher-list {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    background: rgba(0,0,0,0.8);
    border: 1px solid #0ff;
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 80px;
    animation: fadeIn 0.3s ease forwards;
    z-index: 100;
}

.language-switcher-wrapper .language-switcher-list li {
    list-style: none;
}

.language-switcher-wrapper .language-switcher-list li a {
    display: block;
    padding: 0.4rem 1rem;
    text-decoration: none;
    color: #0ff;
    text-align: center;
    font-size: 0.9rem;
    transition: 0.2s all;
}

.language-switcher-wrapper .language-switcher-list li a:hover {
    color: #f90;
    background: rgba(0,255,255,0.2);
    box-shadow: 0 0 10px #0ff inset, 0 0 10px #0ff;
}

/* Toggle desktop dropdown on click */
.language-switcher-wrapper.active .language-switcher-list {
    display: block;
}

/* =============================
   Mobile Cyberpunk Language Switcher
============================= */
.mobile-language-switcher {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
    animation: neonBlink 1.5s infinite;
    margin: 1rem 0 30px 0;
}

.mobile-language-switcher a {
    text-decoration: none;
    color: #0ff;
    padding: 0.6rem 1rem; /* tylko padding, bez border */
    border-radius: 5px;   /* lekko zaokrąglone dla lepszego efektu */
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
}

.mobile-language-switcher a:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 10px #0ff inset, 0 0 15px #0ff;
    transform: scale(1.05);
}

@keyframes neonBlink {
    0%, 100% { text-shadow: 0 0 5px #0ff; color: #0ff; }
    50% { text-shadow: 0 0 20px #0ff, 0 0 30px #0ff; color: #0ff; }
}

/* Optional: adjust language switcher inside li for mobile menu */
.mobile-menu-nav .mobile-language-switcher-li {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.mobile-menu-nav .mobile-language-switcher a {
    margin: 0 0.3rem;
}

/* ============================= Media Queries ============================ */
@media (max-width: 865px) {
    .language-switcher-wrapper { display: none; } /* hide desktop */
}

@media (min-width: 993px) {
    .mobile-language-switcher { display: none; } /* hide mobile */
}



/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--primary-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.hamburger {
    position: relative;
    width: 25px;
    height: 20px;
    margin: auto;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-cyan);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
    box-shadow: 0 0 5px var(--primary-cyan);
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.mobile-menu-button.active .hamburger span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
    background: var(--primary-orange);
}

.mobile-menu-button.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -25px;
}

.mobile-menu-button.active .hamburger span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
    background: var(--primary-orange);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 78px;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: calc(100vh - 78px);
    background: var(--darker-bg);
    backdrop-filter: blur(20px);
    border-left: 2px solid var(--border-color);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    /* Ukryte: gorny pasek (body > nav, z-index 10000) jest widoczny nad menu i
       pelni role naglowka (logo + X zamykajacy). Wlasny naglowek szuflady dublowal logo. */
    display: none;
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: 0 0 15px var(--primary-cyan);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.mobile-menu-logo::before {
    content: '>';
    margin-right: 0.5rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.mobile-menu-logo::after {
    content: '_';
    animation: blink 1s infinite;
    color: var(--primary-cyan);
}

.mobile-menu-logo:hover {
    text-shadow: 0 0 25px var(--primary-cyan);
    transform: scale(1.05);
}

.mobile-menu-logo:hover::before {
    margin-right: 0.8rem;
    text-shadow: 0 0 10px var(--primary-orange);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--primary-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-orange);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    padding: 0;
    flex-grow: 1;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    margin: 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(229, 231, 235, 0.1);
}

.mobile-menu-nav a:hover {
    color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.05);
    padding-left: 3rem;
    text-shadow: 0 0 10px var(--primary-cyan);
}

.mobile-menu-nav a::before {
    content: '>';
    position: absolute;
    left: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-orange);
}

.mobile-menu-nav a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-nav li:last-child a {
    border-bottom: none;
}

.mobile-menu-cta {
    padding: 2rem;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-color);
}

.cyber-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: var(--darker-bg);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    width: 100%;
    text-align: center;
}

.cyber-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

/* Animation keyframes for mobile menu */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop Navigation Layout */
@media (min-width: 769px) {
    .mobile-menu-button {
        display: none !important;
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .nav-top {
        flex: 0 0 auto;
    }

    .nav-links {
        flex: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 0 2rem;
        max-width: none;
    }

    .nav-links a {
        padding: 0;
        border-bottom: none;
        font-size: 0.9rem;
    }

    .nav-links a:hover {
        background: none;
        transform: none;
        padding-left: 0;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-bottom {
        flex: 0 0 auto;
    }

    .cyber-button {
        width: auto;
        max-width: none;
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px var(--primary-cyan);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 30px var(--primary-cyan);
    transform: scale(1.05);
}

.logo::before {
    content: '>';
    margin-right: 0.5rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.logo:hover::before {
    margin-right: 0.8rem;
    text-shadow: 0 0 10px var(--primary-orange);
}

.logo::after {
    content: '_';
    animation: blink 1s infinite;
    color: var(--primary-cyan);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;

    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-cyan);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 150px 2rem 100px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    cursor: pointer;
    line-height: 1.2;
}

.hero-nexus {
    background: linear-gradient(135deg, var(--primary-cyan), #00ccff);
    background: -webkit-linear-gradient(135deg, var(--primary-cyan), #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
    animation: cyanPulse 3s ease-in-out infinite;
    position: relative;
}

.hero-flow {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    background: -webkit-linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 0.1em;
    display: inline-block;
    transition: all 0.3s ease;
    animation: purplePulse 3s ease-in-out infinite;
    animation-delay: 1.5s;
    position: relative;
}

@keyframes cyanPulse {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
        transform: translateY(0) scale(1);
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
        transform: translateY(-2px) scale(1.01);
    }
}

@keyframes purplePulse {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 15px rgba(255, 0, 255, 0.6));
        transform: translateY(0) scale(1);
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 25px rgba(255, 0, 255, 0.8));
        transform: translateY(-2px) scale(1.01);
    }
}

/* Clean hover effect */
.hero-title:hover .hero-nexus {
    transform: translateX(-3px) scale(1.02);
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(0, 255, 255, 0.9));
}

.hero-title:hover .hero-flow {
    transform: translateX(3px) scale(1.02);
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 0, 255, 0.9));
}

/* Subtle background glow for each word */
.hero-nexus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
    filter: blur(50px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.08) 0%, transparent 60%);
    filter: blur(50px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
    animation-delay: 2s;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Apply animation pause on hover */
.hero-title:hover .hero-nexus,
.hero-title:hover .hero-flow {
    animation-play-state: paused;
}

/* Border animation */
.hero-nexus::after,
.hero-flow::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    transition: width 0.3s ease;
}

.hero-nexus::after {
    background: linear-gradient(90deg, var(--primary-cyan), transparent);
}

.hero-flow::after {
    background: linear-gradient(90deg, transparent, var(--primary-pink));
    left: auto;
    right: 0;
}

.hero-title:hover .hero-nexus::after,
.hero-title:hover .hero-flow::after {
    width: 100%;
}

/* Typing effect for hero text on load */
@keyframes typeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove scanner line for cleaner look */

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.9;
    background: linear-gradient(135deg, var(--text-secondary), var(--primary-grey));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: var(--darker-bg);

    /* layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* sizing */
    padding: 1.2rem 3rem;
    min-height: 56px;
    white-space: nowrap;

    /* typography */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;

    /* visuals */
    border: none;
    position: relative;
    overflow: hidden;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);

    /* motion */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    padding: 1.2rem 3rem;
    border: 2px solid var(--primary-cyan);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: var(--darker-bg);
    box-shadow: 0 0 30px var(--primary-cyan);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    box-shadow: 0 0 20px var(--primary-cyan);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */

.process-intro {
    max-width: 760px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.cooperation-audience {
    max-width: 820px;
    margin: 5rem auto 0;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    opacity: 0.95;
}

.features {
    padding: 120px 1rem;
    position: relative;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: 80px 0.5rem;
    background: rgba(0, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing {
    padding: 120px 1rem;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
}

.pricing-card.featured {
    border-color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.05);
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
    color: var(--darker-bg);
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.plan-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--primary-cyan);
}

.plan-period {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

.plan-features li {
    padding: 1rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.plan-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-size: 0.8rem;
}

/* Experience section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    color: #f5f5f5;
}

.about-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.6rem;
    text-shadow: 0 0 5px #06c3f1,
    0 0 10px #52e5ea,
    0 0 20px #1369ef;
    animation: matrix-flicker 1.5s infinite;
}

@keyframes matrix-flicker {
    0%, 100% {
        opacity: 1;
    }
    10% {
        opacity: 0.8;
    }
    20% {
        opacity: 0.6;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
    60% {
        opacity: 0.6;
    }
    70% {
        opacity: 1;
    }
    80% {
        opacity: 0.75;
    }
    90% {
        opacity: 0.95;
    }
}


.about-block p {
    color: #dcdcdc;
    font-size: 1.05rem;
}

.section-title,
.section-subtitle {
    color: #fff;
}

.section-subtitle {
    opacity: 0.85;
    font-weight: 400;
}

/* Experience section */

/* Contact Section */
.contact {
    padding: 120px 2rem;
    background: rgba(0, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 4rem;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    backdrop-filter: blur(10px);
    clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%2300ffff' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.form-group select option {
    background-color: rgba(0, 0, 0, 0.25);
    color: #fff;
    text-shadow: 0 0 2px rgba(0, 255, 255, 0.5);
}

/* ===== Wlasny dropdown w stylu strony (zastepuje natywna liste selecta) ===== */
.custom-select {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.custom-select__native {
    display: none;
}

.custom-select__trigger {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
    transition: all 0.3s ease;
    user-select: none;
    text-align: left;
}

.custom-select.open .custom-select__trigger,
.custom-select__trigger:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.custom-select__value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select__value.is-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.custom-select__arrow {
    flex-shrink: 0;
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.custom-select.open .custom-select__arrow {
    transform: rotate(180deg);
}

.custom-select__panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 50;
    max-height: 320px;
    overflow-y: auto;
    background: #0d0a1f;
    border: 1px solid var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.custom-select.open .custom-select__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select__group {
    padding: 0.6rem 1.2rem 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--primary-cyan);
    border-bottom: 1px solid rgba(0, 255, 255, 0.12);
    background: rgba(0, 255, 255, 0.04);
}

.custom-select__option {
    padding: 0.85rem 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.custom-select__option:hover {
    background: rgba(0, 255, 255, 0.08);
    color: var(--primary-cyan);
    padding-left: 1.5rem;
}

.custom-select__option.selected {
    background: rgba(0, 255, 255, 0.12);
    color: var(--primary-cyan);
}

.custom-select__panel::-webkit-scrollbar {
    width: 8px;
}

.custom-select__panel::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.3);
    border-radius: 4px;
}


.form-group label {
    display: block;
    color: var(--primary-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px var(--primary-cyan);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 231, 235, 0.4);
}

/* Footer */
.footer {
    padding: 60px 2rem 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
    transform: translateY(-2px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--primary-cyan);
}

.footer-links a:hover::after {
    width: 80%;
}

.footer-separator {
    color: var(--primary-cyan);
    opacity: 0.5;
    font-size: 0.8rem;
    margin: 0 0.2rem;
}

.footer-bottom {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.footer-credit a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--primary-pink);
    text-shadow: 0 0 10px var(--primary-pink);
    text-decoration: underline;
}

.footer-links a.new-link {
    color: var(--primary-cyan);
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 0 5px var(--primary-cyan);
    transition: all 0.3s ease;
    padding: 0 0.5rem;
}

.footer-links a.new-link:hover {
    color: var(--primary-pink);
    text-shadow: 0 0 10px var(--primary-pink);
    transform: translateY(-2px);
}

.footer-links a.new-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--primary-pink);
}

.footer-links a.new-link:hover::after {
    width: 80%;
}

/* Footer info firmowe */
.footer-info {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
}

.footer-info a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-info a:hover {
    color: var(--primary-pink);
    text-shadow: 0 0 10px var(--primary-pink);
}

/* =============================
   Cyberpunk Cookie Banner - Subtle Bottom
============================= */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.85);
    color: #0ff;
    font-family: 'Courier New', monospace;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 0 10px #0ff inset;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: neonPulseSubtle 2s infinite;
}

.cookie-banner p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
    text-shadow: 0 0 3px #0ff inset;
}

.cookie-banner .btn-accept-cookies {
    background: #0ff;
    color: #000;
    font-weight: bold;
    padding: 0.5rem 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-shadow: 0 0 5px #0ff inset;
}

.cookie-banner .btn-accept-cookies:hover {
    box-shadow: 0 0 15px #0ff inset;
    transform: scale(1.05);
    color: #000;
}

/* Delikatne pulsowanie */
@keyframes neonPulseSubtle {
    0%, 100% {
        box-shadow: 0 0 8px #0ff inset;
        text-shadow: 0 0 5px #0ff inset;
    }
    50% {
        box-shadow: 0 0 12px #0ff inset;
        text-shadow: 0 0 8px #0ff inset;
    }
}


/* Popup overlay */
.calculator-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Popup content */
.popup-content {
    background: rgba(0,0,0,0.95);
    border: 2px solid #0ff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    color: #0ff;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 20px #0ff, 0 0 40px #0ff inset;
    animation: neonGlow 1.5s infinite alternate;
    max-width: 400px;
}

/* Popup close button */
.popup-close {
    background: none;
    border: 2px solid #0ff;
    color: #0ff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.popup-close:hover {
    box-shadow: 0 0 15px #0ff;
    transform: scale(1.05);
}

/* Neon glow animation */
@keyframes neonGlow {
    0% { box-shadow: 0 0 10px #0ff, 0 0 20px #0ff inset; }
    50% { box-shadow: 0 0 25px #0ff, 0 0 40px #0ff inset; }
    100% { box-shadow: 0 0 10px #0ff, 0 0 20px #0ff inset; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block !important;
    }

    .nav-links {
        display: none;
    }

    .nav-bottom .cyber-button {
        display: none;
    }

    .hero {
        /* pelna wysokosc ekranu jak na desktopie; tresc wysrodkowana pionowo
           dzieki bazowemu display:flex; align-items:center */
        min-height: 100vh;
        min-height: 100dvh;        /* realna widoczna wysokosc na mobile (bez paska adresu) */
        padding: 90px 1.5rem 50px; /* gora = odstep na pasek nav, reszta zbalansowana */
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    /* Strony tresci (blog / case study) — zwarty naglowek na mobile */
    .content-main {
        padding-top: 72px;            /* tyle ile wysoki jest nav, bez pustego pasa */
    }

    .content-section {
        padding: 28px 16px 48px;      /* mniej miejsca u gory, weższe marginesy boczne */
    }

    .breadcrumb {
        font-size: 0.78rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 2rem;   /* mniejsze niz bazowe 1.2rem 3rem */
        min-height: 48px;       /* bylo 56px */
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    /* Wysrodkowanie przycisku "Umów rozmowę" w formularzu kontaktowym */
    .btn-submit {
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 3rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 3rem 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact {
        padding: 80px 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        padding: 0.5rem 1rem;
    }

    .footer-separator {
        display: none;
    }

    .footer {
        margin-top: 40px;
        padding: 40px 1rem 30px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;          /* pelna szerokosc — strona nie przeswituje z boku */
        max-width: none;
    }

    .mobile-menu-header {
        padding: 1.5rem;
    }

    .mobile-menu-nav a {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .mobile-menu-cta {
        padding: 1.5rem;
    }

    .cyber-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 80px 1rem 40px;   /* min-height:100dvh dziedziczone z bloku ≤768 */
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-nexus, .hero-flow {
        display: block;
        margin: 0;
    }
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* Disable scroll animations on mobile */
@media (max-width: 768px) {
    .fade-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Data streams */
.data-streams {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0;
    animation: dataFlow 3s ease-in-out infinite;
}

.data-stream:nth-child(odd) {
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
    animation-duration: 4s;
}

@keyframes dataFlow {
    0% {
        width: 0;
        opacity: 0;
        transform: translateX(0);
    }
    50% {
        width: 300px;
        opacity: 0.8;
    }
    100% {
        width: 0;
        opacity: 0;
        transform: translateX(100vw);
    }
}

/* Performance optimization for mobile */
@media (max-width: 768px) {
    .matrix-rain {
        display: none;
    }

    .particles {
        opacity: 0.5;
    }

    .particle {
        animation-duration: 30s !important;
    }

    .orb {
        filter: blur(100px);
        opacity: 0.3;
    }

    .scanlines::before {
        animation: none;
        transform: translateY(0);
    }

    .data-streams {
        display: none;
    }

    .noise-overlay {
        display: none;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .cyber-gradient,
    .grid-lines,
    .grid-glow,
    .particle,
    .orb,
    .matrix-column,
    .scanlines::before,
    .data-stream {
        animation: none !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-cyan), var(--primary-pink));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--primary-pink), var(--primary-cyan));
}

/* response messages */
.error-field {
    border: 2px solid #ff0055;
    box-shadow: 0 0 5px #ff0055;
}
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
}
.alert-success {
    background-color: rgba(0, 255, 255, 0.1);
    color: #0ff;
    border: 1px solid #0ff;
}
.alert-danger {
    background-color: rgba(255, 0, 85, 0.1);
    color: #ff0055;
    border: 1px solid #ff0055;
}

/*
* companies
*/
.brands-slider-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.brands-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/Edge */
    scroll-behavior: auto;
}

.brands-slider::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari */
}

.brands-slider.is-dragging {
    cursor: grabbing;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    /* auto-scroll is JS-driven so it can coexist with manual scrolling */
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    color: #ffffff;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;

    opacity: 0.85;
    filter: grayscale(60%) brightness(1.05);
    transition: all 0.4s ease;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.06);
}

.brands-slider-section {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

@media (max-width: 768px) {
    .brands-track {
        gap: 56px;
    }

    .brand-logo {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .brands-track {
        gap: 40px;
    }

    .brand-logo {
        height: 64px;
    }
}

/* Service groups */
.services-group {
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(0, 255, 159, 0.10);
    padding-bottom: 22px;
}

.services-group:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.services-group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 6px 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.services-group-header:hover .services-group-badge {
    background: rgba(0, 255, 159, 0.14);
    border-color: rgba(0, 255, 159, 0.45);
}

.services-group-toggle {
    flex-shrink: 0;
    color: #00ff9f;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.25s ease;
}

.services-group.open .services-group-toggle {
    transform: rotate(45deg);
}

.services-group-body {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}

.services-group.open .services-group-body {
    max-height: 2600px;
    margin-top: 18px;
    opacity: 1;
}

.services-group-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(0, 255, 159, 0.08);
    border: 1px solid rgba(0, 255, 159, 0.25);
    flex-shrink: 0;
}

.services-group-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.services-group-label {
    color: #00ff9f;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    white-space: nowrap;
}

.services-group-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 255, 159, 0.35) 0%, rgba(0, 255, 159, 0) 100%);
}

/* Mobile: dlugie etykiety badge nie moga wystawac poza ekran */
@media (max-width: 768px) {
    .services-group-badge {
        flex-shrink: 1;          /* badge moze sie zwezic */
    }

    .services-group-label {
        white-space: normal;     /* tekst zawija sie zamiast wystawac */
        line-height: 1.3;
        letter-spacing: 1px;
        font-size: 0.8rem;
    }
}

.services-group-subtitle {
    color: #b8c5d6;
    font-size: 1rem;
    margin: 0 0 28px;
    opacity: 0.85;
    padding-left: 4px;
}

/* Services grid — 4 columns desktop, smaller cards */
.services-group .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.services-group .feature-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
}

.services-group .feature-card h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.services-group .feature-card p {
    font-size: 0.9rem;
    line-height: 1.55;
}

.services-group .feature-card .feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 159, 0.18) 0%, rgba(124, 92, 255, 0.18) 100%);
    border: 1px solid rgba(0, 255, 159, 0.25);
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(0, 255, 159, 0.08);
}

@media (max-width: 1200px) {
    .services-group .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .services-group .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-group .features-grid {
        grid-template-columns: 1fr;
    }
}

.services-group--build .feature-card .feature-icon {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.22) 0%, rgba(124, 92, 255, 0.22) 100%);
    border-color: rgba(96, 165, 250, 0.35);
}

.services-group--ai .feature-card .feature-icon {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.22) 0%, rgba(168, 85, 247, 0.22) 100%);
    border-color: rgba(244, 114, 182, 0.35);
}

.services-group--data .feature-card .feature-icon {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.22) 0%, rgba(45, 212, 191, 0.22) 100%);
    border-color: rgba(34, 211, 238, 0.35);
}

.services-group--ops .feature-card .feature-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.22) 0%, rgba(239, 68, 68, 0.22) 100%);
    border-color: rgba(251, 146, 60, 0.35);
}

.services-group--consulting .feature-card .feature-icon {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.22) 0%, rgba(34, 197, 94, 0.22) 100%);
    border-color: rgba(132, 204, 22, 0.35);
}

/* Inline Tabler SVG icons inside service tiles (color inherits via currentColor) */
.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.75;
    display: block;
}

.services-group--build .feature-card .feature-icon { color: #93c5fd; }
.services-group--ai .feature-card .feature-icon { color: #f9a8d4; }
.services-group--data .feature-card .feature-icon { color: #67e8f9; }
.services-group--ops .feature-card .feature-icon { color: #fdba74; }
.services-group--consulting .feature-card .feature-icon { color: #bef264; }

.services-group-icon {
    display: inline-flex;
    color: #00ff9f;
}
.services-group-icon svg {
    width: 18px;
    height: 18px;
}

.feature-card p {
    flex: 1;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    margin-top: 18px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #ff6ec7;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.feature-link:hover {
    color: #ff9ad8;
    gap: 10px;
}

.feature-link-arrow {
    transition: transform 0.25s ease;
}

.feature-link:hover .feature-link-arrow {
    transform: translateX(2px);
}

.feature-card.open .feature-link .feature-link-arrow {
    transform: rotate(90deg);
}

/* Service detail panel — revealed by "Learn more" (price + included + contact CTA) */
.feature-detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.35s ease;
}

.feature-card.open .feature-detail {
    max-height: 600px;
    opacity: 1;
    margin-top: 16px;
}

.feature-detail-rule {
    height: 1px;
    background: linear-gradient(90deg,
        rgba(0, 255, 159, 0.45) 0%,
        rgba(124, 92, 255, 0.15) 55%,
        rgba(0, 255, 159, 0) 100%);
    margin-bottom: 14px;
}

.feature-detail-price {
    color: var(--secondary-amber, #fbbf24);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
}

.feature-detail-period {
    margin-top: 4px;
    color: #b8c5d6;
    font-size: 0.82rem;
    font-style: italic;
}

.feature-detail-label {
    margin: 16px 0 8px;
    color: rgba(255, 110, 199, 0.85);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.feature-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.feature-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #d6e8ff;
    font-size: 0.85rem;
    line-height: 1.45;
}

.feature-detail-bullet {
    color: #00ff9f;
    margin-top: 1px;
}

.feature-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 9px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 255, 159, 0.14) 0%, rgba(124, 92, 255, 0.14) 100%);
    border: 1px solid rgba(0, 255, 159, 0.45);
    color: #eafff6;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-detail-cta:hover {
    background: linear-gradient(135deg, rgba(0, 255, 159, 0.24) 0%, rgba(124, 92, 255, 0.24) 100%);
    box-shadow: 0 0 20px rgba(0, 255, 159, 0.22);
    transform: translateX(3px);
}

/* CTA block at the end of services */
.services-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding: 28px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.12) 0%, rgba(255, 110, 199, 0.10) 100%);
    border: 1px solid rgba(124, 92, 255, 0.30);
    box-shadow: 0 8px 32px rgba(124, 92, 255, 0.12);
}

.services-cta-icon {
    font-size: 2.4rem;
    line-height: 1;
    flex-shrink: 0;
    display: inline-flex;
    color: #c4b5fd;
}
.services-cta-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.75;
}

.services-cta-content {
    flex: 1;
}

.services-cta-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.services-cta-body {
    color: #b8c5d6;
    font-size: 0.95rem;
    margin: 0;
}

.services-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00ff9f 0%, #7c5cff 100%);
    color: #0a0a0f;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}

.services-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 255, 159, 0.25);
}

@media (max-width: 768px) {
    .services-group-header {
        flex-wrap: wrap;
    }

    .services-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .hero-container {
            margin: 150px auto;
    }
}

/* =====================================================
   Case studies bridge CTA (before contact)
   ===================================================== */

.case-studies-bridge {
    padding: 40px 20px;
}

.case-bridge-container {
    max-width: 1100px;
    margin: 0 auto;
}

.case-bridge-box {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.06) 0%, rgba(255, 0, 255, 0.08) 100%);
    border: 1px solid rgba(0, 255, 255, 0.30);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.06);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.case-bridge-box:hover {
    border-color: rgba(0, 255, 255, 0.50);
    box-shadow: 0 8px 36px rgba(0, 255, 255, 0.12), 0 0 24px rgba(255, 0, 255, 0.10);
}

.case-bridge-glyph {
    font-size: 2.8rem;
    line-height: 1;
    color: var(--primary-cyan);
    text-shadow: 0 0 14px rgba(0, 255, 255, 0.55);
    flex-shrink: 0;
}

.case-bridge-content {
    flex: 1;
}

.case-bridge-meta {
    margin-bottom: 6px;
}

.case-bridge-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 0, 255, 0.15);
    color: var(--primary-pink);
    border: 1px solid rgba(255, 0, 255, 0.30);
    border-radius: 999px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.case-bridge-title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.case-bridge-body {
    color: #b8c5d6;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.55;
}

.case-bridge-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-pink) 100%);
    color: #0a0a0f;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s, box-shadow 0.25s;
    flex-shrink: 0;
}

.case-bridge-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .case-bridge-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 22px;
        gap: 18px;
    }
}

/* =====================================================
   FAQ section
   ===================================================== */

.faq {
    padding: 80px 20px;
}

.faq-list {
    max-width: 920px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid rgba(0, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(15, 5, 26, 0.40);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(0, 255, 255, 0.35);
}

.faq-item.open {
    border-color: rgba(0, 255, 255, 0.50);
    box-shadow: 0 0 24px rgba(0, 255, 255, 0.10);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--primary-cyan);
    font-family: 'Share Tech Mono', 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
}

.faq-question:hover {
    background: rgba(0, 255, 255, 0.04);
}

.faq-q-num {
    color: var(--primary-pink);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.faq-q-text {
    flex: 1;
    color: #d6e8ff;
}

.faq-q-toggle {
    color: var(--primary-cyan);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-item.open .faq-q-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 6px 22px 22px;
}

.faq-answer p {
    margin: 0;
    color: #b8c5d6;
    line-height: 1.65;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 0.92rem;
        padding: 14px 16px;
    }
    .faq-item.open .faq-answer {
        padding: 4px 16px 18px;
    }
}

/* =====================================================
   PIP-BOY pricing
   ===================================================== */

.pricing .pipboy-frame {
    margin-top: 30px;
    background: rgba(15, 5, 26, 0.65);
    border: 1px solid rgba(0, 255, 255, 0.30);
    border-radius: 8px;
    box-shadow:
        0 0 0 1px rgba(0, 255, 255, 0.06) inset,
        0 0 40px rgba(0, 255, 255, 0.08),
        0 0 80px rgba(124, 58, 237, 0.06);
    font-family: 'Share Tech Mono', 'JetBrains Mono', 'Consolas', 'Courier New', monospace;
    color: var(--primary-cyan);
    position: relative;
    overflow: hidden;
}

.pricing .pipboy-frame::before {
    /* subtle scanlines */
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 255, 255, 0.035) 0px,
        rgba(0, 255, 255, 0.035) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 1;
}

.pricing .pipboy-frame > * {
    position: relative;
    z-index: 2;
}

/* TABS */
.pricing .pipboy-tabs {
    display: flex;
    gap: 4px;
    padding: 14px 18px 0;
}

.pricing .pipboy-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.22);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    color: rgba(0, 255, 255, 0.55);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing .pipboy-tab:hover {
    color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.05);
}

.pricing .pipboy-tab.active {
    background: rgba(0, 255, 255, 0.08);
    color: var(--primary-cyan);
    border-color: rgba(0, 255, 255, 0.50);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.55);
}

.pricing .pipboy-tab-marker {
    color: var(--primary-cyan);
    opacity: 0;
    transition: opacity 0.2s;
}

.pricing .pipboy-tab.active .pipboy-tab-marker {
    opacity: 1;
    animation: pipboy-blink 1.2s steps(2, end) infinite;
}

.pricing .pipboy-divider {
    height: 1px;
    background: linear-gradient(90deg,
        rgba(0, 255, 255, 0) 0%,
        rgba(0, 255, 255, 0.40) 20%,
        rgba(255, 0, 255, 0.25) 50%,
        rgba(0, 255, 255, 0.40) 80%,
        rgba(0, 255, 255, 0) 100%);
    margin: 0;
}

/* BODY */
.pricing .pipboy-body {
    padding: 16px 18px;
}

.pricing .pipboy-pane {
    display: none;
}

.pricing .pipboy-pane.active {
    display: block;
}

/* ACCORDION LIST */
.pricing .pipboy-acc-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* STATIC PRICE ROWS — flat terminal list (odróżnia cennik od accordionu Usług) */
.pricing .pipboy-row {
    padding: 16px 14px 18px;
    border-bottom: 1px dashed rgba(0, 255, 255, 0.15);
}
.pricing .pipboy-row:last-child {
    border-bottom: none;
}
.pricing .pipboy-row.is-featured {
    background: rgba(0, 255, 255, 0.05);
    box-shadow: inset 3px 0 0 var(--primary-cyan);
}
.pricing .pipboy-row-head {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-cyan);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.pricing .pipboy-cursor-static {
    flex-shrink: 0;
    width: 14px;
    color: rgba(0, 255, 255, 0.55);
    font-size: 0.85rem;
}
.pricing .pipboy-row-title {
    flex: 1;
}
.pricing .pipboy-row-price {
    margin-left: 12px;
    color: var(--secondary-amber);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
    font-weight: 700;
    letter-spacing: 0.8px;
    white-space: nowrap;
}
.pricing .pipboy-row-meta {
    margin: 8px 0 14px 26px;
    color: rgba(0, 255, 255, 0.78);
    font-size: 0.85rem;
    font-style: italic;
}
.pricing .pipboy-row .pipboy-btn {
    margin-left: 26px;
}
@media (max-width: 720px) {
    .pricing .pipboy-row-head {
        flex-wrap: wrap;
    }
    .pricing .pipboy-row-price {
        margin-left: 26px;
    }
    .pricing .pipboy-row-meta,
    .pricing .pipboy-row .pipboy-btn {
        margin-left: 0;
    }
}

.pricing .pipboy-acc-item {
    border-bottom: 1px dashed rgba(0, 255, 255, 0.15);
}

.pricing .pipboy-acc-item:last-child {
    border-bottom: none;
}

.pricing .pipboy-acc-head {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 14px;
    background: transparent;
    border: none;
    color: rgba(0, 255, 255, 0.78);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s ease;
}

.pricing .pipboy-acc-head:hover {
    color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.05);
}

.pricing .pipboy-acc-item.open .pipboy-acc-head {
    color: var(--primary-cyan);
    background: rgba(0, 255, 255, 0.07);
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.55);
    box-shadow: inset 3px 0 0 var(--primary-cyan);
}

.pricing .pipboy-cursor {
    opacity: 0;
    color: var(--primary-cyan);
    transition: opacity 0.15s, transform 0.15s;
    font-size: 0.85rem;
    width: 14px;
    display: inline-block;
}

.pricing .pipboy-acc-head:hover .pipboy-cursor,
.pricing .pipboy-acc-item.open .pipboy-cursor {
    opacity: 1;
}

.pricing .pipboy-acc-item.open .pipboy-cursor {
    transform: rotate(90deg);
}

.pricing .pipboy-star {
    color: var(--secondary-amber);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.70);
    font-size: 0.85rem;
}

.pricing .pipboy-acc-title {
    flex: 1;
}

.pricing .pipboy-acc-price {
    color: var(--secondary-amber);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
    font-weight: 700;
    letter-spacing: 0.8px;
    white-space: nowrap;
    margin-left: 12px;
}

.pricing .pipboy-acc-toggle {
    color: rgba(0, 255, 255, 0.55);
    font-weight: 700;
    margin-left: 8px;
    min-width: 30px;
    text-align: center;
}

.pricing .pipboy-acc-item.open .pipboy-acc-toggle-sign::before {
    content: '−';
}

.pricing .pipboy-acc-item.open .pipboy-acc-toggle-sign {
    font-size: 1em;
}

.pricing .pipboy-acc-item.open .pipboy-acc-toggle-sign {
    display: inline-block;
    width: 1ch;
}

.pricing .pipboy-acc-item.open .pipboy-acc-toggle-sign::before {
    display: inline-block;
}

/* hide original + when open by replacing visually */
.pricing .pipboy-acc-item.open .pipboy-acc-toggle-sign {
    color: transparent;
    position: relative;
}

.pricing .pipboy-acc-item.open .pipboy-acc-toggle-sign::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
}

/* ACCORDION BODY (collapsed by default, expands when .open) */
.pricing .pipboy-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 14px 0 38px;
}

.pricing .pipboy-acc-item.open .pipboy-acc-body {
    max-height: 800px;
    padding: 4px 14px 22px 38px;
}

.pricing .pipboy-acc-rule {
    height: 1px;
    background: linear-gradient(90deg,
        rgba(0, 255, 255, 0.45) 0%,
        rgba(255, 0, 255, 0.15) 50%,
        rgba(0, 255, 255, 0) 100%);
    margin-bottom: 14px;
}

.pricing .pipboy-detail-summary {
    color: rgba(0, 255, 255, 0.78);
    font-size: 0.85rem;
    margin-bottom: 22px;
    font-style: italic;
}

.pricing .pipboy-detail-section-label {
    color: rgba(255, 0, 255, 0.65);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pricing .pipboy-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing .pipboy-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d6e8ff;
    font-size: 0.92rem;
    line-height: 1.45;
    font-family: 'Share Tech Mono', 'JetBrains Mono', 'Consolas', monospace;
}

.pricing .pipboy-bullet {
    color: var(--primary-cyan);
    margin-top: 1px;
}

.pricing .pipboy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.10) 0%, rgba(255, 0, 255, 0.10) 100%);
    border: 1px solid rgba(0, 255, 255, 0.55);
    border-radius: 4px;
    color: var(--primary-cyan);
    text-decoration: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.40);
}

.pricing .pipboy-btn:hover {
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.22) 0%, rgba(255, 0, 255, 0.22) 100%);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.35), 0 0 28px rgba(255, 0, 255, 0.20);
    border-color: rgba(255, 0, 255, 0.55);
    transform: translateX(3px);
}

.pricing .pipboy-btn-bracket {
    color: rgba(0, 255, 255, 0.65);
}

/* STATUS BAR */
.pricing .pipboy-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 18px;
    background: rgba(0, 255, 255, 0.03);
    color: rgba(0, 255, 255, 0.62);
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing .pipboy-status-blink {
    color: var(--primary-cyan);
    animation: pipboy-blink 1.6s steps(2, end) infinite;
}

.pricing .pipboy-battery {
    color: var(--primary-cyan);
    letter-spacing: 1px;
    margin-left: 6px;
}

/* ANIMATIONS */
@keyframes pipboy-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.25; }
}

@keyframes pipboy-fadein {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 720px) {
    .pricing .pipboy-acc-head {
        flex-wrap: wrap;
        font-size: 0.82rem;
        gap: 8px;
        padding: 12px 10px;
    }

    .pricing .pipboy-acc-title {
        flex: 1 1 100%;
        order: 2;
    }

    .pricing .pipboy-acc-price {
        order: 3;
        margin-left: 0;
        font-size: 0.95rem;
    }

    .pricing .pipboy-acc-toggle {
        order: 4;
        margin-left: auto;
    }

    .pricing .pipboy-acc-body {
        padding-left: 14px;
        padding-right: 14px;
    }

    .pricing .pipboy-acc-item.open .pipboy-acc-body {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 560px) {
    .pricing .pipboy-tabs {
        padding: 10px 10px 0;
    }

    .pricing .pipboy-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .pricing .pipboy-status {
        flex-wrap: wrap;
        font-size: 0.7rem;
        padding: 10px 12px;
    }
}


/* Pricing subgroup titles */
.pricing-subgroup-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00ff9f;
    text-align: center;
    margin: 40px 0 25px;
    letter-spacing: 0.5px;
}

.pricing-subgroup-title:first-of-type {
    margin-top: 10px;
}

/* =====================================================
   Content pages (blog / case studies)
   ===================================================== */

.content-main {
    min-height: 70vh;
    padding-top: 100px;
}

.content-section {
    padding: 60px 20px;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    color: rgba(0, 255, 255, 0.55);
    font-size: 0.82rem;
    margin-bottom: 24px;
    font-family: 'Share Tech Mono', monospace;
    position: relative;
}

.breadcrumb a {
    color: var(--primary-cyan);
    text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.content-container--wide {
    max-width: 1200px;
}

.case-disclaimer {
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--secondary-amber);
    background: rgba(251, 191, 36, 0.06);
    border-radius: 0 8px 8px 0;
}

/* Toolbar: search + filter chips + count */
.case-toolbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 255, 255, 0.18);
}

.case-search {
    position: relative;
    width: 100%;
}

.case-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 255, 255, 0.55);
    font-size: 1.2rem;
    pointer-events: none;
}

.case-search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: rgba(15, 5, 26, 0.50);
    border: 1px solid rgba(0, 255, 255, 0.22);
    border-radius: 8px;
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.case-search-input::placeholder {
    color: rgba(0, 255, 255, 0.40);
}

.case-search-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.15);
}

.case-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-filter-chip {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(0, 255, 255, 0.75);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.case-filter-chip:hover {
    background: rgba(0, 255, 255, 0.06);
    color: var(--primary-cyan);
}

.case-filter-chip.active {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.55);
}

.case-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-pink);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.case-count #caseCount {
    font-size: 1.05rem;
    color: var(--primary-cyan);
}

/* Grouped sections */
.case-group {
    margin-bottom: 50px;
}

.case-group:last-child {
    margin-bottom: 0;
}

.case-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.case-group-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 10px;
    background: rgba(0, 255, 255, 0.06);
    border: 1px solid rgba(0, 255, 255, 0.22);
    flex-shrink: 0;
}

.case-group-label {
    color: var(--primary-cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    white-space: nowrap;
}

.case-group-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.30) 0%, rgba(0, 255, 255, 0) 100%);
}

.case-group-count {
    color: var(--primary-pink);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 11px;
    background: rgba(255, 0, 255, 0.10);
    border: 1px solid rgba(255, 0, 255, 0.25);
    border-radius: 999px;
    flex-shrink: 0;
}

/* Grid — 2 columns desktop, 1 mobile */
.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 820px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

.case-card-compact {
    display: flex;
    flex-direction: column;
    padding: 22px 22px 20px;
    border: 1px solid rgba(0, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(15, 5, 26, 0.40);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.case-card-compact:hover {
    border-color: rgba(0, 255, 255, 0.40);
    box-shadow: 0 0 24px rgba(0, 255, 255, 0.10);
    transform: translateY(-2px);
}

.case-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    flex-wrap: wrap;
}

.case-card-category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px currentColor;
}

.case-card-category-dot--ai         { background: #f472b6; color: #f472b6; }
.case-card-category-dot--build      { background: #60a5fa; color: #60a5fa; }
.case-card-category-dot--data       { background: #22d3ee; color: #22d3ee; }
.case-card-category-dot--ops        { background: #fb923c; color: #fb923c; }
.case-card-category-dot--consulting { background: #84cc16; color: #84cc16; }

.case-card-compact .case-industry,
.case-card-compact .case-duration {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.case-card-compact .case-industry {
    background: rgba(255, 0, 255, 0.10);
    color: var(--primary-pink);
    border: 1px solid rgba(255, 0, 255, 0.25);
}

.case-card-compact .case-duration {
    background: rgba(0, 255, 255, 0.06);
    color: rgba(0, 255, 255, 0.75);
    border: 1px solid rgba(0, 255, 255, 0.18);
}

.case-card-title {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.case-card-title a {
    color: #fff;
    text-decoration: none;
}

.case-card-title a:hover {
    color: var(--primary-cyan);
}

.case-card-profile {
    color: rgba(0, 255, 255, 0.80);
    font-size: 0.82rem;
    margin: 0 0 10px;
    font-style: italic;
}

.case-card-lead {
    color: #b8c5d6;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0 0 14px;
    flex: 1;
}

.case-card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.case-card-tech .case-tech-tag {
    font-size: 0.7rem;
    padding: 2px 7px;
}

.case-tech-more {
    font-size: 0.7rem;
    padding: 2px 7px;
    color: rgba(0, 255, 255, 0.60);
    font-family: 'Share Tech Mono', monospace;
}

.case-card-link {
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
    align-self: flex-start;
}

.case-card-link:hover {
    transform: translateX(4px);
}

.case-no-results {
    text-align: center;
    color: rgba(0, 255, 255, 0.55);
    font-style: italic;
    padding: 40px 20px;
    margin-top: 20px;
}

.case-disclaimer p {
    margin: 0;
    color: #d6e8ff;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.article-list, .case-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.article-card, .case-card {
    padding: 28px 28px 24px;
    border: 1px solid rgba(0, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(15, 5, 26, 0.40);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.article-card:hover, .case-card:hover {
    border-color: rgba(0, 255, 255, 0.40);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.10);
}

.article-meta, .case-meta {
    display: flex;
    gap: 14px;
    font-size: 0.8rem;
    font-family: 'Share Tech Mono', monospace;
    color: rgba(0, 255, 255, 0.70);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.article-category, .case-industry, .case-duration {
    padding: 2px 10px;
    background: rgba(255, 0, 255, 0.12);
    color: var(--primary-pink);
    border: 1px solid rgba(255, 0, 255, 0.30);
    border-radius: 4px;
}

.article-title, .case-title {
    margin: 0 0 12px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.article-title a, .case-title a {
    color: #fff;
    text-decoration: none;
}

.article-title a:hover, .case-title a:hover {
    color: var(--primary-cyan);
}

.article-lead, .case-lead {
    color: #b8c5d6;
    line-height: 1.55;
    margin: 0 0 14px;
}

.case-client {
    color: rgba(0, 255, 255, 0.80);
    font-size: 0.92rem;
    margin: -6px 0 14px;
}

.article-tags, .case-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.article-tag, .case-tech-tag {
    font-size: 0.75rem;
    padding: 3px 9px;
    color: rgba(0, 255, 255, 0.80);
    background: rgba(0, 255, 255, 0.06);
    border: 1px solid rgba(0, 255, 255, 0.22);
    border-radius: 4px;
    font-family: 'Share Tech Mono', monospace;
}

.article-read-more {
    display: inline-block;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}

.article-read-more:hover {
    transform: translateX(4px);
}

/* Detail */
.article-detail-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 14px 0 18px;
    color: #fff;
}

.article-detail-lead {
    font-size: 1.15rem;
    color: #d6e8ff;
    margin-bottom: 28px;
    line-height: 1.55;
    font-style: italic;
}

.article-detail-content {
    color: #c5d3e3;
    line-height: 1.7;
    font-size: 1rem;
}

.article-detail-content h2 {
    color: var(--primary-cyan);
    margin: 36px 0 14px;
    font-size: 1.5rem;
}

.article-detail-content h3 {
    color: #fff;
    margin: 28px 0 10px;
    font-size: 1.2rem;
}

.article-detail-content p {
    margin: 14px 0;
}

.article-detail-content ul {
    padding-left: 22px;
    margin: 14px 0;
}

.article-detail-content li {
    margin-bottom: 8px;
}

.article-detail-content a {
    color: var(--primary-cyan);
    text-decoration: underline;
}

.article-detail-content blockquote {
    border-left: 3px solid var(--primary-pink);
    padding: 14px 22px;
    margin: 28px 0;
    background: rgba(255, 0, 255, 0.05);
    border-radius: 0 8px 8px 0;
    color: #d6e8ff;
}

.article-detail-content blockquote p {
    margin: 0;
}

.article-cta {
    margin-top: 50px;
    padding: 24px 28px;
    border: 1px solid rgba(0, 255, 255, 0.30);
    border-radius: 10px;
    background: rgba(0, 255, 255, 0.05);
    text-align: center;
}

.article-cta a {
    color: var(--primary-cyan);
    font-weight: 700;
    text-decoration: none;
}

/* Case results grid */
.case-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.case-result {
    padding: 22px 18px;
    text-align: center;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.22);
    border-radius: 8px;
}

.case-result-metric {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-amber);
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.40);
    margin-bottom: 6px;
    font-family: 'Share Tech Mono', monospace;
}

.case-result-label {
    color: #b8c5d6;
    font-size: 0.85rem;
}

.case-quote {
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--primary-pink);
    background: rgba(255, 0, 255, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #d6e8ff;
}

.case-quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.88rem;
    color: var(--primary-cyan);
}

@media (max-width: 600px) {
    .article-detail-title { font-size: 1.6rem; }
    .article-detail-lead { font-size: 1rem; }
    .article-card, .case-card { padding: 22px 18px 18px; }
}


