/* ============================================================
   LTS MARKET
   NOWE.CSS

   TYLKO STRONA NOWE.
   HEADER I FOOTER POCHODZĄ WYŁĄCZNIE Z MAIN.CSS.
   ============================================================ */


/* ============================================================
   01. PAGE TYPOGRAPHY
   ============================================================ */

.nowe-section-title {
    margin: 0;

    color: var(--color-text);

    font-size: clamp(2.2rem, 9vw, 4.4rem);
    font-weight: 700;
    line-height: 0.98;

    letter-spacing: -0.055em;
}

.nowe-section-title span {
    display: block;

    color: var(--color-blue);
}


/* ============================================================
   02. HERO
   ============================================================ */

.nowe-hero {
    position: relative;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(circle at 78% 35%,
            rgba(22, 140, 255, 0.14),
            transparent 32%),
        linear-gradient(135deg,
            #02080d 0%,
            #050d14 58%,
            #081722 100%);
}

.nowe-hero__container {
    position: relative;

    display: grid;
    grid-template-columns: 1fr;

    gap: 36px;

    min-height: 760px;

    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 70px;
}

.nowe-hero__content {
    position: relative;
    z-index: 2;

    align-self: center;

    max-width: 820px;
}

.nowe-hero__label {
    color: var(--color-blue);
}

.nowe-hero__title {
    max-width: 880px;

    margin: 0 0 24px;

    color: #ffffff;

    font-size: clamp(2.7rem, 12vw, 5rem);
    font-weight: 700;
    line-height: 0.96;

    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.nowe-hero__title span {
    display: block;

    margin-top: 8px;

    color: var(--color-blue);
}

.nowe-hero__description {
    max-width: 650px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.92rem;
    line-height: 1.75;
}

.nowe-hero__actions {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-bottom: 38px;
}

.nowe-hero__actions .button {
    width: 100%;
}

.nowe-hero__stats {
    display: grid;
    grid-template-columns: 1fr;

    max-width: 720px;

    border-top: 1px solid var(--color-border-dark);
}

.nowe-hero__stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom: 1px solid var(--color-border-dark);
}

.nowe-hero__stat strong {
    color: #ffffff;

    font-size: 0.9rem;
    font-weight: 600;
}

.nowe-hero__stat span {
    color: rgba(255, 255, 255, 0.42);

    font-size: 0.67rem;
}


/* ============================================================
   03. HERO VISUAL
   ============================================================ */

.nowe-hero__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 540px;

    margin-inline: auto;

    aspect-ratio: 1 / 1;
}

.nowe-hero__visual::before {
    position: absolute;

    width: 78%;
    height: 78%;

    border-radius: 50%;

    background: rgba(22, 140, 255, 0.08);

    filter: blur(80px);

    content: "";
}

.nowe-hero__visual img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

.nowe-hero__product-info {
    position: absolute;
    right: 0;
    bottom: 10px;

    z-index: 3;

    display: flex;
    flex-direction: column;

    min-width: 165px;

    padding: 16px 18px;

    border-left: 2px solid var(--color-blue);

    background: rgba(2, 8, 13, 0.88);

    backdrop-filter: blur(12px);
}

.nowe-hero__product-info span {
    margin-bottom: 4px;

    color: var(--color-blue);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nowe-hero__product-info strong {
    color: #ffffff;

    font-size: 1.05rem;
}

.nowe-hero__product-info small {
    color: rgba(255, 255, 255, 0.45);
}


/* ============================================================
   04. INTRO
   ============================================================ */

.nowe-intro {
    padding: 72px 0;

    background: #ffffff;

    border-bottom: 1px solid var(--color-border);
}

.nowe-intro__grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 32px;
}

.nowe-intro__copy {
    max-width: 650px;
}

.nowe-intro__copy p {
    margin: 0 0 16px;

    color: var(--color-text-soft);

    font-size: 0.9rem;
    line-height: 1.75;
}

.nowe-intro__copy p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   05. PRODUCTS
   ============================================================ */

.nowe-products {
    padding: 76px 0;

    background: var(--color-light);
}

.nowe-heading {
    max-width: 760px;

    margin-bottom: 42px;
}

.nowe-heading__copy {
    max-width: 600px;

    margin: 18px 0 0;

    color: var(--color-text-soft);

    font-size: 0.9rem;
    line-height: 1.7;
}

.nowe-products__list {
    border-top: 1px solid var(--color-border);
}

.nowe-product {
    display: grid;
    grid-template-columns: 1fr;

    padding: 46px 0;

    border-bottom: 1px solid var(--color-border);
}


/* ============================================================
   06. PRODUCT VISUAL
   ============================================================ */

.nowe-product__visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin-bottom: 30px;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background:
        radial-gradient(circle at 50% 45%,
            rgba(22, 140, 255, 0.06),
            transparent 54%),
        #edf2f6;
}

.nowe-product__visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transition: transform 240ms ease;
}

.nowe-product:hover .nowe-product__visual img {
    transform: scale(1.018);
}

.nowe-product__badge {
    position: absolute;
    top: 16px;
    left: 16px;

    z-index: 3;

    padding: 7px 10px;

    color: #ffffff;
    background: var(--color-blue);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ============================================================
   07. PRODUCT CONTENT
   ============================================================ */

.nowe-product__content {
    align-self: center;
}

.nowe-product__heading {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-bottom: 20px;
}

.nowe-product__type {
    display: block;

    margin-bottom: 7px;

    color: var(--color-blue);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nowe-product__heading h3 {
    margin: 0;

    color: var(--color-text);

    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 700;
    line-height: 0.96;

    letter-spacing: -0.055em;
}

.nowe-product__price {
    display: flex;
    align-items: baseline;

    gap: 6px;
}

.nowe-product__price span {
    color: var(--color-text-soft);

    font-size: 0.7rem;
}

.nowe-product__price strong {
    color: var(--color-text);

    font-size: 1rem;
    font-weight: 650;
}

.nowe-product__lead {
    max-width: 620px;

    margin: 0 0 26px;

    color: var(--color-text-soft);

    font-size: 0.9rem;
    line-height: 1.72;
}


/* ============================================================
   08. SPECS
   ============================================================ */

.nowe-specs {
    display: grid;
    grid-template-columns: 1fr;

    margin-bottom: 25px;

    border-top: 1px solid var(--color-border);
}

.nowe-specs>div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px solid var(--color-border);
}

.nowe-specs span {
    color: var(--color-text-soft);

    font-size: 0.7rem;
}

.nowe-specs strong {
    color: var(--color-text);

    font-size: 0.74rem;
    font-weight: 650;

    text-align: right;
}


/* ============================================================
   09. FEATURES
   ============================================================ */

.nowe-features {
    display: grid;
    grid-template-columns: 1fr;

    gap: 8px;

    margin: 0 0 28px;
    padding: 0;

    list-style: none;
}

.nowe-features li {
    position: relative;

    padding-left: 19px;

    color: var(--color-text-soft);

    font-size: 0.78rem;
    line-height: 1.5;
}

.nowe-features li::before {
    position: absolute;
    top: 0.5em;
    left: 1px;

    width: 6px;
    height: 6px;

    border: 1px solid var(--color-blue);

    content: "";
}


/* ============================================================
   10. SUPPORT
   ============================================================ */

.nowe-support {
    padding: 78px 0;

    color: #ffffff;

    background:
        radial-gradient(circle at 90% 10%,
            rgba(22, 140, 255, 0.08),
            transparent 32%),
        var(--color-bg);
}

.nowe-heading--dark .nowe-section-title {
    color: #ffffff;
}

.nowe-support__grid {
    display: grid;
    grid-template-columns: 1fr;

    border-top: 1px solid var(--color-border-dark);
    border-left: 1px solid var(--color-border-dark);
}

.nowe-support__card {
    min-height: 205px;

    padding: 26px 22px;

    border-right: 1px solid var(--color-border-dark);
    border-bottom: 1px solid var(--color-border-dark);
}

.nowe-support__icon {
    width: 40px;
    height: 40px;

    margin-bottom: 28px;

    color: var(--color-blue);
}

.nowe-support__icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nowe-support__card h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 1.05rem;
    font-weight: 600;
}

.nowe-support__card p {
    max-width: 320px;

    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.75rem;
    line-height: 1.62;
}


/* ============================================================
   11. FINANCING
   ============================================================ */

.nowe-financing {
    padding: 78px 0;

    background: var(--color-light);
}

.nowe-financing__grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 38px;
}

.nowe-financing__copy {
    max-width: 650px;

    margin: 18px 0 0;

    color: var(--color-text-soft);

    font-size: 0.9rem;
    line-height: 1.72;
}

.nowe-financing__copy+.nowe-financing__copy {
    margin-top: 12px;
    margin-bottom: 28px;
}

.nowe-financing__panel {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    min-height: 330px;

    padding: 28px;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(circle at 100% 0%,
            rgba(22, 140, 255, 0.16),
            transparent 40%),
        var(--color-bg);
}

.nowe-financing__panel>span {
    margin-bottom: auto;

    color: var(--color-blue);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.nowe-financing__panel strong {
    max-width: 430px;

    margin-bottom: 13px;

    font-size: 1.6rem;
    line-height: 1.08;

    letter-spacing: -0.04em;
}

.nowe-financing__panel p {
    max-width: 450px;

    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.78rem;
    line-height: 1.65;
}


/* ============================================================
   12. CTA
   ============================================================ */

.nowe-cta {
    padding: 78px 0;

    color: #ffffff;

    background: #06111a;
}

.nowe-cta__grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 38px;
}

.nowe-cta h2 {
    max-width: 760px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(2.2rem, 9vw, 4.4rem);
    font-weight: 700;
    line-height: 0.98;

    letter-spacing: -0.055em;
}

.nowe-cta h2 span {
    display: block;

    color: var(--color-blue);
}

.nowe-cta p {
    max-width: 600px;

    margin: 0;

    color: rgba(255, 255, 255, 0.5);

    font-size: 0.9rem;
    line-height: 1.7;
}

.nowe-cta__actions {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.nowe-cta__contact {
    display: flex;
    flex-direction: column;

    padding: 15px 0;

    border-bottom: 1px solid var(--color-border-dark);
}

.nowe-cta__contact span {
    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nowe-cta__contact strong {
    color: #ffffff;

    font-size: 1rem;
    font-weight: 500;
}


/* ============================================================
   13. 640px
   ============================================================ */

@media (min-width: 640px) {

    .nowe-hero__actions {
        flex-direction: row;
    }

    .nowe-hero__actions .button {
        width: auto;
    }

    .nowe-hero__stats {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        border-left: 1px solid var(--color-border-dark);
    }

    .nowe-hero__stat {
        display: block;

        padding: 15px;

        border-right: 1px solid var(--color-border-dark);
    }

    .nowe-hero__stat strong,
    .nowe-hero__stat span {
        display: block;
    }

    .nowe-specs {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        border-left: 1px solid var(--color-border);
    }

    .nowe-specs>div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        min-height: 82px;

        padding: 14px 16px;

        border-right: 1px solid var(--color-border);
    }

    .nowe-specs strong {
        text-align: left;
    }

    .nowe-features {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .nowe-support__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* ============================================================
   14. 768px
   ============================================================ */

@media (min-width: 768px) {

    .nowe-intro,
    .nowe-products,
    .nowe-support,
    .nowe-financing,
    .nowe-cta {
        padding-block: 92px;
    }

    .nowe-intro__grid {
        grid-template-columns:
            minmax(0, 1fr) minmax(300px, 0.82fr);

        align-items: start;

        gap: 60px;
    }

    .nowe-product {
        padding: 58px 0;
    }

    .nowe-support__card {
        min-height: 215px;

        padding: 28px 25px;
    }
}


/* ============================================================
   15. 1024px
   ============================================================ */

@media (min-width: 1024px) {

    .nowe-hero__container {
        grid-template-columns:
            minmax(0, 1.08fr) minmax(380px, 0.92fr);

        align-items: center;

        gap: 70px;

        min-height: 700px;

        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 70px;
    }

    .nowe-hero__title {
        font-size: 4.5rem;
    }

    .nowe-hero__visual {
        max-width: none;
    }

    .nowe-product {
        grid-template-columns:
            minmax(390px, 0.92fr) minmax(0, 1.08fr);

        align-items: center;

        gap: 70px;

        padding: 70px 0;
    }

    .nowe-product__visual {
        margin-bottom: 0;
    }

    .nowe-product--reverse .nowe-product__visual {
        grid-column: 2;
    }

    .nowe-product--reverse .nowe-product__content {
        grid-column: 1;
        grid-row: 1;
    }

    .nowe-product__heading {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;

        gap: 24px;
    }

    .nowe-product__price {
        flex-shrink: 0;

        padding-bottom: 5px;
    }

    .nowe-support__grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .nowe-support__card {
        min-height: 220px;

        padding: 30px 26px;
    }

    .nowe-support__icon {
        width: 42px;
        height: 42px;

        margin-bottom: 30px;
    }

    .nowe-financing__grid {
        grid-template-columns:
            minmax(0, 1fr) minmax(380px, 0.8fr);

        align-items: stretch;

        gap: 80px;
    }

    .nowe-financing__panel {
        min-height: 410px;

        padding: 34px;
    }

    .nowe-cta__grid {
        grid-template-columns:
            minmax(0, 1fr) minmax(320px, 0.55fr);

        align-items: center;

        gap: 80px;
    }

    .nowe-cta__actions {
        padding-left: 40px;

        border-left: 1px solid var(--color-border-dark);
    }
}


/* ============================================================
   16. 1280px
   ============================================================ */

@media (min-width: 1280px) {

    .nowe-hero__container {
        grid-template-columns:
            minmax(0, 1.05fr) minmax(450px, 0.95fr);

        gap: 100px;

        min-height: 760px;

        padding-top: calc(var(--header-height) + 70px);
        padding-bottom: 80px;
    }

    .nowe-hero__title {
        font-size: 5rem;
    }

    .nowe-intro,
    .nowe-products,
    .nowe-support,
    .nowe-financing,
    .nowe-cta {
        padding-block: 105px;
    }

    .nowe-intro__grid {
        gap: 100px;
    }

    .nowe-product {
        grid-template-columns:
            minmax(460px, 0.92fr) minmax(0, 1.08fr);

        gap: 100px;

        padding: 78px 0;
    }

    .nowe-product__visual {
        max-width: 580px;
    }

    .nowe-product--reverse .nowe-product__visual {
        justify-self: end;
    }

    .nowe-product__heading h3 {
        font-size: 3.8rem;
    }

    .nowe-support__card {
        min-height: 220px;

        padding: 31px 29px;
    }

    .nowe-financing__grid {
        gap: 110px;
    }

    .nowe-cta__grid {
        gap: 110px;
    }
}


/* ============================================================
   17. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .nowe-product__visual img {
        transition: none;
    }
}