:root{
  --bg:#0b0c10;--panel:#13161d;--panel2:#1a1e28;--text:#f7f8fb;--muted:#9da6b6;
  --line:rgba(255,255,255,.09);--accent:#7868ff;--accent2:#58d5ff;--green:#74e7b6;
  --paper:#f5f6f8;--ink:#12141a;--max:1200px;--r:24px;--shadow:0 28px 90px rgba(0,0,0,.4)
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:radial-gradient(circle at 10% 0%,rgba(120,104,255,.13),transparent 28%),
             radial-gradient(circle at 90% 5%,rgba(88,213,255,.07),transparent 24%),var(--bg);
  color:var(--text);line-height:1.6;overflow-x:hidden
}
a{text-decoration:none;color:inherit}button,input,textarea{font:inherit}img{display:block;max-width:100%}
.container{width:min(calc(100% - 32px),var(--max));margin:auto}
.section{padding:96px 0}
.eyebrow{display:inline-flex;align-items:center;gap:10px;margin-bottom:16px;color:#c8c1ff;font-size:.76rem;font-weight:900;letter-spacing:.14em;text-transform:uppercase}
.eyebrow:before{content:"";width:30px;height:1px;background:linear-gradient(90deg,var(--accent),var(--accent2))}
h1,h2,h3{line-height:1.05;letter-spacing:-.045em}h1{font-size:clamp(3.1rem,7vw,6.7rem)}h2{font-size:clamp(2.35rem,4.8vw,4.6rem)}h3{font-size:clamp(1.35rem,2.4vw,1.95rem)}
.lead{max-width:720px;color:var(--muted);font-size:clamp(1.02rem,1.8vw,1.18rem)}
.gradient{background:linear-gradient(90deg,#fff,#d9ddff 45%,#9be9ff);-webkit-background-clip:text;background-clip:text;color:transparent}
.nav-wrap{position:fixed;top:16px;left:0;right:0;z-index:1000}
.nav{min-height:70px;padding:0 14px 0 12px;display:flex;align-items:center;justify-content:space-between;gap:18px;border:1px solid var(--line);border-radius:20px;background:rgba(11,12,16,.76);backdrop-filter:blur(18px)}
.brand{display:flex;align-items:center;gap:12px;font-weight:900}.brand img{width:44px;height:44px;border-radius:13px;object-fit:contain}
.links{display:flex;gap:24px;color:#c8ced8;font-size:.94rem;font-weight:750}.links a:hover{color:#fff}.nav-actions{display:flex;gap:10px}
.menu{display:none;width:44px;height:44px;border:1px solid var(--line);border-radius:13px;background:#151922;color:#fff;cursor:pointer}
.btn{min-height:46px;padding:0 18px;border-radius:13px;display:inline-flex;align-items:center;justify-content:center;gap:8px;border:1px solid transparent;font-weight:850;cursor:pointer;transition:.2s}
.btn:hover{transform:translateY(-2px)}.btn-primary{background:linear-gradient(135deg,var(--accent),#5870ff);color:#fff}.btn-ghost{background:rgba(255,255,255,.04);border-color:var(--line);color:#fff}.btn-light{background:#fff;color:#111}

.hero{padding:150px 0 86px;min-height:92vh;display:flex;align-items:center}
.hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:56px;align-items:center}.hero .lead{margin-top:24px}.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.hero-meta{display:flex;gap:18px;flex-wrap:wrap;margin-top:22px;color:#abb3c1;font-size:.9rem}.hero-meta span{display:flex;align-items:center;gap:8px}
.dot{width:8px;height:8px;border-radius:50%;background:var(--green);box-shadow:0 0 14px rgba(116,231,182,.65)}
.hero-card{padding:18px;border:1px solid var(--line);border-radius:30px;background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.012));box-shadow:var(--shadow)}
.browser{border:1px solid var(--line);border-radius:22px;overflow:hidden;background:#0f1218}.browser-top{height:52px;padding:0 16px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line)}
.dots{display:flex;gap:7px}.dots i{width:9px;height:9px;border-radius:50%;background:#3d4350}.dots i:nth-child(1){background:#ff6f7b}.dots i:nth-child(2){background:#ffd36b}.dots i:nth-child(3){background:#70e8b6}
.browser small{color:#8f98a7;font-weight:800}.browser-body{padding:18px}.hero-offers{display:grid;gap:10px}
.hero-offer{padding:14px;border:1px solid var(--line);border-radius:14px;background:#171b25;display:flex;justify-content:space-between;gap:16px;align-items:center}
.hero-offer span{color:var(--muted);font-size:.82rem}


/* ==================================================
   PROCES SKŁADANIA ZAMÓWIENIA
================================================== */

.order-process {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(88, 101, 242, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(104, 219, 176, 0.07),
            transparent 28%
        ),
        #0d1016;
}

.order-process::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );

    background-size: 56px 56px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 18%,
        black 82%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        black 18%,
        black 82%,
        transparent
    );
}

.order-process::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 700px;
    height: 700px;

    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;

    transform: translate(-50%, -50%);
    pointer-events: none;
}

.order-process__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* ==================================================
   NAGŁÓWEK
================================================== */

.order-process__heading {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.order-process__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 17px;

    border: 1px solid rgba(122, 132, 255, 0.22);
    border-radius: 999px;

    background: rgba(88, 101, 242, 0.075);

    color: #aeb5ff;

    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 30px rgba(88, 101, 242, 0.08);
}

.order-process__tag span {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #7f89ff;

    box-shadow:
        0 0 0 5px rgba(127, 137, 255, 0.08),
        0 0 16px rgba(127, 137, 255, 0.8);

    animation: orderTagPulse 2s infinite;
}

.order-process__heading h2 {
    max-width: 760px;
    margin: 28px auto 22px;

    color: #ffffff;

    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -3px;
}

.order-process__heading h2 strong {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #aeb5ff 55%,
            #7f89ff 100%
        );

    background-clip: text;
    -webkit-background-clip: text;

    font-weight: 900;
}

.order-process__heading p {
    max-width: 640px;
    margin: 0 auto;

    color: #929aaa;

    font-size: 1.04rem;
    line-height: 1.8;
}

/* ==================================================
   TIMELINE
================================================== */

.order-process__timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.order-process__timeline::before {
    content: "";

    position: absolute;
    top: 46px;
    left: 7%;
    right: 7%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(127, 137, 255, 0.28),
            rgba(127, 137, 255, 0.6),
            rgba(127, 137, 255, 0.28),
            transparent
        );
}

/* ==================================================
   KROK
================================================== */

.order-step {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;
    padding: 28px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.014)
        );

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.order-step::before {
    content: "";

    position: absolute;
    top: -110px;
    right: -110px;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background: rgba(88, 101, 242, 0.12);

    filter: blur(12px);

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

.order-step::after {
    content: "";

    position: absolute;
    right: 28px;
    bottom: 24px;

    width: 42px;
    height: 2px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.12);

    transition:
        width 0.35s ease,
        background 0.35s ease;
}

.order-step:hover {
    transform: translateY(-9px);

    border-color: rgba(127, 137, 255, 0.42);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.36),
        0 0 40px rgba(88, 101, 242, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.order-step:hover::before {
    transform: scale(1.25);
}

.order-step:hover::after {
    width: 78px;
    background: #7f89ff;
}

/* ==================================================
   NUMER
================================================== */

.order-step__number {
    position: relative;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 68px;
    height: 68px;

    margin-bottom: 34px;

    border: 1px solid rgba(127, 137, 255, 0.28);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(88, 101, 242, 0.3),
            rgba(88, 101, 242, 0.08)
        );

    color: #ffffff;

    font-size: 1.16rem;
    font-weight: 900;
    letter-spacing: -0.5px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 14px 35px rgba(88, 101, 242, 0.2);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.order-step:hover .order-step__number {
    transform: rotate(-4deg) scale(1.06);
    border-color: rgba(127, 137, 255, 0.58);
}

/* ==================================================
   TREŚĆ
================================================== */

.order-step__content {
    position: relative;
    z-index: 2;
}

.order-step__label {
    display: block;
    margin-bottom: 10px;

    color: #777f91;

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.order-step h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.25;
}

.order-step p {
    margin: 0;

    color: #969eae;

    font-size: 0.94rem;
    line-height: 1.75;
}

/* ==================================================
   AKCENTY KART
================================================== */

.order-step:nth-child(2)::before {
    background: rgba(96, 210, 175, 0.09);
}

.order-step:nth-child(2):hover {
    border-color: rgba(96, 210, 175, 0.34);
}

.order-step:nth-child(2) .order-step__number {
    border-color: rgba(96, 210, 175, 0.22);

    background:
        linear-gradient(
            145deg,
            rgba(96, 210, 175, 0.22),
            rgba(96, 210, 175, 0.06)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 35px rgba(96, 210, 175, 0.12);
}

.order-step:nth-child(3)::before {
    background: rgba(241, 191, 98, 0.09);
}

.order-step:nth-child(3):hover {
    border-color: rgba(241, 191, 98, 0.34);
}

.order-step:nth-child(3) .order-step__number {
    border-color: rgba(241, 191, 98, 0.22);

    background:
        linear-gradient(
            145deg,
            rgba(241, 191, 98, 0.2),
            rgba(241, 191, 98, 0.05)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 35px rgba(241, 191, 98, 0.1);
}

.order-step:nth-child(4)::before {
    background: rgba(210, 115, 214, 0.08);
}

.order-step:nth-child(4):hover {
    border-color: rgba(210, 115, 214, 0.32);
}

.order-step:nth-child(4) .order-step__number {
    border-color: rgba(210, 115, 214, 0.2);

    background:
        linear-gradient(
            145deg,
            rgba(210, 115, 214, 0.18),
            rgba(210, 115, 214, 0.05)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 35px rgba(210, 115, 214, 0.09);
}

/* ==================================================
   STOPKA SEKCJI
================================================== */

.order-process__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 42px;
    padding-top: 34px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.order-process__footer p {
    margin: 0;
    color: #929aaa;
}

.order-process__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 50px;
    padding: 0 22px;

    border: 1px solid rgba(127, 137, 255, 0.3);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #5865f2,
            #707cff
        );

    color: #ffffff;

    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;

    box-shadow:
        0 14px 35px rgba(88, 101, 242, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.order-process__button span {
    font-size: 1.15rem;
    transition: transform 0.25s ease;
}

.order-process__button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 42px rgba(88, 101, 242, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    filter: brightness(1.05);
}

.order-process__button:hover span {
    transform: translateX(4px);
}

/* ==================================================
   ANIMACJA
================================================== */

@keyframes orderTagPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.58;
        transform: scale(0.82);
    }
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {
    .order-process__timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-process__timeline::before {
        display: none;
    }

    .order-step {
        min-height: 290px;
    }
}

/* ==================================================
   TELEFON
================================================== */

@media (max-width: 680px) {
    .order-process {
        padding: 82px 0;
    }

    .order-process__container {
        width: min(100% - 28px, 1180px);
    }

    .order-process__heading {
        margin-bottom: 46px;
        text-align: left;
    }

    .order-process__heading h2 {
        margin: 24px 0 18px;

        font-size: clamp(2.2rem, 11vw, 3.25rem);
        letter-spacing: -2px;
    }

    .order-process__heading h2 strong {
        display: inline;
    }

    .order-process__heading p {
        margin-left: 0;
        font-size: 0.98rem;
    }

    .order-process__timeline {
        grid-template-columns: 1fr;
    }

    .order-step {
        min-height: auto;
        padding: 25px;
        border-radius: 19px;
    }

    .order-step__number {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }

    .order-step:hover {
        transform: translateY(-5px);
    }

    .order-process__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .order-process__button {
        width: 100%;
    }
}

/* ==================================================
   OGRANICZENIE ANIMACJI
================================================== */

@media (prefers-reduced-motion: reduce) {
    .order-process__tag span {
        animation: none;
    }

    .order-step,
    .order-step::before,
    .order-step::after,
    .order-step__number,
    .order-process__button,
    .order-process__button span {
        transition: none;
    }
}
/* Cleaner offer explorer */
.offer-explorer{display:grid;grid-template-columns:260px 1fr;gap:22px}
.category-menu{display:grid;gap:10px;align-content:start;position:sticky;top:104px}
.category-btn{width:100%;padding:15px 17px;text-align:left;border-radius:14px;border:1px solid var(--line);background:rgba(255,255,255,.025);color:#aeb6c4;font-weight:850;cursor:pointer;transition:.2s}
.category-btn.active{background:#fff;color:#111;border-color:#fff}
.category-btn small{display:block;font-weight:600;opacity:.7;margin-top:2px}
.category-panel{display:none}.category-panel.active{display:block}
.category-intro{padding:26px;border-radius:22px;border:1px solid var(--line);background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.012));margin-bottom:14px}
.category-intro p{color:var(--muted);margin-top:10px}
.service-list{display:grid;gap:12px}
.service-row{padding:20px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.022);display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center}
.service-copy p{color:var(--muted);margin-top:6px}.service-tags{display:flex;gap:7px;flex-wrap:wrap;margin-top:12px}
.tag{padding:6px 9px;border-radius:999px;background:rgba(124,108,255,.12);color:#cec8ff;font-size:.74rem;font-weight:800;border:1px solid rgba(124,108,255,.18)}
.service-actions{display:flex;gap:8px;align-items:center}.price{font-weight:900;text-align:right;min-width:115px}.price small{display:block;color:var(--muted);font-weight:650}

/* Single preview */
.preview-section{background:var(--paper);color:var(--ink)}.preview-section .eyebrow{color:#5e55a8}.preview-section .lead{color:#5f6671}
.preview-shell{display:grid;grid-template-columns:240px 1fr;gap:20px}
.preview-nav{display:grid;gap:9px;align-content:start}
.preview-tab{width:100%;padding:14px 16px;text-align:left;border:1px solid rgba(0,0,0,.1);border-radius:13px;background:#fff;color:#535a65;font-weight:850;cursor:pointer}
.preview-tab.active{background:#111318;color:#fff}
.preview-stage{min-height:620px;border-radius:22px;border:1px solid rgba(0,0,0,.1);background:#fff;overflow:hidden;box-shadow:0 18px 48px rgba(25,30,40,.08)}
.stage-top{height:56px;padding:0 18px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(0,0,0,.08)}
.stage-body{padding:20px}.stage-view{display:none}.stage-view.active{display:block}
.demo-card{padding:22px;border-radius:17px;background:#f4f5f7;border:1px solid rgba(0,0,0,.08)}.demo-card+.demo-card{margin-top:14px}.demo-card p{color:#626873;margin-top:7px}
.demo-action{margin-top:14px;padding:10px 14px;border:0;border-radius:10px;background:#111318;color:#fff;font-weight:850;cursor:pointer}
.demo-result{display:none;margin-top:11px;padding:11px;border-radius:10px;background:#e4f9ee;color:#176c47;font-weight:800}.demo-result.show{display:block}
.rp-grid{display:grid;grid-template-columns:320px 1fr;gap:20px;background:#1e1e1e;color:#fff;padding:18px;border-radius:17px}
.keys{padding:16px;border-radius:8px;background:#292929}.keys h3{text-align:center;font-weight:500;letter-spacing:0}.keys-list{display:grid;grid-template-columns:1fr 1fr;gap:14px 20px;margin-top:20px;font-size:.78rem}.keys-list b{color:#00efff}
.rp-faq h3{text-align:center;font-weight:500;letter-spacing:0}.faq-items{display:grid;gap:8px;margin-top:14px}.faq-item{border:1px solid #fff;border-radius:6px;overflow:hidden;background:#080808}
.faq-q{width:100%;padding:10px 12px;border:0;background:#080808;color:#fff;display:flex;justify-content:space-between;text-align:left;cursor:pointer}.faq-a{display:none;padding:11px;background:#161616;color:#ddd}.faq-item.open .faq-a{display:block}
.demo-form{display:grid;gap:11px;background:#000;color:#fff;padding:20px;border-radius:17px}.demo-form label{font-size:.78rem}.demo-form input,.demo-form textarea{width:100%;padding:10px;border:0;border-radius:4px;background:#f2f2f4;color:#111}.demo-form textarea{min-height:72px}
.webhook{background:#1e1f22;color:#fff;padding:20px;border-radius:17px}.discord-msg{display:grid;grid-template-columns:44px 1fr;gap:12px}.avatar{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,#232634,#5865f2);display:grid;place-items:center;font-weight:900}
.msg-head{display:flex;gap:7px;align-items:center}.bot{font-size:.64rem;padding:2px 5px;border-radius:4px;background:#5865f2}.embed{margin-top:9px;max-width:380px;padding:12px;border-radius:4px;background:#2b2d31;border-left:4px solid #3b82f6}.embed-field{margin-top:9px}.embed-field strong{display:block;font-size:.8rem}.embed-field span{font-size:.8rem;color:#dbdee1}

.process{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.process-card{min-height:235px;padding:22px;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.025)}
.process-no{font-size:.8rem;color:#9b8cff;font-weight:900;letter-spacing:.12em}.process-card h3{margin-top:32px}.process-card p{margin-top:9px;color:var(--muted)}
.faq-grid-page{display:grid;grid-template-columns:.72fr 1.28fr;gap:52px}details{padding:20px 0;border-bottom:1px solid var(--line)}summary{list-style:none;cursor:pointer;display:flex;justify-content:space-between;gap:18px;font-weight:850}summary:after{content:"+";color:#aa9fff;font-size:1.35rem}details[open] summary:after{content:"−"}details p{padding-top:11px;color:var(--muted)}
.cta{padding:52px;border-radius:27px;background:linear-gradient(135deg,#6f5cff,#4979ff);display:flex;align-items:center;justify-content:space-between;gap:32px}.cta p{margin-top:13px;color:#e0e4ff}.cta-actions{display:flex;gap:10px;flex-wrap:wrap}
footer{padding:32px 0;border-top:1px solid var(--line);color:#7d8593}.footer-row{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
.reveal{opacity:0;transform:translateY(20px);transition:.65s ease}.reveal.visible{opacity:1;transform:none}

@media(max-width:980px){
  .links,.nav-actions{display:none}.menu{display:grid;place-items:center}.links.open{display:flex;position:absolute;top:82px;left:16px;right:16px;flex-direction:column;padding:18px;background:#10131a;border:1px solid var(--line);border-radius:18px}
  .hero-grid,.section-head,.offer-explorer,.preview-shell,.faq-grid-page{grid-template-columns:1fr}.section-head .lead{justify-self:start}.category-menu{position:static;grid-template-columns:repeat(2,1fr)}
  .process{grid-template-columns:repeat(2,1fr)}.rp-grid{grid-template-columns:1fr}
}
@media(max-width:680px){
  .section{padding:74px 0}.hero{padding-top:124px}h1{font-size:clamp(3rem,15vw,4.8rem)}
  .reviews-head{align-items:flex-start;flex-direction:column}.reviews-track{grid-auto-columns:minmax(86vw,1fr)}
  .category-menu{grid-template-columns:1fr}.service-row{grid-template-columns:1fr}.service-actions{justify-content:space-between}.price{text-align:left}
  .process{grid-template-columns:1fr}.keys-list{grid-template-columns:1fr}.cta{padding:30px 22px;flex-direction:column;align-items:flex-start}
  .cta-actions,.hero-actions{width:100%}.cta .btn,.hero-actions .btn{width:100%}.brand span{font-size:.82rem}
}


/* =========================================================
   FINALNY REDESIGN 2026
========================================================= */
:root{--bg:#090b10;--panel:#11141b;--panel2:#171b24;--text:#f5f7fb;--muted:#949cab;--line:rgba(255,255,255,.085);--accent:#7667ff;--accent2:#65d9ff;--green:#69e0ad;--paper:#0d1016;--ink:#f5f7fb;--max:1220px;--r:24px;--shadow:0 30px 90px rgba(0,0,0,.42)}
body{background:radial-gradient(circle at 10% 2%,rgba(118,103,255,.13),transparent 30%),radial-gradient(circle at 92% 8%,rgba(101,217,255,.07),transparent 25%),var(--bg);font-weight:450}
.section{padding:112px 0}.section-head{display:grid;grid-template-columns:1fr minmax(320px,520px);align-items:end;gap:48px;margin-bottom:52px}.section-head .lead{justify-self:end}
.nav{box-shadow:0 18px 55px rgba(0,0,0,.28)}.links a{position:relative}.links a:after{content:"";position:absolute;left:0;right:100%;bottom:-7px;height:1px;background:linear-gradient(90deg,var(--accent),var(--accent2));transition:.25s}.links a:hover:after{right:0}
.hero{min-height:100vh;padding:165px 0 105px}.hero-grid{gap:72px}.hero h1{max-width:760px}.hero .lead{max-width:690px}.hero-card{transform:perspective(1000px) rotateY(-2deg);transition:.45s}.hero-card:hover{transform:perspective(1000px) rotateY(0) translateY(-5px)}.hero-offer{min-height:58px;transition:.22s}.hero-offer:hover{transform:translateX(5px);border-color:rgba(118,103,255,.35);background:#1a1e29}.hero-meta{padding-top:3px}

/* oferta */
.offer-explorer{grid-template-columns:255px minmax(0,1fr);gap:26px}.category-menu{padding:10px;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.018)}.category-btn{padding:16px;border:0;background:transparent}.category-btn.active{background:linear-gradient(135deg,#fff,#eceeff);box-shadow:0 12px 30px rgba(0,0,0,.22)}.category-intro{padding:30px 30px 27px;margin-bottom:16px;background:linear-gradient(135deg,rgba(118,103,255,.09),rgba(255,255,255,.018))}.service-row{padding:24px 26px;border-radius:20px;background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012));transition:.25s}.service-row:hover{transform:translateY(-3px);border-color:rgba(118,103,255,.3);box-shadow:0 22px 48px rgba(0,0,0,.2)}.service-actions .btn{min-height:42px;padding:0 15px}.price{margin-bottom:9px}.tag{padding:5px 9px}

/* demo – ciemne, spójne z resztą */
.preview-section{position:relative;background:linear-gradient(180deg,#0d1016,#0a0c11);color:var(--text);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.preview-section:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 75% 20%,rgba(101,217,255,.06),transparent 28%);pointer-events:none}.preview-section .eyebrow{color:#c8c1ff}.preview-section .lead{color:var(--muted)}.preview-shell{grid-template-columns:230px minmax(0,1fr);gap:16px;position:relative}.preview-nav{padding:10px;border:1px solid var(--line);border-radius:20px;background:#10131a}.preview-tab{border:0;background:transparent;color:#9fa7b5;padding:14px 15px}.preview-tab:hover{color:#fff}.preview-tab.active{background:linear-gradient(135deg,var(--accent),#5870ff);color:#fff;box-shadow:0 12px 28px rgba(118,103,255,.22)}.preview-stage{min-height:610px;border-color:var(--line);background:#0f1218;box-shadow:0 30px 80px rgba(0,0,0,.35)}.stage-top{border-color:var(--line);color:#fff}.stage-top span{font-size:.7rem;letter-spacing:.16em;color:#858e9e}.stage-body{padding:24px}.demo-card{background:#151922;border-color:var(--line);color:#fff;padding:25px}.demo-card p{color:var(--muted)}.demo-result{background:rgba(105,224,173,.1);color:#8ef0c5;border:1px solid rgba(105,224,173,.18)}.demo-form{background:#151922;border:1px solid var(--line)}.demo-form input,.demo-form textarea{background:#0d1016;color:#fff;border:1px solid var(--line)}

/* zamówienie */
.order-process{padding:116px 0;background:radial-gradient(circle at 16% 20%,rgba(118,103,255,.09),transparent 34%),#090b10;border-bottom:1px solid var(--line)}.order-process__heading{margin-bottom:62px}.order-process__heading h2{font-size:clamp(2.4rem,5vw,4.4rem)}.order-process__timeline{gap:14px}.order-step{min-height:300px;padding:26px;border-radius:20px}.order-step__number{width:58px;height:58px;border-radius:16px;margin-bottom:28px}.order-step:hover{transform:translateY(-6px)}.order-process__footer{margin-top:36px}

/* ==================================================
   PORTFOLIO
================================================== */

.portfolio-section {
    --portfolio-bg: #0b0c10;
    --portfolio-panel: #12151c;
    --portfolio-text: #f7f8fb;
    --portfolio-muted: #949dac;
    --portfolio-line: rgba(255, 255, 255, 0.09);
    --portfolio-accent: #7868ff;
    --portfolio-accent-light: #9e94ff;
    --portfolio-blue: #58d5ff;
    --portfolio-green: #74e7b6;

    position: relative;
    padding: 110px 0;
    overflow: hidden;

    color: var(--portfolio-text);

    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(120, 104, 255, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(88, 213, 255, 0.055),
            transparent 27%
        ),
        var(--portfolio-bg);
}

.portfolio-section::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 15%,
        black 85%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
}

.portfolio-container {
    position: relative;
    z-index: 2;

    width: min(1200px, calc(100% - 36px));
    margin: 0 auto;
}

/* ==================================================
   NAGŁÓWEK
================================================== */

.portfolio-heading {
    margin-bottom: 58px;
}

.portfolio-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 18px;

    color: #c7c1ff;

    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.portfolio-eyebrow::before {
    content: "";

    width: 32px;
    height: 1px;

    background: linear-gradient(
        90deg,
        var(--portfolio-accent),
        var(--portfolio-blue)
    );
}

.portfolio-heading__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
    align-items: end;
    gap: 50px;
}

.portfolio-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(2.8rem, 5.8vw, 5.8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.portfolio-heading h2 span {
    color: transparent;

    background: linear-gradient(
        90deg,
        #ffffff,
        #b9b3ff 60%,
        #82ddff
    );

    background-clip: text;
    -webkit-background-clip: text;
}

.portfolio-heading p {
    margin: 0;

    color: var(--portfolio-muted);

    font-size: 1.02rem;
    line-height: 1.75;
}

/* ==================================================
   FILTRY
================================================== */

.portfolio-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 28px;
}

.portfolio-filters {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;

    padding: 7px;

    border: 1px solid var(--portfolio-line);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.018);
}

.portfolio-filter {
    min-height: 42px;
    padding: 0 15px;

    border: 0;
    border-radius: 11px;

    background: transparent;
    color: #929ba9;

    font: inherit;
    font-size: 0.84rem;
    font-weight: 850;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.portfolio-filter:hover {
    color: #ffffff;
}

.portfolio-filter.active {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        var(--portfolio-accent),
        #5870ff
    );

    box-shadow: 0 12px 28px rgba(120, 104, 255, 0.23);
}

.portfolio-filter:active {
    transform: scale(0.97);
}

.portfolio-count {
    flex-shrink: 0;

    color: #7f8897;

    font-size: 0.83rem;
    font-weight: 800;
}

/* ==================================================
   SIATKA
================================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}

.portfolio-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 470px;
    padding: 18px;

    overflow: hidden;

    border: 1px solid var(--portfolio-line);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-card[hidden] {
    display: none;
}

.portfolio-card:hover {
    transform: translateY(-7px);

    border-color: rgba(120, 104, 255, 0.4);

    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.34),
        0 0 40px rgba(120, 104, 255, 0.06);
}

.portfolio-card--featured {
    grid-column: span 2;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(88, 213, 255, 0.11),
            transparent 35%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(120, 104, 255, 0.13),
            transparent 37%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );
}

/* ==================================================
   ZDJĘCIE
================================================== */

.portfolio-card__image {
    position: relative;

    width: 100%;
    height: 215px;

    margin: 0 0 23px;
    padding: 0;

    overflow: hidden;

    border: 1px solid var(--portfolio-line);
    border-radius: 18px;

    background: #10131a;

    cursor: zoom-in;
}

.portfolio-card--featured .portfolio-card__image {
    height: 290px;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.portfolio-card:hover .portfolio-card__image img {
    transform: scale(1.045);
    filter: brightness(1.06);
}

.portfolio-card__image::after {
    content: "Powiększ ↗";

    position: absolute;
    right: 13px;
    bottom: 13px;

    padding: 8px 11px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;

    background: rgba(7, 9, 13, 0.74);
    backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.04em;

    opacity: 0;
    transform: translateY(7px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.portfolio-card__image:hover::after {
    opacity: 1;
    transform: none;
}

.portfolio-image-label {
    position: absolute;
    z-index: 2;
    top: 13px;
    left: 13px;

    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;

    background: rgba(7, 9, 13, 0.72);
    backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-card__image.is-missing {
    display: grid;
    place-items: center;

    padding: 25px;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(120, 104, 255, 0.23),
            transparent 35%
        ),
        #10131a;

    color: #8992a1;

    font-size: 0.78rem;
    font-weight: 800;

    cursor: default;
}

.portfolio-card__image.is-missing::after {
    display: none;
}

.portfolio-card__image.is-missing img {
    display: none;
}

/* ==================================================
   TREŚĆ KARTY
================================================== */

.portfolio-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.portfolio-type {
    color: var(--portfolio-accent-light);

    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.portfolio-badge {
    padding: 6px 9px;

    border: 1px solid var(--portfolio-line);
    border-radius: 999px;

    color: #98a1af;

    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.portfolio-card h3 {
    margin: 17px 0 0;

    color: #ffffff;

    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.portfolio-card p {
    margin: 12px 0 0;

    color: var(--portfolio-muted);

    font-size: 0.92rem;
    line-height: 1.7;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 18px;
}

.portfolio-tags span {
    padding: 6px 9px;

    border: 1px solid rgba(120, 104, 255, 0.18);
    border-radius: 999px;

    background: rgba(120, 104, 255, 0.1);
    color: #cdc7ff;

    font-size: 0.7rem;
    font-weight: 800;
}

.portfolio-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    margin-top: auto;
    padding-top: 22px;

    border-top: 1px solid var(--portfolio-line);
}

.portfolio-status {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #8f98a6;

    font-size: 0.75rem;
    font-weight: 800;
}

.portfolio-status i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--portfolio-green);

    box-shadow: 0 0 12px rgba(116, 231, 182, 0.58);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none;
}

.portfolio-link span {
    transition: transform 0.2s ease;
}

.portfolio-link:hover span {
    transform: translate(3px, -3px);
}

/* ==================================================
   CTA
================================================== */

.portfolio-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;

    margin-top: 20px;
    padding: 35px 37px;

    border: 1px solid rgba(120, 104, 255, 0.22);
    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(120, 104, 255, 0.14),
            rgba(88, 213, 255, 0.045)
        );
}

.portfolio-cta__label {
    display: block;

    margin-bottom: 8px;

    color: #aaa1ff;

    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.portfolio-cta h3 {
    margin: 0;

    color: #ffffff;

    font-size: 1.7rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.portfolio-cta p {
    max-width: 700px;

    margin: 9px 0 0;

    color: var(--portfolio-muted);

    line-height: 1.7;
}

.portfolio-cta__button {
    flex-shrink: 0;

    min-height: 50px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 14px;

    background: #ffffff;
    color: #111318;

    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.portfolio-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 35px rgba(0, 0, 0, 0.25);
}

/* ==================================================
   LIGHTBOX
================================================== */

body.portfolio-lightbox-open {
    overflow: hidden;
}

.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: none;
    place-items: center;

    padding: 24px;

    background: rgba(3, 4, 7, 0.9);
    backdrop-filter: blur(14px);
}

.portfolio-lightbox.open {
    display: grid;
}

.portfolio-lightbox__dialog {
    position: relative;

    width: min(1200px, 100%);
    max-height: 92vh;
}

.portfolio-lightbox__image {
    width: 100%;
    max-height: 85vh;

    display: block;
    object-fit: contain;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 19px;

    background: #0b0d12;

    box-shadow: 0 35px 110px rgba(0, 0, 0, 0.68);
}

.portfolio-lightbox__close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 13px;

    background: rgba(8, 10, 15, 0.8);
    color: #ffffff;

    font-size: 1.4rem;

    cursor: pointer;

    backdrop-filter: blur(10px);
}

.portfolio-lightbox__caption {
    margin: 10px 0 0;

    color: #b6bdc8;

    font-size: 0.88rem;
    text-align: center;
}

/* ==================================================
   RESPONSYWNOŚĆ
================================================== */

@media (max-width: 1050px) {
    .portfolio-heading__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-heading p {
        max-width: 680px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-card--featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .portfolio-section {
        padding: 80px 0;
    }

    .portfolio-heading {
        margin-bottom: 42px;
    }

    .portfolio-heading h2 {
        font-size: clamp(2.7rem, 14vw, 4.4rem);
    }

    .portfolio-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .portfolio-filters {
        width: 100%;

        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .portfolio-filter {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card,
    .portfolio-card--featured {
        grid-column: auto;
        min-height: auto;
    }

    .portfolio-card__image,
    .portfolio-card--featured .portfolio-card__image {
        height: 215px;
    }

    .portfolio-card__image::after {
        display: none;
    }

    .portfolio-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .portfolio-cta {
        align-items: flex-start;
        flex-direction: column;

        padding: 28px 24px;
    }

    .portfolio-cta__button {
        width: 100%;
    }

    .portfolio-lightbox {
        padding: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-card,
    .portfolio-card__image img,
    .portfolio-filter,
    .portfolio-link span,
    .portfolio-cta__button {
        transition: none;
    }
}
/* faq / cta */
details{padding:22px 0}summary{font-size:1.04rem}.cta{position:relative;overflow:hidden;background:linear-gradient(135deg,#6958f4,#4778f1);box-shadow:0 28px 75px rgba(80,89,240,.25)}.cta:after{content:"";position:absolute;width:300px;height:300px;border:1px solid rgba(255,255,255,.15);border-radius:50%;right:-110px;top:-130px}.cta>*{position:relative;z-index:1}
footer{background:#080a0e}

@media(max-width:1050px){.portfolio-grid{grid-template-columns:1fr 1fr}.portfolio-card--featured{grid-column:1/-1}.section-head{grid-template-columns:1fr}.section-head .lead{justify-self:start}.hero-grid{gap:42px}}
@media(max-width:760px){.section{padding:82px 0}.hero{min-height:auto}.hero-card{transform:none}.portfolio-grid{grid-template-columns:1fr}.portfolio-card--featured{grid-column:auto}.portfolio-toolbar{align-items:flex-start;flex-direction:column}.portfolio-filters{width:100%;overflow-x:auto;flex-wrap:nowrap}.portfolio-filter{white-space:nowrap}.portfolio-cta{align-items:flex-start;flex-direction:column;padding:28px 24px}.preview-shell{grid-template-columns:1fr}.preview-nav{grid-template-columns:repeat(2,1fr)}.order-process__heading{text-align:left}.order-process__heading h2,.order-process__heading p{margin-left:0}.order-process__tag{margin-left:0}}


/* =========================================================
   OFERTA PREMIUM — POPRAWIONY UKŁAD
========================================================= */

.offer-catalog{
    --offer-card:#11151d;
    --offer-card-2:#151a24;
    --offer-line:rgba(255,255,255,.085);
    --offer-muted:#959eae;
    padding:118px 0;
    background:
        radial-gradient(circle at 8% 12%,rgba(118,103,255,.12),transparent 30%),
        radial-gradient(circle at 92% 15%,rgba(101,217,255,.07),transparent 25%),
        linear-gradient(180deg,#090b10,#0c0f15);
}

.offer-catalog .portfolio-heading{
    margin-bottom:34px;
}

.offer-catalog .portfolio-heading__grid{
    grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
    gap:60px;
}

.offer-catalog .portfolio-heading h2{
    max-width:760px;
    font-size:clamp(3rem,6.2vw,6rem);
}

.offer-catalog .portfolio-heading p{
    max-width:560px;
    font-size:1.04rem;
}

.offer-benefits{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
    margin:0 0 24px;
}

.offer-benefits span{
    min-height:48px;
    padding:0 15px;
    display:flex;
    align-items:center;
    gap:9px;
    border:1px solid var(--offer-line);
    border-radius:14px;
    background:rgba(255,255,255,.022);
    color:#a8b0bd;
    font-size:.78rem;
    font-weight:800;
}

.offer-benefits i{
    width:7px;
    height:7px;
    flex:0 0 7px;
    border-radius:50%;
    background:#74e7b6;
    box-shadow:0 0 12px rgba(116,231,182,.55);
}

.offer-catalog .portfolio-toolbar{
    position:sticky;
    top:102px;
    z-index:30;
    margin-bottom:28px;
    padding:10px;
    border:1px solid var(--offer-line);
    border-radius:20px;
    background:rgba(10,12,17,.82);
    backdrop-filter:blur(18px);
    box-shadow:0 18px 50px rgba(0,0,0,.25);
}

.offer-catalog .portfolio-filters{
    padding:0;
    border:0;
    background:transparent;
}

.offer-catalog .portfolio-filter{
    min-height:44px;
    padding:0 17px;
    border:1px solid transparent;
}

.offer-catalog .portfolio-filter:not(.active):hover{
    border-color:rgba(255,255,255,.09);
    background:rgba(255,255,255,.035);
}

.offer-catalog .portfolio-count{
    padding-right:8px;
    color:#aeb6c3;
}

.offer-catalog .portfolio-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.offer-catalog .portfolio-card{
    min-height:100%;
    padding:16px;
    border-radius:26px;
    background:
        radial-gradient(circle at 90% 0%,rgba(118,103,255,.075),transparent 32%),
        linear-gradient(145deg,rgba(255,255,255,.042),rgba(255,255,255,.012));
    box-shadow:
        0 24px 64px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.035);
}

.offer-catalog .portfolio-card--featured{
    grid-column:1/-1;
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(330px,.8fr);
    column-gap:26px;
    align-items:start;
}

.offer-catalog .portfolio-card--featured .portfolio-card__gallery{
    grid-row:1 / span 5;
    margin:0;
}

.offer-catalog .portfolio-card--featured .portfolio-card__top{
    margin-top:8px;
}

.offer-catalog .portfolio-card--featured .portfolio-card__footer{
    align-self:end;
}

.offer-catalog .portfolio-card__image{
    border-radius:18px;
    background:#0b0e14;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.02);
}

.offer-catalog .portfolio-card:not(.portfolio-card--featured) .portfolio-card__image{
    height:245px;
}

.offer-catalog .portfolio-card--featured .portfolio-card__image{
    height:420px;
}

.offer-catalog .portfolio-card__thumbnails{
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:8px;
}

.offer-catalog .portfolio-thumbnail{
    height:66px;
    border-radius:10px;
}

.offer-catalog .portfolio-card__top{
    margin-top:4px;
}

.offer-catalog .portfolio-type{
    color:#aaa1ff;
    line-height:1.55;
}

.offer-catalog .portfolio-badge{
    color:#e6e3ff;
    border-color:rgba(118,103,255,.28);
    background:rgba(118,103,255,.1);
}

.offer-catalog .portfolio-card h3{
    margin-top:15px;
    font-size:clamp(1.6rem,2.6vw,2.35rem);
}

.offer-catalog .portfolio-card p{
    color:var(--offer-muted);
    font-size:.94rem;
}

.offer-catalog .portfolio-tags{
    margin-top:18px;
}

.offer-catalog .portfolio-tags span{
    background:rgba(118,103,255,.08);
}

.offer-catalog .portfolio-card__footer{
    margin-top:24px;
    padding-top:18px;
}

.offer-catalog .portfolio-status{
    color:#a0a8b5;
}

.offer-catalog .portfolio-link{
    min-height:43px;
    padding:0 15px;
    border:1px solid rgba(118,103,255,.28);
    border-radius:12px;
    background:linear-gradient(135deg,#7667ff,#5870ff);
    box-shadow:0 12px 28px rgba(118,103,255,.2);
    transition:transform .22s ease,box-shadow .22s ease,filter .22s ease;
}

.offer-catalog .portfolio-link:hover{
    transform:translateY(-2px);
    box-shadow:0 17px 35px rgba(118,103,255,.3);
    filter:brightness(1.06);
}

.offer-catalog .portfolio-cta{
    margin-top:22px;
    padding:38px 40px;
    background:
        radial-gradient(circle at 90% 10%,rgba(101,217,255,.13),transparent 32%),
        linear-gradient(135deg,rgba(118,103,255,.18),rgba(255,255,255,.025));
}

@media(max-width:1050px){
    .offer-benefits{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .offer-catalog .portfolio-card--featured{
        display:flex;
        flex-direction:column;
    }

    .offer-catalog .portfolio-card--featured .portfolio-card__gallery{
        width:100%;
        margin-bottom:23px;
    }

    .offer-catalog .portfolio-card--featured .portfolio-card__image{
        height:340px;
    }
}

@media(max-width:760px){
    .offer-catalog{
        padding:82px 0;
    }

    .offer-catalog .portfolio-heading__grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .offer-benefits{
        grid-template-columns:1fr;
    }

    .offer-catalog .portfolio-toolbar{
        position:static;
        align-items:stretch;
    }

    .offer-catalog .portfolio-grid{
        grid-template-columns:1fr;
    }

    .offer-catalog .portfolio-card,
    .offer-catalog .portfolio-card--featured{
        grid-column:auto;
    }

    .offer-catalog .portfolio-card__image,
    .offer-catalog .portfolio-card--featured .portfolio-card__image,
    .offer-catalog .portfolio-card:not(.portfolio-card--featured) .portfolio-card__image{
        height:220px;
    }

    .offer-catalog .portfolio-card__thumbnails{
        grid-template-columns:repeat(5,minmax(72px,1fr));
        overflow-x:auto;
        padding-bottom:4px;
    }

    .offer-catalog .portfolio-card__footer{
        align-items:stretch;
    }

    .offer-catalog .portfolio-link{
        width:100%;
        justify-content:center;
    }
}


/* Dodatkowe oferty pobrane z panelu Discord */
.offer-service-cover{
    position:relative;
    height:245px;
    margin-bottom:23px;
    padding:24px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    border:1px solid var(--offer-line);
    border-radius:18px;
    background:#10131a;
}

.offer-service-cover::before,
.offer-service-cover::after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.offer-service-cover::before{
    width:250px;
    height:250px;
    top:-120px;
    right:-70px;
    background:rgba(118,103,255,.22);
    filter:blur(4px);
}

.offer-service-cover::after{
    width:180px;
    height:180px;
    left:-75px;
    bottom:-110px;
    border:1px solid rgba(255,255,255,.08);
}

.offer-service-cover__icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-58%);
    color:rgba(255,255,255,.88);
    font-size:clamp(3.2rem,7vw,5.8rem);
    font-weight:950;
    letter-spacing:-.08em;
    text-shadow:0 18px 50px rgba(0,0,0,.4);
}

.offer-service-cover__copy{
    position:relative;
    z-index:2;
    display:grid;
    gap:3px;
}

.offer-service-cover__copy small{
    color:#a8b0bf;
    font-size:.7rem;
    font-weight:850;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.offer-service-cover__copy strong{
    color:#fff;
    font-size:1.05rem;
}

.offer-service-cover--argentum{background:linear-gradient(145deg,#15151d,#2a2130)}
.offer-service-cover--status{background:linear-gradient(145deg,#101821,#102b27)}
.offer-service-cover--status::before{background:rgba(105,224,173,.19)}
.offer-service-cover--hosting{background:linear-gradient(145deg,#111825,#172447)}
.offer-service-cover--config{background:linear-gradient(145deg,#191520,#2a1d38)}
.offer-service-cover--applications{background:linear-gradient(145deg,#111826,#1e2a45)}
.offer-service-cover--css{background:linear-gradient(145deg,#151525,#28204a)}
.offer-service-cover--forms{background:linear-gradient(145deg,#171322,#302044)}
.offer-service-cover--webhook{background:linear-gradient(145deg,#111727,#242257)}
.offer-service-cover--dispatch{background:linear-gradient(145deg,#101c18,#193329)}
.offer-service-cover--dispatch::before{background:rgba(105,224,173,.16)}

.offer-details{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:18px;
}

.offer-details span{
    padding:8px 10px;
    border:1px solid rgba(255,255,255,.075);
    border-radius:10px;
    background:rgba(255,255,255,.025);
    color:#9fa8b6;
    font-size:.72rem;
    font-weight:700;
}

.offer-details b{
    color:#d7dbe4;
    margin-right:4px;
}

@media(max-width:760px){
    .offer-service-cover{height:210px}
}


/* =========================================================
   HERO — NOWY KATALOG KATEGORII
========================================================= */

.hero-catalog{
  transform:none !important;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}

.hero-catalog:hover{
  transform:translateY(-5px) !important;
}

.catalog-window{
  position:relative;
  overflow:hidden;
  padding:18px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:28px;
  background:
    radial-gradient(circle at 90% 0%,rgba(101,217,255,.09),transparent 30%),
    radial-gradient(circle at 10% 100%,rgba(118,103,255,.13),transparent 38%),
    linear-gradient(145deg,rgba(20,24,34,.98),rgba(10,13,19,.98));
  box-shadow:
    0 35px 100px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.catalog-window::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.16;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:26px 26px;
  mask-image:linear-gradient(to bottom,#000,transparent 70%);
}

.catalog-window__top,
.catalog-window__intro,
.catalog-categories,
.catalog-window__footer{
  position:relative;
  z-index:1;
}

.catalog-window__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:4px 4px 18px;
  border-bottom:1px solid rgba(255,255,255,.075);
}

.catalog-window__brand{
  display:flex;
  align-items:center;
  gap:11px;
}

.catalog-logo{
  width:39px;
  height:39px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:linear-gradient(135deg,#7667ff,#4e7eff);
  color:#fff;
  font-size:.7rem;
  font-weight:950;
  letter-spacing:.04em;
  box-shadow:0 10px 25px rgba(118,103,255,.28);
}

.catalog-window__brand strong{
  display:block;
  color:#f7f8fb;
  font-size:.88rem;
}

.catalog-window__brand small{
  display:block;
  margin-top:2px;
  color:#7f8999;
  font-size:.67rem;
}

.catalog-status{
  display:flex;
  align-items:center;
  gap:7px;
  padding:7px 10px;
  border:1px solid rgba(105,224,173,.16);
  border-radius:999px;
  background:rgba(105,224,173,.07);
  color:#9aeac8;
  font-size:.65rem;
  font-weight:850;
}

.catalog-status i,
.catalog-window__footer span i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#69e0ad;
  box-shadow:0 0 12px rgba(105,224,173,.7);
}

.catalog-window__intro{
  padding:22px 4px 16px;
}

.catalog-window__intro span{
  color:#9186ff;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.catalog-window__intro h3{
  margin-top:7px;
  font-size:1.35rem;
  letter-spacing:-.025em;
}

.catalog-categories{
  display:grid;
  gap:9px;
}

.catalog-category{
  min-height:72px;
  padding:10px 12px;
  display:grid;
  grid-template-columns:46px minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  border:1px solid rgba(255,255,255,.075);
  border-radius:17px;
  background:rgba(255,255,255,.025);
  color:#fff;
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.catalog-category:hover{
  transform:translateX(5px);
  border-color:rgba(118,103,255,.34);
  background:rgba(255,255,255,.05);
  box-shadow:0 14px 32px rgba(0,0,0,.2);
}

.catalog-category__icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  background:rgba(255,255,255,.055);
  color:#fff;
  font-size:.7rem;
  font-weight:950;
}

.catalog-category__icon svg{
  width:23px;
  height:23px;
  fill:currentColor;
}

.catalog-category--discord .catalog-category__icon{
  color:#a8a1ff;
  background:rgba(88,101,242,.13);
}

.catalog-category--fivem .catalog-category__icon{
  color:#78e7bd;
  background:rgba(105,224,173,.1);
}

.catalog-category--www .catalog-category__icon{
  color:#79dfff;
  background:rgba(101,217,255,.1);
}

.catalog-category--automation .catalog-category__icon{
  color:#ffd58a;
  background:rgba(255,197,92,.1);
}

.catalog-category__copy{
  min-width:0;
}

.catalog-category__copy strong{
  display:block;
  font-size:.9rem;
}

.catalog-category__copy small{
  display:block;
  overflow:hidden;
  margin-top:3px;
  color:#858f9f;
  font-size:.68rem;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.catalog-category__meta{
  display:flex;
  align-items:center;
  gap:10px;
}

.catalog-category__meta b{
  min-width:31px;
  padding:5px 7px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  color:#c5cad4;
  background:rgba(255,255,255,.025);
  font-size:.65rem;
  text-align:center;
}

.catalog-category__meta i{
  color:#7b8493;
  font-style:normal;
  transition:transform .22s ease,color .22s ease;
}

.catalog-category:hover .catalog-category__meta i{
  transform:translateX(3px);
  color:#fff;
}

.catalog-window__footer{
  margin-top:14px;
  padding:15px 4px 3px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-top:1px solid rgba(255,255,255,.07);
}

.catalog-window__footer span{
  display:flex;
  align-items:center;
  gap:8px;
  color:#828c9c;
  font-size:.67rem;
  font-weight:750;
}

.catalog-window__footer a{
  color:#c6c0ff;
  font-size:.69rem;
  font-weight:850;
}

.catalog-window__footer a:hover{
  color:#fff;
}

@media(max-width:680px){
  .catalog-window{padding:14px;border-radius:22px}
  .catalog-category{min-height:68px}
  .catalog-window__footer{
    align-items:flex-start;
    flex-direction:column;
  }
}


/* =========================================================
   KOMPLETNY REDESIGN TELEFONU
   Aktywny wyłącznie do 720 px
========================================================= */
@media (max-width: 720px) {
  :root{
    --mobile-space:18px;
    --mobile-radius:22px;
  }

  html{scroll-padding-top:88px}
  body{
    background:
      radial-gradient(circle at 15% 2%,rgba(118,103,255,.16),transparent 22rem),
      radial-gradient(circle at 100% 12%,rgba(101,217,255,.08),transparent 18rem),
      #090b10;
  }

  .container,
  .portfolio-container,
  .order-process__container{
    width:calc(100% - 28px) !important;
  }

  .section,
  .portfolio-section,
  .offer-catalog,
  .order-process{
    padding:76px 0 !important;
  }

  h1,h2,h3{letter-spacing:-.045em}
  h2{font-size:clamp(2.25rem,11.5vw,3.5rem)}
  .lead{font-size:.96rem;line-height:1.75}

  /* NAV */
  .nav-wrap{top:10px}
  .nav{
    min-height:62px;
    padding:0 9px 0 10px;
    border-radius:18px;
    background:rgba(10,12,17,.9);
    box-shadow:0 18px 45px rgba(0,0,0,.35);
  }
  .brand{gap:9px}
  .brand img{width:38px;height:38px;border-radius:11px}
  .brand span{max-width:150px;font-size:.73rem;line-height:1.15}
  .menu{
    width:42px;height:42px;
    border-radius:12px;
    font-size:0;
  }
  .menu::before{
    content:"";
    width:18px;height:12px;
    border-top:2px solid #fff;
    border-bottom:2px solid #fff;
    box-shadow:0 -5px 0 -3px #fff inset;
  }
  .links.open{
    top:70px;
    left:14px;right:14px;
    gap:5px;
    padding:10px;
    border-radius:18px;
    background:rgba(12,15,21,.98);
    box-shadow:0 25px 70px rgba(0,0,0,.52);
  }
  .links.open a{
    padding:13px 14px;
    border-radius:11px;
    background:rgba(255,255,255,.025);
  }

  /* HERO */
  .hero{
    min-height:auto;
    padding:112px 0 68px !important;
  }
  .hero-grid{
    display:flex;
    flex-direction:column;
    gap:34px;
  }
  .hero .eyebrow{
    margin-bottom:14px;
    font-size:.65rem;
    letter-spacing:.12em;
  }
  .hero h1{
    max-width:100%;
    font-size:clamp(3rem,15vw,4.35rem);
    line-height:.94;
  }
  .hero .lead{
    margin-top:20px;
    font-size:.98rem;
  }
  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
    margin-top:24px;
  }
  .hero-actions .btn{
    width:100%;
    min-height:51px;
    border-radius:14px;
  }
  .hero-meta{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
    margin-top:18px;
    font-size:.72rem;
  }
  .hero-meta span{
    min-height:44px;
    padding:9px 10px;
    border:1px solid var(--line);
    border-radius:12px;
    background:rgba(255,255,255,.025);
  }
  .hero-meta span:first-child{grid-column:1/-1}

  .hero-catalog{
    width:100%;
    transform:none !important;
  }
  .catalog-window{
    padding:13px;
    border-radius:22px;
  }
  .catalog-window__top{padding:3px 2px 14px}
  .catalog-window__intro{padding:18px 3px 13px}
  .catalog-window__intro h3{font-size:1.2rem}
  .catalog-categories{gap:8px}
  .catalog-category{
    min-height:67px;
    grid-template-columns:42px minmax(0,1fr) auto;
    padding:9px 10px;
    border-radius:15px;
  }
  .catalog-category__icon{
    width:42px;height:42px;
    border-radius:12px;
  }
  .catalog-category__copy strong{font-size:.84rem}
  .catalog-category__copy small{font-size:.63rem}
  .catalog-category__meta b{display:none}
  .catalog-window__footer{
    margin-top:12px;
    padding-top:13px;
    flex-direction:column;
    align-items:stretch;
  }
  .catalog-window__footer a{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(118,103,255,.22);
    border-radius:12px;
    background:rgba(118,103,255,.08);
  }

  /* NAGŁÓWKI SEKCJI */
  .section-head,
  .portfolio-heading__grid{
    display:block !important;
  }
  .section-head{
    margin-bottom:30px;
  }
  .section-head h2,
  .portfolio-heading h2{
    margin-bottom:17px;
    font-size:clamp(2.45rem,12vw,3.75rem);
    line-height:.96;
  }
  .section-head .lead,
  .portfolio-heading p{
    max-width:none;
    font-size:.94rem;
    line-height:1.7;
  }
  .portfolio-heading{
    margin-bottom:28px;
  }
  .portfolio-eyebrow,
  .eyebrow{
    font-size:.65rem;
  }

  /* OFERTA */
  .offer-benefits{
    display:flex;
    margin:0 -14px 18px;
    padding:0 14px 4px;
    gap:8px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }
  .offer-benefits::-webkit-scrollbar{display:none}
  .offer-benefits span{
    flex:0 0 auto;
    min-height:42px;
    padding:0 12px;
    border-radius:12px;
    font-size:.68rem;
    scroll-snap-align:start;
  }

  .offer-catalog .portfolio-toolbar{
    position:sticky !important;
    top:80px;
    z-index:50;
    margin:0 -14px 20px;
    padding:8px 14px;
    border-width:1px 0;
    border-radius:0;
    background:rgba(9,11,16,.92);
    backdrop-filter:blur(18px);
  }
  .portfolio-filters{
    width:100%;
    flex-wrap:nowrap;
    overflow-x:auto;
    padding:0 0 3px !important;
    gap:7px;
    border:0 !important;
    background:transparent !important;
    scrollbar-width:none;
  }
  .portfolio-filters::-webkit-scrollbar{display:none}
  .portfolio-filter{
    flex:0 0 auto;
    min-height:39px;
    padding:0 14px;
    border:1px solid var(--line) !important;
    border-radius:999px !important;
    background:rgba(255,255,255,.025) !important;
    font-size:.74rem;
  }
  .portfolio-filter.active{
    border-color:transparent !important;
    background:linear-gradient(135deg,var(--accent),#5870ff) !important;
  }
  .portfolio-count{display:none}

  .offer-catalog .portfolio-grid,
  .portfolio-grid{
    display:grid;
    grid-template-columns:1fr !important;
    gap:14px;
  }
  .offer-catalog .portfolio-card,
  .offer-catalog .portfolio-card--featured,
  .portfolio-card,
  .portfolio-card--featured{
    grid-column:auto !important;
    display:flex !important;
    min-height:0;
    padding:12px;
    border-radius:20px;
  }
  .offer-catalog .portfolio-card--featured .portfolio-card__gallery{
    width:100%;
    margin-bottom:17px;
  }
  .offer-catalog .portfolio-card__image,
  .offer-catalog .portfolio-card--featured .portfolio-card__image,
  .offer-catalog .portfolio-card:not(.portfolio-card--featured) .portfolio-card__image,
  .portfolio-card__image{
    height:205px !important;
    margin-bottom:16px;
    border-radius:15px;
  }
  .portfolio-card__image::after{display:none}
  .portfolio-image-label{
    top:10px;left:10px;
    padding:6px 8px;
    border-radius:8px;
    font-size:.58rem;
  }
  .portfolio-card__thumbnails{
    display:flex !important;
    margin:0 -12px 17px;
    padding:0 12px 3px;
    gap:7px;
    overflow-x:auto;
    scrollbar-width:none;
  }
  .portfolio-card__thumbnails::-webkit-scrollbar{display:none}
  .portfolio-thumbnail{
    flex:0 0 76px;
    height:54px !important;
    border-radius:9px;
  }
  .portfolio-card__top{
    align-items:flex-start;
    gap:8px;
  }
  .portfolio-type{
    max-width:68%;
    font-size:.59rem;
    line-height:1.45;
  }
  .portfolio-badge{
    font-size:.54rem;
    padding:5px 7px;
  }
  .portfolio-card h3{
    margin-top:13px;
    font-size:1.55rem;
    line-height:1.03;
  }
  .portfolio-card p{
    margin-top:10px;
    font-size:.84rem;
    line-height:1.65;
  }
  .portfolio-tags{
    margin-top:14px;
    gap:5px;
  }
  .portfolio-tags span{
    padding:5px 8px;
    font-size:.63rem;
  }
  .offer-details{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
    margin-top:14px;
  }
  .offer-details span{
    padding:8px;
    font-size:.63rem;
    line-height:1.4;
  }
  .portfolio-card__footer{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    margin-top:18px;
    padding-top:15px;
  }
  .portfolio-status{font-size:.68rem}
  .portfolio-link{
    width:100%;
    min-height:46px;
    justify-content:center;
    border-radius:12px;
  }
  .offer-service-cover{
    height:190px !important;
    margin-bottom:16px;
    border-radius:15px;
  }
  .offer-service-cover__icon{font-size:3.6rem}
  .portfolio-cta{
    margin-top:14px;
    padding:24px 18px;
    border-radius:20px;
    flex-direction:column;
    align-items:stretch;
  }
  .portfolio-cta h3{font-size:1.55rem}
  .portfolio-cta p{font-size:.84rem}
  .portfolio-cta__button{width:100%;min-height:48px}

  /* DEMO */
  .preview-section{
    background:
      radial-gradient(circle at 100% 0%,rgba(101,217,255,.075),transparent 22rem),
      #0b0e14;
  }
  .preview-shell{display:block}
  .preview-nav{
    position:sticky;
    top:80px;
    z-index:40;
    display:flex;
    margin:0 -14px 12px;
    padding:9px 14px;
    gap:7px;
    overflow-x:auto;
    border-width:1px 0;
    border-radius:0;
    background:rgba(11,14,20,.94);
    scrollbar-width:none;
  }
  .preview-nav::-webkit-scrollbar{display:none}
  .preview-tab{
    flex:0 0 auto;
    width:auto;
    min-height:39px;
    padding:0 13px;
    border:1px solid var(--line);
    border-radius:999px;
    font-size:.72rem;
  }
  .preview-stage{
    min-height:0;
    border-radius:20px;
  }
  .stage-top{
    height:49px;
    padding:0 13px;
  }
  .stage-top strong{font-size:.78rem}
  .stage-top span{font-size:.57rem}
  .stage-body{padding:12px}
  .demo-card,
  .demo-form,
  .webhook{
    padding:16px;
    border-radius:14px;
  }
  .demo-card h3{font-size:1.2rem}
  .demo-card p{font-size:.82rem}
  .demo-action{width:100%;min-height:44px}
  .rp-grid{
    display:block;
    padding:10px;
    border-radius:13px;
  }
  .keys{margin-bottom:10px;padding:13px}
  .keys-list{
    grid-template-columns:1fr 1fr;
    gap:9px 12px;
    font-size:.68rem;
  }
  .discord-msg{grid-template-columns:35px 1fr;gap:9px}
  .avatar{width:35px;height:35px}
  .embed{max-width:100%;padding:10px}
  .demo-form input,.demo-form textarea{
    min-height:44px;
    font-size:16px;
  }

  /* JAK ZAMÓWIĆ */
  .order-process__heading{
    margin:0 0 34px;
    text-align:left;
  }
  .order-process__tag{
    padding:7px 12px;
    font-size:.63rem;
  }
  .order-process__heading h2{
    margin:20px 0 15px;
    font-size:clamp(2.35rem,12vw,3.5rem);
    line-height:.98;
  }
  .order-process__heading h2 strong{display:inline}
  .order-process__heading p{
    margin:0;
    font-size:.92rem;
    line-height:1.7;
  }
  .order-process__timeline{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    counter-reset:steps;
  }
  .order-process__timeline::before{display:none}
  .order-step{
    min-height:0;
    padding:17px;
    display:grid;
    grid-template-columns:48px 1fr;
    gap:14px;
    border-radius:17px;
  }
  .order-step::after{display:none}
  .order-step__number{
    width:48px;height:48px;
    margin:0;
    border-radius:14px;
    font-size:.88rem;
  }
  .order-step__label{margin-bottom:5px;font-size:.58rem}
  .order-step h3{margin:0 0 7px;font-size:1.15rem}
  .order-step p{font-size:.79rem;line-height:1.6}
  .order-process__footer{
    align-items:stretch;
    margin-top:25px;
    padding-top:22px;
    text-align:center;
  }
  .order-process__footer p{font-size:.82rem}
  .order-process__button{width:100%;min-height:49px}

  /* FAQ */
  .faq-grid-page{
    display:block;
  }
  .faq-grid-page > div:first-child{
    margin-bottom:24px;
  }
  details{
    padding:0;
    margin-bottom:9px;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:15px;
    background:rgba(255,255,255,.022);
  }
  summary{
    min-height:60px;
    padding:14px;
    align-items:center;
    font-size:.86rem;
  }
  summary::after{
    width:28px;height:28px;
    flex:0 0 28px;
    display:grid;
    place-items:center;
    border-radius:9px;
    background:rgba(118,103,255,.1);
    font-size:1rem;
  }
  details p{
    padding:0 14px 15px;
    font-size:.82rem;
    line-height:1.65;
  }

  /* CTA */
  .cta{
    padding:25px 18px;
    border-radius:21px;
    background:
      radial-gradient(circle at 100% 0%,rgba(255,255,255,.18),transparent 45%),
      linear-gradient(145deg,#6758ef,#426feb);
  }
  .cta h2{font-size:2.35rem}
  .cta p{font-size:.9rem;line-height:1.65}
  .cta-actions{
    display:grid;
    width:100%;
    gap:8px;
  }
  .cta .btn{
    width:100%;
    min-height:49px;
  }

  /* FOOTER */
  footer{padding:25px 0}
  .footer-row{
    display:grid;
    gap:7px;
    text-align:center;
    font-size:.7rem;
  }

  /* LIGHTBOX */
  .portfolio-lightbox{padding:10px}
  .portfolio-lightbox__dialog{max-height:96vh}
  .portfolio-lightbox__image{border-radius:14px}
  .portfolio-lightbox__close{
    top:8px;right:8px;
    width:40px;height:40px;
    border-radius:11px;
  }
  .portfolio-lightbox__caption{font-size:.72rem}
}

@media (max-width: 390px) {
  .hero h1{font-size:2.85rem}
  .hero-meta{grid-template-columns:1fr}
  .hero-meta span:first-child{grid-column:auto}
  .catalog-category__copy small{max-width:170px}
  .offer-details{grid-template-columns:1fr}
  .keys-list{grid-template-columns:1fr}
}



/* =========================================================
   MINIMALISTYCZNA STOPKA NA SAMYM DOLE STRONY
========================================================= */

.bottom-footer{
  position:relative;
  padding:0 0 22px;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 100%,rgba(118,103,255,.08),transparent 28rem),
    #080a0e;
  color:var(--text);
}

.bottom-footer::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:-210px;
  width:620px;
  height:320px;
  transform:translateX(-50%);
  border-radius:50%;
  background:rgba(118,103,255,.07);
  filter:blur(80px);
  pointer-events:none;
}

.bottom-footer .container{
  position:relative;
  z-index:1;
}

.bottom-footer__line{
  position:relative;
  height:1px;
  margin-bottom:24px;
  overflow:hidden;
  background:rgba(255,255,255,.085);
}

.bottom-footer__line::after{
  content:"";
  position:absolute;
  top:0;
  left:-28%;
  width:28%;
  height:100%;
  background:linear-gradient(90deg,transparent,#8a7cff,#65d9ff,transparent);
  animation:footerLineMove 7s linear infinite;
}

.bottom-footer__row{
  min-height:86px;
  display:grid;
  grid-template-columns:minmax(230px,1fr) auto minmax(230px,1fr);
  align-items:center;
  gap:30px;
}

.bottom-footer__copyright{
  display:flex;
  align-items:center;
  gap:12px;
}

.bottom-footer__mark{
  width:40px;
  height:40px;
  flex:0 0 40px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  background:
    linear-gradient(145deg,rgba(118,103,255,.24),rgba(101,217,255,.08));
  color:#fff;
  font-size:.68rem;
  font-weight:950;
  letter-spacing:.04em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 26px rgba(0,0,0,.25);
}

.bottom-footer__copyright strong{
  display:block;
  color:#dfe3eb;
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.055em;
}

.bottom-footer__copyright small{
  display:block;
  margin-top:3px;
  color:#697281;
  font-size:.63rem;
  font-weight:650;
}

.bottom-footer__nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:5px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:13px;
  background:rgba(255,255,255,.018);
}

.bottom-footer__nav a{
  position:relative;
  padding:8px 11px;
  border-radius:9px;
  color:#7f8998;
  font-size:.7rem;
  font-weight:800;
  transition:
    color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.bottom-footer__nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.05);
  transform:translateY(-1px);
}

.bottom-footer__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}

.bottom-footer__status{
  display:flex;
  align-items:center;
  gap:7px;
  color:#7d8796;
  font-size:.67rem;
  font-weight:750;
  white-space:nowrap;
}

.bottom-footer__status i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#69e0ad;
  box-shadow:
    0 0 0 4px rgba(105,224,173,.07),
    0 0 13px rgba(105,224,173,.62);
  animation:footerStatusPulse 2.4s ease-in-out infinite;
}

.bottom-footer__top{
  min-height:40px;
  padding:0 11px 0 13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:12px;
  background:rgba(255,255,255,.025);
  color:#a9b0bc;
  font-size:.67rem;
  font-weight:850;
  white-space:nowrap;
  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.bottom-footer__top b{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:rgba(118,103,255,.11);
  color:#bbb4ff;
  font-size:.82rem;
  transition:transform .2s ease;
}

.bottom-footer__top:hover{
  color:#fff;
  border-color:rgba(118,103,255,.3);
  background:rgba(118,103,255,.07);
  transform:translateY(-2px);
}

.bottom-footer__top:hover b{
  transform:translateY(-2px);
}

@keyframes footerLineMove{
  to{left:110%}
}

@keyframes footerStatusPulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.55;transform:scale(.82)}
}

@media(max-width:900px){
  .bottom-footer__row{
    grid-template-columns:1fr auto;
  }

  .bottom-footer__nav{
    grid-column:1/-1;
    grid-row:1;
    justify-self:center;
  }

  .bottom-footer__copyright{
    grid-column:1;
    grid-row:2;
  }

  .bottom-footer__actions{
    grid-column:2;
    grid-row:2;
  }
}

@media(max-width:680px){
  .bottom-footer{
    padding-bottom:16px;
  }

  .bottom-footer__line{
    margin-bottom:18px;
  }

  .bottom-footer__row{
    min-height:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:16px;
  }

  .bottom-footer__nav{
    order:1;
    width:100%;
    justify-content:flex-start;
    overflow-x:auto;
    scrollbar-width:none;
  }

  .bottom-footer__nav::-webkit-scrollbar{
    display:none;
  }

  .bottom-footer__nav a{
    flex:0 0 auto;
  }

  .bottom-footer__copyright{
    order:2;
  }

  .bottom-footer__actions{
    order:3;
    justify-content:space-between;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.06);
  }

  .bottom-footer__top span{
    display:none;
  }

  .bottom-footer__top{
    width:42px;
    padding:0;
  }

  .bottom-footer__top b{
    background:transparent;
  }
}

@media(prefers-reduced-motion:reduce){
  .bottom-footer__line::after,
  .bottom-footer__status i{
    animation:none;
  }
}


/* Wyróżniona oferta */
.portfolio-badge--popular {
    border-color: rgba(118, 103, 255, 0.5);
    background: linear-gradient(135deg, #7667ff, #5870ff);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(118, 103, 255, 0.24);
}



/* Footer V2 - większy */
.bottom-footer{
    padding:24px 0 34px !important;
}
.bottom-footer__line{
    height:2px !important;
    margin-bottom:36px !important;
}
.bottom-footer__row{
    min-height:130px !important;
    grid-template-columns:minmax(320px,1fr) auto minmax(320px,1fr) !important;
}
.bottom-footer__mark{
    width:58px !important;
    height:58px !important;
    flex:0 0 58px !important;
    border-radius:18px !important;
    font-size:.95rem !important;
}
.bottom-footer__copyright strong{
    font-size:1.08rem !important;
    letter-spacing:.08em !important;
}
.bottom-footer__copyright small{
    font-size:.82rem !important;
    margin-top:6px !important;
}
.bottom-footer__nav{
    gap:8px !important;
    padding:8px !important;
    border-radius:18px !important;
}
.bottom-footer__nav a{
    padding:12px 18px !important;
    font-size:.9rem !important;
}
.bottom-footer__status{
    font-size:.88rem !important;
}
.bottom-footer__status i{
    width:9px !important;
    height:9px !important;
}
.bottom-footer__top{
    min-height:54px !important;
    padding:0 18px !important;
    font-size:.86rem !important;
    border-radius:16px !important;
}
.bottom-footer__top b{
    width:34px !important;
    height:34px !important;
    font-size:1rem !important;
}
@media(max-width:680px){
 .bottom-footer{padding:18px 0 24px !important;}
 .bottom-footer__row{min-height:0 !important;}
 .bottom-footer__mark{width:52px!important;height:52px!important;}
 .bottom-footer__copyright strong{font-size:1rem!important;}
 .bottom-footer__nav a{font-size:.82rem!important;padding:11px 15px!important;}
 .bottom-footer__top{width:100%!important;justify-content:center!important;}
 .bottom-footer__top span{display:block!important;}
}



/* =========================================================
   FOOTER SHOWCASE — VERCEL / LINEAR INSPIRED
========================================================= */

.bottom-footer--showcase{
  position:relative;
  min-height:340px;
  padding-top:120px !important;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 105%,rgba(118,103,255,.16),transparent 34rem),
    radial-gradient(circle at 85% 18%,rgba(101,217,255,.075),transparent 22rem),
    linear-gradient(180deg,#090b10,#07090d);
}

.bottom-footer--showcase::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to bottom,rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(to right,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,transparent 0,#000 32%,#000 100%);
  opacity:.24;
}

.bottom-footer__wordmark{
  position:absolute;
  z-index:0;
  top:22px;
  left:50%;
  width:max-content;
  transform:translateX(-50%);
  color:transparent;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.025)
    );
  -webkit-background-clip:text;
  background-clip:text;
  font-size:clamp(5rem,13vw,12rem);
  font-weight:950;
  line-height:.82;
  letter-spacing:-.075em;
  white-space:nowrap;
  user-select:none;
  pointer-events:none;
  filter:drop-shadow(0 20px 55px rgba(0,0,0,.25));
}

.bottom-footer--showcase .container{
  position:relative;
  z-index:2;
}

.bottom-footer--showcase .bottom-footer__line{
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.14) 16%,
      rgba(255,255,255,.14) 84%,
      transparent
    );
}

.bottom-footer--showcase .bottom-footer__row{
  position:relative;
  padding:26px 28px;
  border:1px solid rgba(255,255,255,.085);
  border-radius:24px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.038),rgba(255,255,255,.012));
  backdrop-filter:blur(16px);
  box-shadow:
    0 30px 90px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.bottom-footer--showcase .bottom-footer__mark{
  background:
    radial-gradient(circle at 30% 20%,rgba(255,255,255,.14),transparent 35%),
    linear-gradient(145deg,#7667ff,#4d6ef6);
  box-shadow:
    0 16px 36px rgba(118,103,255,.28),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.bottom-footer--showcase .bottom-footer__nav{
  background:rgba(8,10,15,.48);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.025);
}

.bottom-footer--showcase .bottom-footer__top{
  background:
    linear-gradient(135deg,rgba(118,103,255,.11),rgba(101,217,255,.05));
}

.bottom-footer--showcase .bottom-footer__status{
  color:#98a2b2;
}

.bottom-footer--showcase .bottom-footer__copyright strong{
  color:#fff;
}

@media(max-width:900px){
  .bottom-footer--showcase{
    min-height:390px;
    padding-top:125px !important;
  }

  .bottom-footer__wordmark{
    top:40px;
    font-size:clamp(4.6rem,15vw,8rem);
  }
}

@media(max-width:680px){
  .bottom-footer--showcase{
    min-height:0;
    padding-top:92px !important;
  }

  .bottom-footer__wordmark{
    top:32px;
    font-size:18vw;
    letter-spacing:-.065em;
  }

  .bottom-footer--showcase .bottom-footer__row{
    padding:20px 16px;
    border-radius:20px;
  }

  .bottom-footer--showcase .bottom-footer__copyright{
    align-items:flex-start;
  }

  .bottom-footer--showcase .bottom-footer__nav{
    padding:7px;
  }
}