/* === HERO INFO STYLE === */
        .hero-info {
            position: relative;
            background: #0a0e1a;
            color: #fff;
            padding: 140px 0 100px;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        /* Animowane glow orby */
        .hero-info::before {
            content: '';
            position: absolute;
            top: -15%;
            right: -10%;
            width: 720px;
            height: 720px;
            background: radial-gradient(circle, rgba(0,212,170,0.22) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 14s ease-in-out infinite;
            filter: blur(20px);
        }
        .hero-info::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -8%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(108,99,255,0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 11s ease-in-out infinite reverse;
            filter: blur(20px);
        }
        /* Siatka dekoracyjna */
        .hero-info__grid {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image:
                linear-gradient(rgba(108,99,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(108,99,255,0.04) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 1;
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
                    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        }
        /* Floating partykuły dekoracyjne */
        .hero-info__particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }
        .hero-info__particle--1 { top: 18%; left: 8%; width: 6px; height: 6px; background: #00d4aa; box-shadow: 0 0 24px #00d4aa; animation: float-slow 8s ease-in-out infinite; }
        .hero-info__particle--2 { top: 65%; left: 14%; width: 4px; height: 4px; background: #918aff; box-shadow: 0 0 20px #918aff; animation: float-slow 11s ease-in-out infinite reverse; }
        .hero-info__particle--3 { top: 28%; right: 12%; width: 8px; height: 8px; background: #00d4aa; box-shadow: 0 0 28px #00d4aa; animation: float-slow 10s ease-in-out infinite; }
        .hero-info__particle--4 { top: 75%; right: 18%; width: 5px; height: 5px; background: #33ffd2; box-shadow: 0 0 22px #33ffd2; animation: float-slow 9s ease-in-out infinite reverse; }

        .hero-info .container {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }
        .hero-info__text { max-width: 600px; }

        .hero-info__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(0,212,170,0.1);
            border: 1px solid rgba(0,212,170,0.25);
            border-radius: 50px;
            color: #33ffd2;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 28px;
            -webkit-animation: fadeInUp 0.8s ease;
                    animation: fadeInUp 0.8s ease;
        }
        .hero-info__badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #00d4aa;
            border-radius: 50%;
            animation: pulse-dot 2s ease infinite;
        }
        .hero-info h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 24px;
            -webkit-animation: fadeInUp 0.8s ease 0.1s both;
                    animation: fadeInUp 0.8s ease 0.1s both;
        }
        .hero-info h1 .gradient {
            background: linear-gradient(135deg, #00d4aa, #918aff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-info h1 .gradient-warm {
            background: linear-gradient(135deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-info__desc {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.65);
            margin-bottom: 36px;
            line-height: 1.75;
            -webkit-animation: fadeInUp 0.8s ease 0.2s both;
                    animation: fadeInUp 0.8s ease 0.2s both;
        }
        .hero-info__actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            -webkit-animation: fadeInUp 0.8s ease 0.3s both;
                    animation: fadeInUp 0.8s ease 0.3s both;
        }
        .hero-info__meta {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            -webkit-animation: fadeInUp 0.8s ease 0.4s both;
                    animation: fadeInUp 0.8s ease 0.4s both;
        }
        .hero-info__meta-item { text-align: left; }
        .hero-info__meta-num {
            font-family: 'Outfit', sans-serif;
            font-size: 1.7rem;
            font-weight: 800;
            background: linear-gradient(135deg, #00d4aa, #918aff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-info__meta-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
            margin-top: 4px;
            line-height: 1.4;
        }

        /* ===== HERO MOCKUP — efekt WOW ===== */
        .hero-info__visual {
            position: relative;
            -webkit-animation: fadeInUp 1s ease 0.4s both;
                    animation: fadeInUp 1s ease 0.4s both;
        }
        .hero-info__visual::before,
        .hero-info__visual::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(40px);
        }
        .hero-info__visual::before {
            top: -60px;
            right: -40px;
            width: 240px;
            height: 240px;
            background: radial-gradient(circle, rgba(0,212,170,0.35), transparent 70%);
            animation: float-slow 9s ease-in-out infinite;
        }
        .hero-info__visual::after {
            bottom: -60px;
            left: -30px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(108,99,255,0.3), transparent 70%);
            animation: float-slow 11s ease-in-out infinite reverse;
        }

        .live-report {
            position: relative;
            background: linear-gradient(180deg, rgba(20,28,50,0.95), rgba(10,14,26,0.95));
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 30px 80px -20px rgba(0,212,170,0.25), 0 16px 32px rgba(0,0,0,0.4);
            -webkit-backdrop-filter: blur(20px);
                    backdrop-filter: blur(20px);
        }
        /* Pulsujące świetlne obramowanie */
        .live-report::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(0,212,170,0.4), rgba(108,99,255,0.4), rgba(0,212,170,0.4));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
                    mask-composite: exclude;
            opacity: 0.6;
            animation: pulse-border 4s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes pulse-border {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.9; }
        }

        .live-report__bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            background: rgba(255,255,255,0.02);
        }
        .live-report__dots {
            display: flex;
            gap: 6px;
        }
        .live-report__dots span {
            width: 11px;
            height: 11px;
            border-radius: 50%;
        }
        .live-report__dots span:nth-child(1) { background: #ff6b6b; }
        .live-report__dots span:nth-child(2) { background: #ffd43b; }
        .live-report__dots span:nth-child(3) { background: #00d4aa; }
        .live-report__live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            color: #33ffd2;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .live-report__live::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #00d4aa;
            box-shadow: 0 0 12px #00d4aa;
            animation: pulse-dot 1.5s ease infinite;
        }

        .live-report__hero {
            padding: 24px 22px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .live-report__title {
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .live-report__counter {
            font-family: 'Outfit', sans-serif;
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, #00d4aa, #918aff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 4px;
        }
        .live-report__counter-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
        }

        .live-report__rows {
            padding: 8px 0;
        }
        .live-report__row {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            gap: 8px;
            padding: 11px 22px;
            font-size: 0.83rem;
            color: rgba(255,255,255,0.7);
            transition: background 0.3s;
            position: relative;
        }
        .live-report__row.header {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.7px;
            font-weight: 600;
            padding-bottom: 6px;
        }
        .live-report__row:not(.header):hover {
            background: rgba(0,212,170,0.05);
        }
        .live-report__row .price {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: #fff;
            text-align: right;
        }
        .live-report__row .price.flash {
            color: #33ffd2;
            animation: flashGreen 0.6s ease;
        }
        @keyframes flashGreen {
            0% { background: rgba(0,212,170,0.4); }
            100% { background: transparent; }
        }
        .live-report__status {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            padding: 3px 9px;
            border-radius: 50px;
            font-weight: 700;
        }
        .live-report__status.sent {
            background: rgba(0,212,170,0.15);
            color: #00d4aa;
            border: 1px solid rgba(0,212,170,0.3);
        }
        .live-report__status.queue {
            background: rgba(255,212,59,0.12);
            color: #ffd43b;
            border: 1px solid rgba(255,212,59,0.3);
        }

        .live-report__foot {
            padding: 16px 22px;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0,212,170,0.04);
        }
        .live-report__foot-label {
            font-size: 0.74rem;
            color: rgba(255,255,255,0.5);
        }
        .live-report__foot-time {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            color: #33ffd2;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* Floating "wysłano" notyfikacja */
        .live-report__toast {
            position: absolute;
            top: 88px;
            right: 16px;
            background: linear-gradient(135deg, #00d4aa, #00b894);
            color: #0a0e1a;
            padding: 7px 13px;
            border-radius: 50px;
            font-size: 0.73rem;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(0,212,170,0.45), 0 2px 8px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 6px;
            opacity: 0;
            transform: translateY(-8px) scale(0.92);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 5;
            white-space: nowrap;
            max-width: calc(100% - 32px);
        }
        .live-report__toast.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        @media (max-width: 480px) {
            .live-report__toast {
                font-size: 0.66rem;
                padding: 6px 10px;
                top: 80px;
                right: 10px;
            }
        }

        /* Karta z metryką pod mockupem */
        .hero-info__visual-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, rgba(0,212,170,0.1), rgba(108,99,255,0.1));
            border: 1px solid rgba(0,212,170,0.18);
            border-radius: 16px;
            padding: 14px 18px;
            margin-top: 18px;
            -webkit-backdrop-filter: blur(10px);
                    backdrop-filter: blur(10px);
        }
        .hero-info__visual-card__text {
            font-size: 0.86rem;
            color: rgba(255,255,255,0.75);
        }
        .hero-info__visual-card__num {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: #33ffd2;
        }

        @media (max-width: 1024px) {
            .hero-info .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-info__text { max-width: 100%; }
            .hero-info__visual { max-width: 540px; margin: 0 auto; width: 100%; }
        }
        @media (max-width: 768px) {
            .hero-info {
                padding: 90px 0 50px;
                min-height: auto;
            }
            .hero-info .container { gap: 32px; }
            .hero-info h1 { font-size: 1.85rem; letter-spacing: -0.5px; margin-bottom: 16px; }
            .hero-info__desc { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
            .hero-info__badge { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 18px; }
            .hero-info__actions .btn { padding: 13px 22px; font-size: 0.92rem; flex: 1 1 auto; justify-content: center; min-width: 140px; }
            .hero-info__meta {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                margin-top: 30px;
                padding-top: 22px;
            }
            .hero-info__meta-num { font-size: 1.3rem; }
            .hero-info__meta-label { font-size: 0.72rem; }

            /* Mobile: chowamy animowany mockup (zostaje tylko karta z metryką) */
            .live-report { display: none; }
            .hero-info__visual::before,
            .hero-info__visual::after { display: none; }
            .hero-info__visual { max-width: 100%; }

            /* Mobile: kompaktowa karta z metryką */
            .hero-info__visual-card {
                margin-top: 0;
                padding: 14px 16px;
                border-radius: 14px;
                gap: 14px;
            }
            .hero-info__visual-card__text {
                font-size: 0.82rem;
                line-height: 1.45;
                flex: 1 1 auto;
            }
            .hero-info__visual-card__num {
                font-size: 1.1rem;
                white-space: nowrap;
                flex-shrink: 0;
            }
        }

        /* === TIMELINE OBOWIĄZKÓW === */
        .duties-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }
        .duties-timeline::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 6%;
            right: 6%;
            height: 2px;
            background: linear-gradient(90deg, #00d4aa, #6c63ff);
            opacity: 0.25;
            z-index: 0;
        }
        .duty-card {
            background: #fff;
            border: 1px solid rgba(108,99,255,0.1);
            border-radius: 20px;
            padding: 32px 24px;
            position: relative;
            z-index: 1;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .duty-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 48px rgba(108,99,255,0.12);
            border-color: rgba(0,212,170,0.3);
        }
        .duty-card__num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00d4aa, #6c63ff);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 1.7rem;
            font-weight: 800;
            margin: -50px auto 18px;
            box-shadow: 0 8px 24px rgba(0,212,170,0.3);
        }
        .duty-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            color: #1a1f36;
            margin-bottom: 12px;
            text-align: center;
        }
        .duty-card p {
            font-size: 0.9rem;
            color: #5a6178;
            line-height: 1.7;
            text-align: center;
        }
        .duty-card__art {
            display: block;
            margin: 0 auto 6px;
            font-size: 0.78rem;
            color: #00a888;
            font-weight: 700;
            text-align: center;
        }
        @media (max-width: 1024px) {
            .duties-timeline { grid-template-columns: repeat(2, 1fr); }
            .duties-timeline::before { display: none; }
        }
        @media (max-width: 600px) {
            .duties-timeline { grid-template-columns: 1fr; }
        }

        /* === KALKULATOR STRAT (styl zgodny z HERO) === */
        .calc-section {
            background: #0a0e1a;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        /* Animowane glow orby (jak w hero) */
        .calc-section::before {
            content: '';
            position: absolute;
            top: -180px;
            left: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0,212,170,0.2), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 13s ease-in-out infinite;
            filter: blur(20px);
        }
        .calc-section::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(108,99,255,0.18), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 11s ease-in-out infinite reverse;
            filter: blur(20px);
        }
        /* Siatka dekoracyjna */
        .calc-section__grid {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image:
                linear-gradient(rgba(108,99,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(108,99,255,0.04) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 1;
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
                    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        }
        /* Pływające cząstki w tle */
        .calc-section__particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }
        .calc-section__particle--1 { top: 15%; left: 8%; width: 6px; height: 6px; background: #00d4aa; box-shadow: 0 0 24px #00d4aa; animation: float-slow 9s ease-in-out infinite; }
        .calc-section__particle--2 { top: 70%; left: 12%; width: 4px; height: 4px; background: #918aff; box-shadow: 0 0 20px #918aff; animation: float-slow 12s ease-in-out infinite reverse; }
        .calc-section__particle--3 { top: 22%; right: 10%; width: 5px; height: 5px; background: #33ffd2; box-shadow: 0 0 22px #33ffd2; animation: float-slow 11s ease-in-out infinite; }
        .calc-section__particle--4 { top: 78%; right: 14%; width: 7px; height: 7px; background: #00d4aa; box-shadow: 0 0 26px #00d4aa; animation: float-slow 10s ease-in-out infinite reverse; }

        .calc-section .container {
            position: relative;
            z-index: 2;
        }
        .calc-section .section-title { color: #fff; }
        .calc-section .section-desc { color: rgba(255,255,255,0.65); }
        .calc-section .section-tag {
            background: rgba(0,212,170,0.1);
            border-color: rgba(0,212,170,0.25);
            color: #33ffd2;
        }

        /* Wrapper kalkulatora — gradient border + glow (jak mockup hero) */
        .calc-wrapper-outer {
            padding: 1.5px;
            background: linear-gradient(135deg, rgba(0,212,170,0.55), rgba(108,99,255,0.55), rgba(0,212,170,0.55));
            border-radius: 26px;
            box-shadow:
                0 30px 80px -20px rgba(0,212,170,0.25),
                0 16px 40px rgba(0,0,0,0.4);
            position: relative;
        }
        .calc-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: linear-gradient(180deg, rgba(20,28,50,0.92), rgba(10,14,26,0.96));
            border-radius: 24px;
            padding: 40px;
            -webkit-backdrop-filter: blur(20px);
                    backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }
        /* Subtelny glow w środku wrappera */
        .calc-wrapper::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 60%;
            background: radial-gradient(ellipse at center, rgba(0,212,170,0.08), transparent 70%);
            pointer-events: none;
            filter: blur(40px);
        }
        @media (max-width: 900px) {
            .calc-wrapper { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
        }
        @media (max-width: 600px) {
            .calc-wrapper { padding: 18px; gap: 18px; }
            .calc-wrapper-outer { border-radius: 22px; }

            .calc-results {
                padding: 20px 18px;
                gap: 14px;
                border-radius: 16px;
            }
            /* Label nad wartością — bardziej czytelnie na wąskich ekranach */
            .calc-result-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                padding-bottom: 12px;
            }
            .calc-result-row__label {
                font-size: 0.78rem;
                color: rgba(255,255,255,0.55);
                text-transform: uppercase;
                letter-spacing: 0.5px;
                font-weight: 600;
            }
            .calc-result-row__val {
                font-size: 1.35rem;
                white-space: nowrap;
            }
            .calc-result-row--highlight .calc-result-row__val {
                font-size: 1.7rem;
            }
            .calc-result-row--saving .calc-result-row__val {
                font-size: 1.55rem;
            }

            .calc-cta {
                margin-top: 8px;
                padding-top: 12px;
            }
            .calc-cta .btn {
                width: 100%;
                padding: 14px 18px;
                font-size: 0.92rem;
                justify-content: center;
                white-space: nowrap;
            }

            /* Inputy też lekko ścieśniamy */
            .calc-inputs label { font-size: 0.86rem; margin: 14px 0 6px; }
            .calc-inputs input[type="number"] {
                padding: 11px 14px;
                font-size: 0.95rem;
            }
            .calc-inputs__hint { font-size: 0.72rem; }
        }
        .calc-inputs {
            position: relative;
            z-index: 1;
        }
        .calc-inputs label {
            display: block;
            color: rgba(255,255,255,0.85);
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.92rem;
            margin: 18px 0 8px;
        }
        .calc-inputs label:first-of-type { margin-top: 0; }

        .calc-inputs input[type="number"] {
            width: 100%;
            background: rgba(255,255,255,0.04);
            border: 1.5px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            padding: 13px 16px;
            outline: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
        }
        .calc-inputs input[type="number"]:hover {
            border-color: rgba(0,212,170,0.3);
            background: rgba(255,255,255,0.06);
        }
        .calc-inputs input[type="number"]:focus {
            border-color: #00d4aa;
            background: rgba(0,212,170,0.05);
            box-shadow: 0 0 0 3px rgba(0,212,170,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
        }
        .calc-inputs__hint {
            font-size: 0.77rem;
            color: rgba(255,255,255,0.4);
            margin-top: 5px;
            display: block;
        }

        .calc-results {
            background: linear-gradient(135deg, rgba(0,212,170,0.08), rgba(108,99,255,0.08));
            border: 1px solid rgba(0,212,170,0.2);
            border-radius: 18px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 16px;
            position: relative;
            z-index: 1;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
        }
        .calc-results::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0,212,170,0.6), transparent);
            border-radius: 18px 18px 0 0;
        }
        .calc-result-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding-bottom: 14px;
            border-bottom: 1px dashed rgba(255,255,255,0.08);
            transition: transform 0.25s;
        }
        .calc-result-row:last-of-type { border-bottom: none; padding-bottom: 0; }
        .calc-result-row__label {
            color: rgba(255,255,255,0.65);
            font-size: 0.92rem;
        }
        .calc-result-row__val {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: #fff;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .calc-result-row__val.bump {
            -webkit-animation: bumpUp 0.4s ease;
                    animation: bumpUp 0.4s ease;
        }
        @keyframes bumpUp {
            0% { transform: scale(1); }
            50% { transform: scale(1.08); }
            100% { transform: scale(1); }
        }
        .calc-result-row--highlight .calc-result-row__val {
            background: linear-gradient(135deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2rem;
            filter: drop-shadow(0 0 12px rgba(255,107,107,0.3));
        }
        .calc-result-row--saving .calc-result-row__val {
            background: linear-gradient(135deg, #00d4aa, #918aff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 1.8rem;
            filter: drop-shadow(0 0 14px rgba(0,212,170,0.4));
        }
        .calc-cta {
            margin-top: 12px;
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,0.06);
            text-align: center;
        }
        .calc-cta .btn {
            box-shadow: 0 8px 32px rgba(0,212,170,0.4);
        }

        /* === PORÓWNANIE TABELA === */
        .compare-table-wrap {
            padding: 4px;
            background: linear-gradient(135deg, rgba(0,212,170,0.18), rgba(108,99,255,0.18));
            border-radius: 24px;
            box-shadow: 0 24px 64px -16px rgba(13,18,42,0.18), 0 8px 24px rgba(108,99,255,0.08);
        }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(108,99,255,0.12);
        }
        .compare-table thead th {
            background: linear-gradient(135deg, #1a1f36, #2d1b69);
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            padding: 22px 20px;
            text-align: left;
            font-size: 0.95rem;
        }
        .compare-table thead th:first-child {
            border-top-left-radius: 20px;
            font-weight: 600;
            color: rgba(255,255,255,0.7);
        }
        .compare-table thead th:nth-child(2) {
            color: #ff9999;
        }
        .compare-table thead th:nth-child(3) {
            color: #33ffd2;
            position: relative;
        }
        .compare-table thead th:nth-child(3)::after {
            content: '✓ Rekomendowane';
            display: block;
            font-size: 0.7rem;
            color: rgba(0,212,170,0.7);
            font-weight: 500;
            margin-top: 4px;
        }
        .compare-table tbody td {
            padding: 18px 20px;
            border-bottom: 1px solid rgba(108,99,255,0.08);
            font-size: 0.94rem;
            color: #1a1f36;
            vertical-align: top;
        }
        .compare-table tbody tr:last-child td { border-bottom: none; }
        .compare-table tbody td:first-child {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            color: #5a6178;
            background: rgba(108,99,255,0.03);
            width: 28%;
        }
        .compare-table td.bad { color: #c53030; }
        .compare-table td.good { color: #00a888; font-weight: 600; }
        .compare-table tbody tr:hover td:not(:first-child) {
            background: rgba(0,212,170,0.03);
        }
        @media (max-width: 768px) {
            .compare-table thead { display: none; }
            .compare-table tbody tr {
                display: block;
                margin-bottom: 18px;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 2px 12px rgba(0,0,0,0.05);
            }
            .compare-table tbody td {
                display: block;
                padding: 12px 16px;
                font-size: 0.88rem;
                position: relative;
            }
            .compare-table tbody td:first-child {
                background: #1a1f36;
                color: #fff;
                font-size: 0.95rem;
                width: 100%;
            }
            .compare-table tbody td:nth-child(2)::before {
                content: '❌ Ręcznie: ';
                font-weight: 700;
                color: #ff6b6b;
                display: block;
                font-size: 0.78rem;
                margin-bottom: 4px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            .compare-table tbody td:nth-child(3)::before {
                content: '✓ Z DeweloperCeny.pl: ';
                font-weight: 700;
                color: #00a888;
                display: block;
                font-size: 0.78rem;
                margin-bottom: 4px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
        }

        /* === KARY UOKIK === */
        .penalty-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 1024px) { .penalty-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .penalty-grid { grid-template-columns: 1fr; } }
        .penalty-card {
            background: #fff;
            border: 1px solid rgba(255,107,107,0.12);
            border-left: 4px solid #ff6b6b;
            border-radius: 12px;
            padding: 24px;
            transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .penalty-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(255,107,107,0.1);
            border-left-color: #c53030;
        }
        .penalty-card__amount {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #ff6b6b, #ffd43b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }
        .penalty-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            color: #1a1f36;
            margin-bottom: 10px;
        }
        .penalty-card p {
            font-size: 0.88rem;
            color: #5a6178;
            line-height: 1.7;
        }

        /* === ERRORS LIST === */
        .errors-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            max-width: 920px;
            margin: 0 auto;
        }
        .error-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            background: #fff;
            border: 1px solid rgba(108,99,255,0.08);
            border-radius: 14px;
            padding: 20px 24px;
            transition: all .3s;
        }
        .error-item:hover {
            transform: translateX(4px);
            border-color: rgba(255,107,107,0.2);
            box-shadow: 0 4px 20px rgba(255,107,107,0.06);
        }
        .error-item__icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: rgba(255,107,107,0.1);
            color: #ff6b6b;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
        }
        .error-item__body h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            color: #1a1f36;
            margin-bottom: 6px;
        }
        .error-item__body p {
            font-size: 0.9rem;
            color: #5a6178;
            line-height: 1.7;
        }

        /* === CTA CROSS-LINK === */
        .cross-cta {
            background: linear-gradient(135deg, #0a0e1a 0%, #1a1f36 50%, #2d1b69 100%);
            border-radius: 28px;
            padding: 64px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cross-cta::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0,212,170,0.18), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float-slow 12s ease-in-out infinite;
        }
        .cross-cta > * { position: relative; z-index: 2; }
        .cross-cta__eyebrow {
            display: inline-block;
            color: #33ffd2;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .cross-cta h2 {
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .cross-cta h2 .gradient {
            background: linear-gradient(135deg, #00d4aa, #918aff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .cross-cta__desc {
            color: rgba(255,255,255,0.65);
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 640px;
            margin: 0 auto 32px;
        }
        .cross-cta__bullets {
            display: flex;
            gap: 28px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 36px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        .cross-cta__bullets span::before {
            content: '✓';
            color: #00d4aa;
            font-weight: 800;
            margin-right: 6px;
        }
        @media (max-width: 600px) {
            .cross-cta { padding: 40px 20px; border-radius: 20px; }
            .cross-cta__bullets { gap: 12px; font-size: 0.85rem; }
        }

        /* === Stats banner (mid-page) === */
        .stats-banner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
            background: #fff;
            border-radius: 20px;
            padding: 36px 28px;
            box-shadow: 0 4px 32px rgba(108,99,255,0.06);
            border: 1px solid rgba(108,99,255,0.08);
        }
        @media (max-width: 768px) {
            .stats-banner { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; gap: 18px; }
        }
        .stats-banner__num {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: clamp(1.5rem, 4vw, 2.4rem);
            background: linear-gradient(135deg, #00d4aa, #6c63ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stats-banner__label {
            font-size: 0.82rem;
            color: #5a6178;
            margin-top: 6px;
            line-height: 1.45;
        }
