/* ===== Informatyk dla firm Bydgoszcz ===== */
/* Light theme — consistent with net.css / outsourcing.css */

/* Center subtitles inside centered section heads — net-section-subtitle has text-align:left !important + max-width:800px in net.css */
.inf-jobs__head .net-section-subtitle,
.inf-process__head .net-section-subtitle,
.inf-plans__head .net-section-subtitle,
.inf-cases__head .net-section-subtitle,
.inf-related .net-section-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Shared: section eyebrow label (used by jobs/process/plans/cases/bio) */
.net-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4426FF;
    background: rgba(68, 38, 255, 0.08);
    border: 1px solid rgba(68, 38, 255, 0.15);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.net-section-eyebrow i {
    font-size: 12px;
}

/* ============================== */
/* 1. HERO                        */
/* ============================== */
.inf-hero {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1133 55%, #141a4e 100%);
    padding: 60px 50px;
    margin-bottom: 80px;
}

.inf-hero::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(68, 38, 255, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.inf-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 138, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.inf-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- LEFT --- */
.inf-hero__left {
    color: #fff;
}

.inf-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9b8aff;
    margin-bottom: 24px;
    background: rgba(155, 138, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(155, 138, 255, 0.25);
}

.inf-hero__title {
    font-size: clamp(38px, 5.2vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -0.5px;
}

.inf-hero__accent {
    background: linear-gradient(135deg, #9b8aff 0%, #4426FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inf-hero__desc {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 32px;
    max-width: 540px;
}

/* --- Phone CTA (the primary CTA on this landing) --- */
.inf-hero__phone {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #4426FF 0%, #6a4dff 100%);
    border-radius: 18px;
    padding: 18px 28px;
    text-decoration: none;
    color: #fff !important;
    box-shadow: 0 12px 35px rgba(68, 38, 255, 0.45);
    transition: transform .25s ease, box-shadow .25s ease;
    margin-bottom: 24px;
}

.inf-hero__phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(68, 38, 255, 0.55);
    color: #fff !important;
}

.inf-hero__phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.inf-hero__phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.inf-hero__phone-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.inf-hero__phone-number {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.inf-hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.inf-hero__buttons .net-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.inf-hero__buttons .net-btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.inf-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
}

.inf-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.inf-hero__trust-item i {
    color: #9b8aff;
    font-size: 14px;
}

/* --- RIGHT: persona + ticker --- */
.inf-hero__right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.inf-hero__persona {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.inf-hero__persona-img {
    position: relative;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(155, 138, 255, 0.45);
}

.inf-hero__persona-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inf-hero__persona-pulse {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #22c55e;
    border: 3px solid #0d1133;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: infPulse 2s infinite;
}

@keyframes infPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.inf-hero__persona-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.inf-hero__persona-role {
    font-size: 13px;
    color: #9b8aff;
    margin-bottom: 10px;
}

.inf-hero__persona-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inf-hero__persona-meta span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.inf-hero__persona-meta i {
    color: #22c55e;
    font-size: 11px;
}

/* Ticker card */
.inf-hero__ticker {
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(155, 138, 255, 0.18);
    border-radius: 18px;
    padding: 20px 22px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.inf-hero__ticker-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(155, 138, 255, 0.15);
}

.inf-hero__ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: infPulse 2s infinite;
}

.inf-hero__ticker-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9b8aff;
}

.inf-hero__ticker-line {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.inf-hero__ticker-line:last-child {
    border-bottom: none;
}

.inf-hero__ticker-line i {
    color: #9b8aff;
    width: 16px;
    font-size: 12px;
}


/* ============================== */
/* 2. JOBS — typowe zgłoszenia    */
/* ============================== */
.inf-jobs {
    padding: 30px 0 60px;
}

.inf-jobs__head {
    text-align: center;
    margin-bottom: 50px;
}

.inf-jobs__grid {
    margin-top: 30px;
}

.inf-job {
    background: #fff;
    border: 1px solid rgba(68, 38, 255, 0.08);
    border-radius: 18px;
    padding: 26px 24px;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.inf-job:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(68, 38, 255, 0.12);
    border-color: rgba(68, 38, 255, 0.25);
}

.inf-job__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(68, 38, 255, 0.12) 0%, rgba(155, 138, 255, 0.12) 100%);
    color: #4426FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.inf-job__title {
    font-size: 17px;
    font-weight: 700;
    color: #0a0a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.inf-job__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}


/* ============================== */
/* 3. PROCESS — 4 kroki           */
/* ============================== */
.inf-process {
    padding: 60px 0;
    background: linear-gradient(135deg, #f7f6ff 0%, #ecebff 100%);
    border-radius: 30px;
    margin: 60px 0;
    padding-left: 40px;
    padding-right: 40px;
}

.inf-process__head {
    text-align: center;
    margin-bottom: 40px;
}

.inf-process__steps {
    margin-top: 30px;
}

.inf-step {
    background: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    height: 100%;
    position: relative;
    box-shadow: 0 6px 20px rgba(68, 38, 255, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.inf-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(68, 38, 255, 0.14);
}

.inf-step__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(68, 38, 255, 0.08);
    line-height: 1;
    letter-spacing: -1px;
}

.inf-step__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4426FF 0%, #6a4dff 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(68, 38, 255, 0.3);
}

.inf-step__title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a1a;
    margin-bottom: 8px;
}

.inf-step__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}


/* ============================== */
/* 4. BIO — Janek persona         */
/* ============================== */
.inf-bio {
    padding: 70px 0;
}

.inf-bio__photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(68, 38, 255, 0.18);
    aspect-ratio: 4 / 5;
}

.inf-bio__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.inf-bio__photo:hover img {
    transform: scale(1.04);
}

.inf-bio__photo-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.inf-bio__photo-tag i {
    color: #9b8aff;
}

.inf-bio__lead {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin: 20px 0 32px;
}

.inf-bio__creds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.inf-bio__cred {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.inf-bio__cred > i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(68, 38, 255, 0.12), rgba(155, 138, 255, 0.12));
    color: #4426FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.inf-bio__cred strong {
    display: block;
    font-size: 15px;
    color: #0a0a1a;
    margin-bottom: 2px;
}

.inf-bio__cred span {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.inf-bio__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4426FF;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: border-color .2s ease, gap .2s ease;
}

.inf-bio__link:hover {
    border-bottom-color: #4426FF;
    gap: 12px;
    color: #4426FF;
}


/* ============================== */
/* 5. PLANS — pakiety cenowe      */
/* ============================== */
.inf-plans {
    padding: 70px 0;
}

.inf-plans__head {
    text-align: center;
    margin-bottom: 50px;
}

.inf-plans__grid {
    margin-top: 30px;
    align-items: stretch;
}

.inf-plan {
    background: #fff;
    border: 1px solid rgba(68, 38, 255, 0.1);
    border-radius: 22px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.inf-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(68, 38, 255, 0.12);
}

.inf-plan--featured {
    border: 2px solid #4426FF;
    background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
    box-shadow: 0 18px 50px rgba(68, 38, 255, 0.18);
    transform: scale(1.02);
}

.inf-plan--featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 28px 70px rgba(68, 38, 255, 0.22);
}

.inf-plan__badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(68, 38, 255, 0.08);
    color: #4426FF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.inf-plan__badge--featured {
    background: linear-gradient(135deg, #4426FF 0%, #6a4dff 100%);
    color: #fff;
}

.inf-plan__name {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a1a;
    margin-bottom: 14px;
}

.inf-plan__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.inf-plan__price-from {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.inf-plan__price-val {
    font-size: 42px;
    font-weight: 800;
    color: #0a0a1a;
    letter-spacing: -1px;
    line-height: 1;
}

.inf-plan__price-cur {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

.inf-plan__price-net {
    font-size: 12px;
    color: #999;
    margin-left: 4px;
}

.inf-plan__sub {
    font-size: 13px;
    color: #666;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(68, 38, 255, 0.15);
}

.inf-plan__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
}

.inf-plan__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.inf-plan__list i {
    color: #22c55e;
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

.inf-plan__cta {
    display: block;
    text-align: center;
    background: #fff;
    border: 2px solid #4426FF;
    color: #4426FF;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    margin-bottom: 14px;
}

.inf-plan__cta:hover {
    background: #4426FF;
    color: #fff;
    transform: translateY(-2px);
}

.inf-plan__cta--featured {
    background: linear-gradient(135deg, #4426FF 0%, #6a4dff 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(68, 38, 255, 0.35);
}

.inf-plan__cta--featured:hover {
    background: linear-gradient(135deg, #3a1fe0 0%, #5a3ee5 100%);
    color: #fff;
    box-shadow: 0 14px 35px rgba(68, 38, 255, 0.45);
}

.inf-plan__hint {
    font-size: 12px;
    color: #888;
    text-align: center;
    line-height: 1.4;
}

.inf-plans__foot {
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(68, 38, 255, 0.05);
    padding: 14px 22px;
    border-radius: 50px;
    width: auto;
    margin-left: 50%;
    transform: translateX(-50%);
}

.inf-plans__foot i {
    color: #4426FF;
}


/* ============================== */
/* 6. CASES                       */
/* ============================== */
.inf-cases {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1133 55%, #141a4e 100%);
    border-radius: 30px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 60px 0;
}

.inf-cases__head {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.inf-cases__head .net-section-title {
    color: #fff;
}

.inf-cases__head .net-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.inf-cases__head .net-section-eyebrow {
    color: #9b8aff;
    background: rgba(155, 138, 255, 0.1);
    border-color: rgba(155, 138, 255, 0.25);
}

.inf-case {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(155, 138, 255, 0.18);
    border-radius: 20px;
    padding: 26px;
    height: 100%;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.inf-case:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 138, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.inf-case__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9b8aff;
    background: rgba(155, 138, 255, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.inf-case__title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.inf-case__body {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
}

.inf-case__result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px dashed rgba(155, 138, 255, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
}

.inf-case__result i {
    font-size: 14px;
}


/* ============================== */
/* 7. RELATED                     */
/* ============================== */
.inf-related {
    padding: 60px 0;
}

.inf-related__card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(68, 38, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: #0a0a1a;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.inf-related__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(68, 38, 255, 0.12);
    border-color: rgba(68, 38, 255, 0.3);
    color: #0a0a1a;
}

.inf-related__card i {
    font-size: 24px;
    color: #4426FF;
    margin-bottom: 6px;
}

.inf-related__card strong {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a1a;
}

.inf-related__card span {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}


/* ============================== */
/* MOBILE (max 911px)             */
/* ============================== */
@media (max-width: 911px) {
    .inf-hero {
        padding: 40px 24px;
        border-radius: 22px;
    }

    .inf-hero__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .inf-hero__title {
        font-size: clamp(32px, 8vw, 44px);
    }

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

    .inf-hero__phone {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }

    .inf-hero__phone-number {
        font-size: 20px;
    }

    .inf-hero__buttons {
        width: 100%;
    }

    .inf-hero__buttons .net-btn {
        flex: 1 1 auto;
        text-align: center;
        justify-content: center;
    }

    .inf-hero__persona {
        padding: 18px;
        gap: 14px;
    }

    .inf-hero__persona-img {
        width: 76px;
        height: 76px;
    }

    .inf-hero__persona-name {
        font-size: 17px;
    }

    .inf-process,
    .inf-cases {
        padding: 50px 20px;
        border-radius: 22px;
        margin: 40px 0;
    }

    .inf-step__num {
        font-size: 36px;
    }

    .inf-bio {
        padding: 40px 0;
    }

    .inf-bio__creds {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .inf-plan--featured {
        transform: none;
    }

    .inf-plan--featured:hover {
        transform: translateY(-5px);
    }

    .inf-plans__foot {
        margin-left: 0;
        transform: none;
        font-size: 12px;
        text-align: left;
        padding: 12px 18px;
    }
}

@media (max-width: 600px) {
    .inf-hero {
        padding: 32px 18px;
    }

    .inf-hero__phone {
        gap: 12px;
        padding: 14px 16px;
    }

    .inf-hero__phone-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .inf-hero__phone-number {
        font-size: 18px;
    }

    .inf-job,
    .inf-step,
    .inf-plan,
    .inf-case {
        padding: 22px 18px;
    }

    .inf-plan__price-val {
        font-size: 36px;
    }
}
