/* ================================================= */
/* SECTION 1 — SOLUTION HERO */
/* ================================================= */

.solution-product-section {
    position: relative;
    overflow: hidden;
    padding: 70px 40px 70px;
    background:
        radial-gradient(circle at 78% 18%, rgba(43, 157, 234, 0.34), transparent 34%),
        radial-gradient(circle at 92% 68%, rgba(43, 157, 234, 0.22), transparent 38%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 44%, rgba(43, 157, 234, 0.14) 100%);
    color: #000000;
    font-family: 'Inter', Arial, sans-serif;
}

.solution-container {
    position: relative;
    z-index: 6;
    max-width: 1500px;
    margin: 0 auto;
}

.solution-kicker {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #2b9dea;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.solution-kicker span {
    display: block;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: #2b9dea;
}

.solution-product-section h1 {
    margin: 0;
    color: #000000;
    font-size: clamp(50px, 4.25vw, 74px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 900;
    max-width: 1080px;
}

.headline-line {
    display: block;
}

.headline-nowrap {
    white-space: nowrap;
}

.headline-dot {
    color: #2b9dea;
}

.solution-title-line {
    width: 78px;
    height: 5px;
    border-radius: 999px;
    background: #2b9dea;
    margin: 34px 0 36px;
}

.solution-lead {
    max-width: 720px;
    color: #000000;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 500;
    margin: 0;
}

.solution-lead strong {
    color: #2b9dea;
    font-weight: 900;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 820px;
    margin-top: 58px;
}

.solution-benefit {
    position: relative;
    text-align: center;
    padding: 0 28px;
}

.solution-benefit:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: 150px;
    background: #2b9dea;
    opacity: 0.35;
}

.solution-benefit-icon {
    width: 94px;
    height: 94px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: #2b9dea;
    font-size: 38px;
    background: #ffffff;
    border: 2px solid #2b9dea;
    border-radius: 28px;
    clip-path: polygon(
        25% 5%,
        75% 5%,
        100% 50%,
        75% 95%,
        25% 95%,
        0 50%
    );
    box-shadow:
        0 14px 30px rgba(43, 157, 234, 0.22),
        inset 0 0 26px rgba(43, 157, 234, 0.18);
}

.solution-benefit h3 {
    margin: 0;
    color: #000000;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.benefit-line {
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: #2b9dea;
    margin: 13px auto 10px;
}

.solution-benefit p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.solution-benefit p strong {
    color: #2b9dea;
}

/* MRAZIVÉ POZADIE DESKTOP */

.frost-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.frost-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 34%,
            rgba(255, 255, 255, 0.78) 53%,
            rgba(255, 255, 255, 0.22) 100%
        );
}

.frost-bg::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -170px;
    width: 1080px;
    height: 520px;
    border-radius: 50%;
    z-index: 2;
    opacity: 0.95;
    transform: rotate(-12deg);
    background:
        repeating-radial-gradient(
            ellipse at center,
            transparent 0,
            transparent 11px,
            rgba(43, 157, 234, 0.40) 12px,
            transparent 14px
        );
}

/* OBRÁZOK KOCKY ĽADU DESKTOP */

.ice-cube-img {
    position: absolute;
    right: -420px;
    top: -45px;
    width: 1250px;
    z-index: 4;
    opacity: 0.92;
    transform: rotate(-7deg);
    filter:
        drop-shadow(0 48px 72px rgba(43, 157, 234, 0.34))
        drop-shadow(0 0 54px rgba(43, 157, 234, 0.30));
}

.ice-cube-img::before {
    content: "";
    position: absolute;
    inset: 12%;
    z-index: -1;
    border-radius: 999px;
    background: rgba(43, 157, 234, 0.26);
    filter: blur(54px);
}

.ice-cube-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* BODKY DESKTOP */

.frost-dots {
    position: absolute;
    width: 430px;
    height: 430px;
    background-image: radial-gradient(#2b9dea 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
}

.frost-dots-left {
    left: -90px;
    top: 70px;
    opacity: 0.44;
    mask-image: radial-gradient(circle, #000000 0%, transparent 76%);
    -webkit-mask-image: radial-gradient(circle, #000000 0%, transparent 76%);
}

.frost-dots-right {
    right: -80px;
    top: -50px;
    opacity: 0.68;
    mask-image: radial-gradient(circle, #000000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle, #000000 0%, transparent 78%);
}

/* VLOČKY DESKTOP */

.frost-snowflake {
    position: absolute;
    color: #2b9dea;
    z-index: 3;
    filter: drop-shadow(0 0 18px rgba(43, 157, 234, 0.34));
}

.frost-snowflake i {
    display: block;
}

.snowflake-1 {
    right: 620px;
    top: 92px;
    font-size: 86px;
    transform: rotate(14deg);
    opacity: 0.34;
}

.snowflake-2 {
    right: 140px;
    top: 305px;
    font-size: 124px;
    transform: rotate(-18deg);
    opacity: 0.22;
}

.snowflake-3 {
    right: 680px;
    bottom: 150px;
    font-size: 58px;
    transform: rotate(31deg);
    opacity: 0.36;
}

.snowflake-4 {
    right: 350px;
    bottom: 74px;
    font-size: 78px;
    transform: rotate(-8deg);
    opacity: 0.30;
}

.snowflake-5 {
    right: 38px;
    top: 36px;
    font-size: 64px;
    transform: rotate(22deg);
    opacity: 0.24;
}

/* HEXAGÓNY DESKTOP */

.frost-hex {
    position: absolute;
    border: 3px solid #2b9dea;
    background: rgba(255, 255, 255, 0.38);
    clip-path: polygon(
        25% 5%,
        75% 5%,
        100% 50%,
        75% 95%,
        25% 95%,
        0 50%
    );
    z-index: 2;
    box-shadow:
        0 0 28px rgba(43, 157, 234, 0.18),
        inset 0 0 22px rgba(43, 157, 234, 0.14);
}

.hex-1 {
    width: 118px;
    height: 118px;
    right: 610px;
    top: 205px;
    opacity: 0.62;
}

.hex-2 {
    width: 96px;
    height: 96px;
    right: 405px;
    top: 72px;
    opacity: 0.42;
}

.hex-3 {
    width: 132px;
    height: 132px;
    right: 188px;
    top: 205px;
    opacity: 0.48;
}

.hex-4 {
    width: 88px;
    height: 88px;
    right: 455px;
    top: 345px;
    opacity: 0.44;
}

.hex-5 {
    width: 78px;
    height: 78px;
    right: 88px;
    top: 105px;
    opacity: 0.38;
}

.hex-6 {
    width: 105px;
    height: 105px;
    right: 95px;
    bottom: 155px;
    opacity: 0.40;
}

/* SPOJOVACIE ČIARY DESKTOP */

.frost-line {
    position: absolute;
    height: 3px;
    background: #2b9dea;
    opacity: 0.42;
    z-index: 2;
    transform-origin: left center;
}

.frost-line::before,
.frost-line::after {
    content: "";
    position: absolute;
    top: -6px;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: #2b9dea;
}

.frost-line::before {
    left: -5px;
}

.frost-line::after {
    right: -5px;
}

.line-1 {
    right: 510px;
    top: 256px;
    width: 150px;
    transform: rotate(-31deg);
}

.line-2 {
    right: 292px;
    top: 274px;
    width: 132px;
    transform: rotate(26deg);
}

.line-3 {
    right: 410px;
    top: 374px;
    width: 120px;
    transform: rotate(-22deg);
}

.line-4 {
    right: 148px;
    top: 325px;
    width: 104px;
    transform: rotate(53deg);
}

/* VLNY DESKTOP */

.frost-wave {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    background:
        repeating-radial-gradient(
            ellipse at center,
            transparent 0,
            transparent 10px,
            rgba(43, 157, 234, 0.34) 11px,
            transparent 13px
        );
}

.wave-1 {
    width: 980px;
    height: 360px;
    right: -150px;
    bottom: -40px;
    opacity: 0.70;
    transform: rotate(-14deg);
}

.wave-2 {
    width: 820px;
    height: 300px;
    right: 260px;
    bottom: -96px;
    opacity: 0.46;
    transform: rotate(10deg);
}


/* TABLET */

@media (max-width: 1200px) {
    .solution-product-section {
        padding: 60px 28px 56px;
    }

    .solution-product-section h1 {
        font-size: clamp(48px, 7vw, 72px);
    }

    .headline-nowrap {
        white-space: normal;
    }

    .solution-lead {
        max-width: 780px;
    }

    .solution-benefits {
        max-width: 850px;
    }

    .frost-bg::before {
        background:
            linear-gradient(
                90deg,
                #ffffff 0%,
                rgba(255, 255, 255, 0.90) 48%,
                rgba(255, 255, 255, 0.45) 100%
            );
    }

    .ice-cube-img {
        right: -420px;
        top: 0;
        width: 900px;
        opacity: 0.56;
    }

    .snowflake-1 {
        right: 420px;
        opacity: 0.24;
    }

    .snowflake-2 {
        right: 45px;
        opacity: 0.20;
    }

    .frost-hex,
    .frost-line {
        opacity: 0.36;
    }
}

/* MOBILE - POZADIE PODĽA PRVEJ SEKCIE, BEZ KOCKY */

@media (max-width: 768px) {
    .solution-product-section {
        display: block;
        padding: 48px 18px 38px;
        overflow: hidden;
        background:
            radial-gradient(circle at 78% 18%, rgba(43, 157, 234, 0.13), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f6faff 45%, #edf5ff 100%);
    }

    .solution-container {
        position: relative;
        z-index: 6;
    }

    .solution-kicker {
        font-size: 15px;
        margin-bottom: 32px;
        gap: 10px;
    }

    .solution-kicker span {
        width: 36px;
        height: 3px;
    }

    .solution-product-section h1 {
        font-size: 42px;
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .headline-nowrap {
        white-space: normal;
    }

    .solution-title-line {
        width: 64px;
        height: 4px;
        margin: 26px 0 26px;
    }

    .solution-lead {
        font-size: 17px;
        line-height: 1.55;
    }

    .solution-benefits {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 42px;
    }

    .solution-benefit {
        display: grid;
        grid-template-columns: 82px 1fr;
        text-align: left;
        align-items: center;
        column-gap: 18px;
        padding: 0;
    }

    .solution-benefit:not(:last-child)::after {
        display: none;
    }

    .solution-benefit-icon {
        width: 74px;
        height: 74px;
        margin: 0;
        font-size: 30px;
        grid-row: span 3;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(43, 157, 234, 0.16);
        box-shadow:
            0 14px 30px rgba(28, 89, 180, 0.13),
            inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    }

    .solution-benefit h3 {
        font-size: 14px;
    }

    .benefit-line {
        margin: 8px 0 7px;
    }

    .solution-benefit p {
        font-size: 14px;
    }

    .frost-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
        pointer-events: none;
        background: none;
    }

    .ice-cube-img {
        display: none;
    }

    .frost-bg::before {
        content: "";
        display: block;
        position: absolute;
        inset: 0;
        z-index: 5;
        background:
            linear-gradient(
                90deg,
                #ffffff 0%,
                rgba(255, 255, 255, 0.92) 46%,
                rgba(255, 255, 255, 0.68) 100%
            );
    }

    .frost-bg::after {
        content: "";
        display: block;
        position: absolute;
        right: -430px;
        bottom: -220px;
        width: 760px;
        height: 320px;
        border-radius: 50%;
        z-index: 2;
        opacity: 0.18;
        transform: rotate(-12deg);
        background:
            repeating-radial-gradient(
                ellipse at center,
                transparent 0,
                transparent 12px,
                rgba(43, 157, 234, 0.18) 13px,
                transparent 15px
            );
    }

    .frost-dots {
        display: block;
        width: 360px;
        height: 360px;
        background-image: radial-gradient(rgba(43, 157, 234, 0.46) 1.5px, transparent 1.5px);
        background-size: 15px 15px;
        z-index: 1;
    }

    .frost-dots-left {
        left: -155px;
        top: 110px;
        opacity: 0.12;
        mask-image: radial-gradient(circle, #000000 0%, transparent 72%);
        -webkit-mask-image: radial-gradient(circle, #000000 0%, transparent 72%);
    }

    .frost-dots-right {
        right: -170px;
        top: -90px;
        opacity: 0.16;
        mask-image: radial-gradient(circle, #000000 0%, transparent 74%);
        -webkit-mask-image: radial-gradient(circle, #000000 0%, transparent 74%);
    }

    .frost-snowflake {
        display: block;
        color: #2b9dea;
        z-index: 2;
        filter: none;
    }

    .snowflake-1 {
        right: -18px;
        top: 80px;
        font-size: 76px;
        opacity: 0.075;
        transform: rotate(14deg);
    }

    .snowflake-2 {
        right: 28px;
        bottom: 70px;
        top: auto;
        font-size: 92px;
        opacity: 0.065;
        transform: rotate(-18deg);
    }

    .snowflake-3 {
        left: -18px;
        right: auto;
        bottom: 150px;
        font-size: 54px;
        opacity: 0.07;
        transform: rotate(31deg);
    }

    .snowflake-4,
    .snowflake-5 {
        display: none;
    }

    .frost-hex,
    .frost-line {
        display: none;
    }

    .frost-wave {
        display: block;
        opacity: 0.12;
    }

    .wave-1 {
        width: 720px;
        height: 260px;
        right: -420px;
        bottom: -120px;
        transform: rotate(-12deg);
    }

    .wave-2 {
        display: none;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .solution-product-section {
        padding: 44px 18px 36px;
        background:
            radial-gradient(circle at 78% 18%, rgba(43, 157, 234, 0.11), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #f0f7ff 100%);
    }

    .solution-product-section h1 {
        font-size: 36px;
    }

    .solution-lead {
        font-size: 16px;
    }

    .solution-benefit {
        grid-template-columns: 70px 1fr;
        column-gap: 14px;
    }

    .solution-benefit-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    .snowflake-1 {
        right: -24px;
        top: 74px;
        font-size: 68px;
        opacity: 0.06;
    }

    .snowflake-2 {
        right: -4px;
        bottom: 56px;
        font-size: 82px;
        opacity: 0.055;
    }

    .snowflake-3 {
        left: -22px;
        bottom: 130px;
        font-size: 48px;
        opacity: 0.055;
    }

    .frost-bg::after {
        right: -470px;
        bottom: -220px;
        opacity: 0.13;
    }
}
.ice-cube-img {
    animation: iceFloat 6.5s ease-in-out infinite;
    will-change: transform;
}

.frost-snowflake {
    animation: snowFloat 7s ease-in-out infinite;
    will-change: transform;
}

.snowflake-2 {
    animation-duration: 8.5s;
}

.snowflake-3 {
    animation-duration: 6.8s;
}

.snowflake-4 {
    animation-duration: 9s;
}

.snowflake-5 {
    animation-duration: 7.6s;
}

.frost-hex {
    animation: frostPulse 4.8s ease-in-out infinite;
}

.hex-2,
.hex-4,
.hex-6 {
    animation-duration: 6.2s;
}

.frost-wave {
    animation: waveDrift 9s ease-in-out infinite;
}

.wave-2 {
    animation-duration: 11s;
}

@keyframes iceFloat {
    0% {
        transform: rotate(-7deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-5deg) translate3d(-10px, -14px, 0);
    }

    100% {
        transform: rotate(-7deg) translate3d(0, 0, 0);
    }
}

@keyframes snowFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(8px, -12px, 0) rotate(12deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

@keyframes frostPulse {
    0%, 100% {
        opacity: 0.42;
        transform: scale(1);
    }

    50% {
        opacity: 0.68;
        transform: scale(1.035);
    }
}

@keyframes waveDrift {
    0%, 100% {
        transform: rotate(-14deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-12deg) translate3d(-18px, -8px, 0);
    }
}
/* ================================================= */
/* SECTION 2 — PROCESS */
/* ================================================= */

.lyo-process-section {
    background: #fff;
    color: #071225;
    padding: 90px 5% 80px;
    overflow: hidden;
    position: relative;
}

.lyo-process-heading {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.lyo-process-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(42px, 4.6vw, 78px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
    color: #071225;
}

.lyo-process-heading h2 span,
.lyo-process-heading strong,
.lyo-process-card strong,
.benefit-item strong {
    color: #2b9dea;
}

.lyo-process-heading p {
    margin: 0;
    color: rgba(7,18,37,.72);
    font-size: 24px;
    line-height: 1.45;
    font-weight: 600;
}

.lyo-process-grid {
    max-width: 1760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 42px 1fr 42px 1fr;
    gap: 24px;
    align-items: center;
}

.lyo-process-card {
    min-height: 570px;
    background: #fff;
    border: 1px solid rgba(43,157,234,.22);
    border-radius: 28px;
    padding: 34px 34px 30px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.process-card-top {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
}

.process-card-top span {
    color: #2b9dea;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.process-card-top i {
    color: #2b9dea;
    font-size: 46px;
    line-height: 1;
}

.process-card-top h3 {
    margin: 0;
    color: #071225;
    font-size: clamp(24px, 1.7vw, 32px);
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

.lyo-process-card > p {
    margin: 0;
    color: rgba(7,18,37,.78);
    font-size: 19px;
    line-height: 1.55;
    font-weight: 700;
    min-height: 90px;
}

.lyo-process-card img {
    width: 75%;
    max-width: 360px;
    display: block;
    margin: 22px auto 22px;
}

.lyo-process-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lyo-process-card li {
    color: rgba(7,18,37,.82);
    font-size: 16.5px;
    line-height: 1.45;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lyo-process-card li i {
    width: 18px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2b9dea;
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.process-arrow {
    color: #2b9dea;
    font-size: 44px;
    display: flex;
    justify-content: center;
}

.lyo-benefits {
    max-width: 1500px;
    margin: 65px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 36px;
    border-right: 1px solid rgba(7,18,37,.12);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item div {
    width: 82px;
    min-width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(43,157,234,.08);
    color: #2b9dea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.benefit-item p {
    margin: 0;
    color: #071225;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

/* ================================================= */
/* SECTION 3 — ADVANTAGE */
/* ================================================= */

.advantage-section {
    background: #fff;
    padding: 80px 6%;
}

.advantage-container {
    max-width: 1500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2b9dea 0%, #087fd0 100%);
    border-radius: 26px;
    padding: 55px 60px 65px;
    color: #fff;
    overflow: hidden;
}

.advantage-head {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 55px;
}

.advantage-crown {
    color: #fff;
    font-size: 72px;
    line-height: 1;
    flex-shrink: 0;
}

.advantage-head span {
    display: block;
    color: rgba(255,255,255,.88);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.advantage-head h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(34px, 3.3vw, 56px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.advantage-head p {
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 21px;
    line-height: 1.6;
    max-width: 1100px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 52px;
}

.advantage-item i {
    color: #fff;
    font-size: 54px;
    margin-bottom: 24px;
}

.advantage-item h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.25;
}

.advantage-item p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.65;
}

/* ================================================= */
/* SECTION 4 — VISION */
/* ================================================= */

.vision-section {
    background: #fff;
    padding: 40px 6% 90px;
}

.vision-container {
    max-width: 1500px;
    margin: 0 auto;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 450px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.08);
}

.vision-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 45px 50px;
}

.vision-icon {
    color: #2b9dea;
    font-size: 70px;
    flex-shrink: 0;
}

.vision-text h3 {
    margin: 0 0 16px;
    color: #2b9dea;
    font-size: 42px;
    font-weight: 900;
}

.vision-text p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 24px;
    line-height: 1.7;
    max-width: 900px;
}

.vision-image {
    position: relative;
    height: 100%;
}

.vision-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #000 0%,
        rgba(0,0,0,.85) 10%,
        rgba(0,0,0,0) 35%,
        rgba(0,0,0,0) 100%
    );
    z-index: 2;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ================================================= */
/* TABLET */
/* ================================================= */

@media (max-width: 1200px) {
    .solution-banner {
        min-height: 720px;
        padding: 80px 0 60px;
    }

    .solution-content h2 {
        font-size: 58px;
        max-width: 950px;
    }

    .solution-content > p {
        font-size: 20px;
        max-width: 850px;
    }

    .solution-features {
        gap: 35px;
        margin-top: 50px;
    }

    .lyo-process-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        max-width: 760px;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: -4px 0;
    }

    .lyo-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }

    .benefit-item:nth-child(2) {
        border-right: none;
    }

    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-container {
        grid-template-columns: 1fr;
    }

    .vision-image {
        height: 280px;
    }

    .vision-image::before {
        background: linear-gradient(
            180deg,
            #000 0%,
            rgba(0,0,0,.65) 18%,
            rgba(0,0,0,0) 55%
        );
    }
}

/* ================================================= */
/* MOBILE */
/* ================================================= */

@media (max-width: 768px) {
    .solution-banner {
        min-height: auto;
        align-items: flex-end;
        padding: 82px 0 52px;
    }

    .solution-banner::before {
        background: linear-gradient(
            180deg,
            rgba(0,0,0,.22) 0%,
            rgba(0,0,0,.68) 34%,
            rgba(0,0,0,.94) 72%,
            rgba(0,0,0,1) 100%
        );
    }

    .solution-bg img {
        object-position: 68% center;
        transform: scale(1.04);
    }

    .solution-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .solution-top {
        margin-bottom: 10px;
    }

    .solution-number,
    .solution-label {
        font-size: 15px;
        letter-spacing: .6px;
    }

    .solution-line {
        width: 52px;
    }

    .solution-label {
        margin-bottom: 18px;
    }

    .solution-content h2 {
        font-size: clamp(34px, 10vw, 43px);
        line-height: 1.07;
        letter-spacing: -1.2px;
        max-width: 100%;
    }

    .solution-small-line {
        width: 62px;
        height: 4px;
        margin: 24px 0;
    }

    .solution-content > p {
        font-size: 15.5px;
        line-height: 1.62;
        max-width: 100%;
    }

    .solution-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 36px;
    }

    .solution-feature {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 18px 18px;
        border: 1px solid rgba(43,157,234,.25);
        border-radius: 18px;
        background: rgba(43,157,234,.06);
        backdrop-filter: blur(8px);
    }

    .solution-feature-icon {
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-width: 2px;
        border-radius: 14px;
        font-size: 23px;
        margin-bottom: 0;
    }

    .solution-feature h3 {
        font-size: 14px;
        margin-bottom: 7px;
    }

    .solution-feature p {
        font-size: 14px;
        line-height: 1.45;
    }

    .lyo-process-section {
        padding: 58px 20px 64px;
    }

    .lyo-process-heading {
        text-align: left;
        margin-bottom: 36px;
    }

    .lyo-process-heading h2 {
        font-size: clamp(31px, 9vw, 38px);
        line-height: 1.08;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .lyo-process-heading p {
        font-size: 15.5px;
        line-height: 1.6;
        font-weight: 600;
    }

    .lyo-process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 100%;
    }

    .lyo-process-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 12px 34px rgba(7,18,37,.06);
    }

    .process-card-top {
        grid-template-columns: auto auto 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }

    .process-card-top span {
        font-size: 24px;
    }

    .process-card-top i {
        font-size: 30px;
    }

    .process-card-top h3 {
        font-size: 20px;
        line-height: 1.12;
    }

    .lyo-process-card > p {
        font-size: 15.5px;
        line-height: 1.55;
        min-height: auto;
    }

    .lyo-process-card img {
        width: 78%;
        max-width: 270px;
        margin: 20px auto;
    }

    .lyo-process-card li {
        font-size: 14.2px;
        line-height: 1.45;
        margin-bottom: 9px;
        font-weight: 700;
    }

    .lyo-process-card li i {
        width: 17px;
        min-width: 17px;
        height: 17px;
        font-size: 9px;
    }

    .process-arrow {
        font-size: 28px;
        transform: rotate(90deg);
        margin: -2px 0;
    }

    .lyo-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 42px;
    }

    .benefit-item {
        border-right: none;
        padding: 18px 18px;
        gap: 16px;
        border: 1px solid rgba(43,157,234,.16);
        border-radius: 18px;
        background: rgba(43,157,234,.035);
    }

    .benefit-item div {
        width: 54px;
        min-width: 54px;
        height: 54px;
        font-size: 23px;
    }

    .benefit-item p {
        font-size: 15.5px;
        line-height: 1.25;
    }

    .advantage-section {
        padding: 58px 20px;
    }

    .advantage-container {
        padding: 34px 24px 38px;
        border-radius: 22px;
    }

    .advantage-head {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 36px;
    }

    .advantage-crown {
        font-size: 44px;
    }

    .advantage-head span {
        font-size: 14px;
        letter-spacing: .6px;
        margin-bottom: 10px;
    }

    .advantage-head h2 {
        font-size: clamp(29px, 8.5vw, 35px);
        line-height: 1.12;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .advantage-head p {
        font-size: 15.5px;
        line-height: 1.6;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .advantage-item {
        padding: 18px 18px;
        border-radius: 18px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.16);
    }

    .advantage-item i {
        font-size: 31px;
        margin-bottom: 14px;
    }

    .advantage-item h3 {
        font-size: 14.5px;
        margin-bottom: 9px;
    }

    .advantage-item p {
        font-size: 14.2px;
        line-height: 1.55;
    }

    .vision-section {
        padding: 20px 20px 64px;
    }

    .vision-container {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .vision-content {
        padding: 32px 24px;
        flex-direction: column;
        gap: 18px;
        order: 2;
    }

    .vision-icon {
        font-size: 42px;
    }

    .vision-text h3 {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .vision-text p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .vision-image {
        height: 230px;
        order: 1;
    }

    .vision-image::before {
        background: linear-gradient(
            180deg,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,.15) 45%,
            #000 100%
        );
    }
}

/* ================================================= */
/* SMALL MOBILE */
/* ================================================= */

@media (max-width: 480px) {
    .solution-banner {
        padding: 72px 0 46px;
    }

    .solution-content {
        padding: 0 18px;
    }

    .solution-label {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .solution-content h2 {
        font-size: 34px;
    }

    .solution-content > p {
        font-size: 14.8px;
    }

    .solution-feature {
        padding: 16px;
        gap: 14px;
    }

    .solution-feature-icon {
        width: 46px;
        min-width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .lyo-process-section {
        padding: 52px 18px 58px;
    }

    .lyo-process-heading h2 {
        font-size: 31px;
    }

    .lyo-process-heading p {
        font-size: 14.8px;
    }

    .lyo-process-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .process-card-top {
        grid-template-columns: auto auto 1fr;
    }

    .process-card-top span {
        font-size: 22px;
    }

    .process-card-top i {
        font-size: 28px;
    }

    .process-card-top h3 {
        font-size: 18px;
    }

    .lyo-process-card > p {
        font-size: 14.8px;
    }

    .lyo-process-card img {
        width: 82%;
        max-width: 245px;
    }

    .lyo-process-card li {
        font-size: 13.8px;
    }

    .benefit-item {
        padding: 16px;
    }

    .benefit-item div {
        width: 50px;
        min-width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .benefit-item p {
        font-size: 14.6px;
    }

    .advantage-section {
        padding: 52px 18px;
    }

    .advantage-container {
        padding: 30px 20px 34px;
        border-radius: 20px;
    }

    .advantage-head h2 {
        font-size: 29px;
    }

    .advantage-head p {
        font-size: 14.8px;
    }

    .advantage-item {
        padding: 16px;
    }

    .vision-section {
        padding: 18px 18px 58px;
    }

    .vision-content {
        padding: 30px 22px;
    }

    .vision-image {
        height: 210px;
    }

    .vision-text h3 {
        font-size: 28px;
    }

    .vision-text p {
        font-size: 14.8px;
    }
}

/* ================================================= */
/* EXTRA SMALL MOBILE */
/* ================================================= */

@media (max-width: 380px) {
    .solution-banner {
        padding: 66px 0 42px;
    }

    .solution-content h2 {
        font-size: 31px;
    }

    .solution-content > p {
        font-size: 14.2px;
    }

    .solution-feature {
        flex-direction: column;
    }

    .lyo-process-heading h2 {
        font-size: 29px;
    }

    .process-card-top {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .process-card-top span {
        font-size: 21px;
    }

    .process-card-top i {
        font-size: 26px;
    }

    .process-card-top h3 {
        font-size: 18px;
    }

    .advantage-head h2 {
        font-size: 27px;
    }

    .vision-text h3 {
        font-size: 26px;
    }
}
/* ================================================= */
/* VISION SECTION - MOBILE FIX ONLY */

/* ================================================= */

@media (max-width: 768px) {
    .vision-section {
        padding: 20px 20px 54px;
    }

    .vision-container {
        grid-template-columns: 1fr;
        border-radius: 20px;
        overflow: hidden;
    }

    .vision-content {
        order: 1;
        padding: 26px 22px 22px;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .vision-icon {
        font-size: 34px;
        line-height: 1;
        margin-top: 3px;
    }

    .vision-text h3 {
        font-size: 27px;
        line-height: 1.1;
        margin: 0 0 12px;
    }

    .vision-text p {
        font-size: 15px;
        line-height: 1.55;
        max-width: none;
    }

    .vision-image {
        order: 2;
        height: 155px;
        min-height: 155px;
        margin: 0;
    }

    .vision-image::before {
        background: linear-gradient(
            180deg,
            #000000 0%,
            rgba(0,0,0,.35) 18%,
            rgba(0,0,0,0) 58%
        );
    }

    .vision-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .vision-section {
        padding: 18px 18px 46px;
    }

    .vision-container {
        border-radius: 18px;
    }

    .vision-content {
        padding: 24px 20px 20px;
        gap: 14px;
    }

    .vision-icon {
        font-size: 30px;
    }

    .vision-text h3 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .vision-text p {
        font-size: 14.5px;
        line-height: 1.55;
    }

    .vision-image {
        height: 135px;
        min-height: 135px;
    }
}

@media (max-width: 380px) {
    .vision-content {
        padding: 22px 18px 18px;
        flex-direction: column;
        gap: 12px;
    }

    .vision-icon {
        font-size: 30px;
    }

    .vision-text h3 {
        font-size: 24px;
    }

    .vision-text p {
        font-size: 14px;
    }

    .vision-image {
        height: 125px;
        min-height: 125px;
    }
}

/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */
/* PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA PROBLEM SEKCIA */


/* ========================= */
/* SEKCIA 1 */
/* ========================= */
.solution-product-section {
    position: relative;
    overflow: hidden;
    padding: 70px 40px 58px;
    background:
        radial-gradient(circle at 78% 18%, rgba(43, 157, 234, 0.13), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f6faff 45%, #edf5ff 100%);
    color: #061642;
    font-family: 'Inter', Arial, sans-serif;
}

.solution-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
}

.solution-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 20px;
}

.solution-left {
    position: relative;
    z-index: 3;
    min-width: 0;
}

.solution-kicker {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #2b9dea;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.solution-kicker span {
    display: block;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: #2b9dea;
}

.solution-left h1 {
    margin: 0;
    color: #071545;
    font-size: clamp(50px, 4.25vw, 74px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.headline-line {
    display: block;
}

.headline-nowrap {
    white-space: nowrap;
}

.headline-dot {
    color: #2b9dea;
}

.solution-title-line {
    width: 78px;
    height: 5px;
    border-radius: 999px;
    background: #2b9dea;
    margin: 34px 0 36px;
}

.solution-lead {
    max-width: 720px;
    color: #1f2b4b;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 500;
    margin: 0;
}

.solution-lead strong {
    color: #2b9dea;
    font-weight: 900;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 760px;
    margin-top: 58px;
}

.solution-benefit {
    position: relative;
    text-align: center;
    padding: 0 28px;
}

.solution-benefit:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: 150px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(43, 157, 234, 0.23),
        transparent
    );
}

.solution-benefit-icon {
    width: 94px;
    height: 94px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: #2b9dea;
    font-size: 38px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(43, 157, 234, 0.13);
    border-radius: 28px;
    clip-path: polygon(
        25% 5%,
        75% 5%,
        100% 50%,
        75% 95%,
        25% 95%,
        0 50%
    );
    box-shadow:
        0 14px 30px rgba(28, 89, 180, 0.13),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.solution-benefit h3 {
    margin: 0;
    color: #071545;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.benefit-line {
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: #2b9dea;
    margin: 13px auto 10px;
}

.solution-benefit p {
    margin: 0;
    color: #243259;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.solution-benefit p strong {
    color: #2b9dea;
}

/* RIGHT IMAGE */

.solution-right {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    overflow: visible;
    transform: translateY(-38px);
}

.solution-image-wrap::before {
    content: "";
    position: absolute;
    inset: -80px -110px;
    background: radial-gradient(
        circle at center,
        rgba(43, 157, 234, 0.18),
        transparent 68%
    );
    filter: blur(28px);
    z-index: 1;
    pointer-events: none;
}

.solution-image-wrap img {
    position: relative;
    z-index: 2;
    width: 138%;
    max-width: none;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 35px 50px rgba(18, 70, 150, 0.16));

    mask-image:
        linear-gradient(to right, transparent 0%, black 12%, black 86%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 10%, black 88%, transparent 100%);
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 12%, black 86%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 10%, black 88%, transparent 100%);

    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

/* BOTTOM CARD */

.solution-bottom-card {
    margin-top: 18px;
    padding: 32px 42px;
    display: grid;
    grid-template-columns: 1.18fr 1fr;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(43, 157, 234, 0.12);
    border-radius: 26px;
    box-shadow:
        0 18px 45px rgba(31, 80, 160, 0.13),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.bottom-main {
    display: grid;
    grid-template-columns: 105px 1fr;
    align-items: center;
    gap: 32px;
}

.bottom-icon-main {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 42px;
    background: linear-gradient(145deg, #2b9dea, #1a7bcf);
    border-radius: 28px;
    clip-path: polygon(
        25% 5%,
        75% 5%,
        100% 50%,
        75% 95%,
        25% 95%,
        0 50%
    );
    box-shadow: 0 18px 38px rgba(43, 157, 234, 0.24);
}

.bottom-main h3 {
    margin: 0 0 12px;
    color: #071545;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.bottom-main p {
    margin: 0;
    color: #31406b;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
}

.bottom-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.bottom-feature {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 0 20px;
    border-left: 1px solid rgba(43, 157, 234, 0.16);
}

.bottom-feature i {
    color: #2b9dea;
    font-size: 36px;
    line-height: 1;
}

.bottom-feature h4 {
    margin: 0 0 9px;
    color: #071545;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}

.bottom-feature p {
    margin: 0;
    color: #31406b;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    max-width: 150px;
}

/* TABLET */

@media (max-width: 1200px) {
    .solution-product-section {
        padding: 60px 28px 48px;
    }

    .solution-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-left h1 {
        font-size: clamp(48px, 7vw, 72px);
    }

    .headline-nowrap {
        white-space: normal;
    }

    .solution-lead {
        max-width: 780px;
    }

    .solution-benefits {
        max-width: 850px;
    }

    .solution-right {
        min-height: auto;
        margin-top: 10px;
    }

    .solution-image-wrap {
        max-width: 820px;
        margin: 0 auto;
        transform: translateY(-18px);
    }

    .solution-image-wrap img {
        width: 112%;
        margin-left: -6%;
    }

    .solution-bottom-card {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
    }

    .bottom-feature p {
        max-width: none;
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .solution-product-section {
        padding: 48px 18px 38px;
    }

    .solution-kicker {
        font-size: 15px;
        margin-bottom: 32px;
        gap: 10px;
    }

    .solution-kicker span {
        width: 36px;
        height: 3px;
    }

    .solution-left h1 {
        font-size: 42px;
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .solution-title-line {
        width: 64px;
        height: 4px;
        margin: 26px 0 26px;
    }

    .solution-lead {
        font-size: 17px;
        line-height: 1.55;
    }

    .solution-benefits {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 42px;
    }

    .solution-benefit {
        display: grid;
        grid-template-columns: 82px 1fr;
        text-align: left;
        align-items: center;
        column-gap: 18px;
        padding: 0;
    }

    .solution-benefit:not(:last-child)::after {
        display: none;
    }

    .solution-benefit-icon {
        width: 74px;
        height: 74px;
        margin: 0;
        font-size: 30px;
        grid-row: span 3;
    }

    .solution-benefit h3 {
        font-size: 14px;
    }

    .benefit-line {
        margin: 8px 0 7px;
    }

    .solution-benefit p {
        font-size: 14px;
    }

    .solution-right {
        margin-top: 34px;
        min-height: auto;
        justify-content: center;
    }

    .solution-image-wrap {
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
        transform: none;
        border-radius: 28px;
    }

    .solution-image-wrap::before {
        inset: -28px -18px;
        background: radial-gradient(
            circle at center,
            rgba(43, 157, 234, 0.22),
            transparent 68%
        );
        filter: blur(22px);
    }

    .solution-image-wrap img {
        width: 108%;
        margin-left: -4%;
        max-width: none;
        filter: drop-shadow(0 24px 34px rgba(18, 70, 150, 0.14));

        mask-image:
            linear-gradient(to right, transparent 0%, black 16%, black 84%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, black 14%, black 84%, transparent 100%);
        -webkit-mask-image:
            linear-gradient(to right, transparent 0%, black 16%, black 84%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, black 14%, black 84%, transparent 100%);
    }

    .solution-bottom-card {
        margin-top: 22px;
        padding: 26px 22px;
        border-radius: 22px;
    }

    .bottom-main {
        grid-template-columns: 72px 1fr;
        gap: 18px;
    }

    .bottom-icon-main {
        width: 68px;
        height: 68px;
        font-size: 30px;
        border-radius: 22px;
    }

    .bottom-main h3 {
        font-size: 15px;
    }

    .bottom-main p {
        font-size: 14px;
        line-height: 1.55;
    }

    .bottom-features {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bottom-feature {
        border-left: none;
        border-top: 1px solid rgba(43, 157, 234, 0.14);
        padding: 20px 0 0;
        grid-template-columns: 42px 1fr;
    }

    .bottom-feature i {
        font-size: 32px;
    }

    .bottom-feature p {
        max-width: none;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .solution-left h1 {
        font-size: 36px;
    }

    .solution-lead {
        font-size: 16px;
    }

    .solution-benefit {
        grid-template-columns: 70px 1fr;
        column-gap: 14px;
    }

    .solution-benefit-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    .solution-image-wrap {
        max-width: 360px;
        transform: none;
    }

    .solution-image-wrap::before {
        inset: -22px -14px;
        background: radial-gradient(
            circle at center,
            rgba(43, 157, 234, 0.2),
            transparent 68%
        );
        filter: blur(20px);
    }

    .solution-image-wrap img {
        width: 112%;
        margin-left: -6%;
    }

    .solution-bottom-card {
        padding: 24px 18px;
    }

    .bottom-main {
        grid-template-columns: 1fr;
    }
}
/* ========================= */
/* SEKCIA 2  */
/* ========================= */

.problem-result {
    background: #fff;
    color: #000;
    padding: 80px 6% 90px;
}

.result-container {
    max-width: 1500px;
    margin: 0 auto;
}

.result-head {
    display: flex;
    align-items: flex-start;
    gap: 34px;
    margin-bottom: 70px;
}

.result-main-icon {
    width: 105px;
    min-width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b9dea;
    font-size: 82px;
}

.result-head span {
    display: block;
    color: #2b9dea;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.result-head h2 {
    margin: 0;
    color: #000;
    font-size: clamp(34px, 3.3vw, 54px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.result-line {
    width: 72px;
    height: 4px;
    background: #2b9dea;
    margin: 26px 0 28px;
    border-radius: 999px;
}

.result-head p {
    margin: 0;
    max-width: 1050px;
    color: rgba(0,0,0,.78);
    font-size: 20px;
    line-height: 1.75;
    font-weight: 500;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
}

.result-card i {
    color: #2b9dea;
    font-size: 58px;
    margin-bottom: 30px;
}

.result-card h3 {
    margin: 0 0 18px;
    color: #2b9dea;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
}

.result-card p {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

/* ========================= */
/* SEKCIA 3 */
/* ========================= */

.future-card-section {
    background: #fff;
    padding: 40px 6% 90px;
}

.future-card {
    max-width: 1500px;
    margin: 0 auto;
    min-height: 330px;
    border-radius: 26px;
    overflow: hidden;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
}

.future-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.96) 0%,
        rgba(0,0,0,.92) 34%,
        rgba(0,0,0,.55) 55%,
        rgba(0,0,0,.15) 78%,
        rgba(0,0,0,.05) 100%
    );
    pointer-events: none;
}

.future-content {
    position: relative;
    z-index: 3;
    width: 52%;
    padding: 55px 60px;
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

.future-icon {
    color: #2b9dea;
    font-size: 74px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 4px;
}

.future-content h2 {
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.future-content p {
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 21px;
    line-height: 1.75;
    font-weight: 500;
}

.future-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.future-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 1100px) {
    .problem-banner {
        min-height: 680px;
        padding: 70px 0;
    }

    .problem-content {
        transform: translateY(-40px);
    }

    .problem-content h1 {
        font-size: 64px;
    }

    .problem-content h2 {
        font-size: 32px;
    }

    .problem-content p {
        font-size: 18px;
        max-width: 760px;
    }

    .result-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .result-head h2 {
        font-size: 38px;
    }

    .future-content {
        width: 65%;
        padding: 45px;
    }

    .future-icon {
        font-size: 58px;
    }

    .future-content h2 {
        font-size: 38px;
    }

    .future-content p {
        font-size: 18px;
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {
    .problem-banner {
        min-height: auto;
        display: flex;
        align-items: flex-end;
        padding: 150px 0 56px;
    }

    .problem-banner::before {
        background: linear-gradient(
            180deg,
            rgba(0,0,0,.28) 0%,
            rgba(0,0,0,.72) 38%,
            rgba(0,0,0,.96) 72%,
            rgba(0,0,0,1) 100%
        );
    }

    .problem-image img {
        object-position: 68% center;
        transform: scale(1.04);
    }

    .problem-content {
        padding: 0 20px;
        transform: none;
        max-width: 100%;
    }

    .problem-number {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .problem-label {
        font-size: 15px;
        letter-spacing: .6px;
        margin-bottom: 18px;
    }

    .problem-content h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.06;
        letter-spacing: -1.2px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .problem-content h2 {
        font-size: clamp(20px, 6vw, 26px);
        line-height: 1.25;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .problem-content p {
        font-size: 15.5px;
        line-height: 1.65;
        max-width: 100%;
        color: rgba(255,255,255,.86);
    }

    .problem-result {
        padding: 58px 20px 64px;
    }

    .result-head {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 42px;
    }

    .result-main-icon {
        width: 58px;
        min-width: 58px;
        height: 58px;
        font-size: 48px;
    }

    .result-head span {
        font-size: 15px;
        letter-spacing: .6px;
        margin-bottom: 10px;
    }

    .result-head h2 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .result-line {
        width: 56px;
        height: 3px;
        margin: 20px 0 22px;
    }

    .result-head p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .result-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .result-card {
        padding: 22px 20px;
        border: 1px solid rgba(43, 157, 234, .16);
        border-radius: 18px;
        background: rgba(43, 157, 234, .035);
    }

    .result-card i {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .result-card h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .result-card p {
        font-size: 14.5px;
        line-height: 1.58;
    }

    .future-card-section {
        padding: 20px 20px 64px;
    }

    .future-card {
        min-height: 500px;
        border-radius: 22px;
        align-items: flex-end;
    }

    .future-card::before {
        background: linear-gradient(
            180deg,
            rgba(0,0,0,.18) 0%,
            rgba(0,0,0,.68) 42%,
            rgba(0,0,0,.94) 76%,
            rgba(0,0,0,1) 100%
        );
    }

    .future-content {
        width: 100%;
        padding: 34px 24px;
        flex-direction: column;
        gap: 18px;
    }

    .future-icon {
        font-size: 42px;
    }

    .future-content h2 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.12;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .future-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .future-image img {
        object-position: 64% center;
    }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width: 480px) {
    .problem-banner {
        padding: 135px 0 48px;
    }

    .problem-content {
        padding: 0 18px;
    }

    .problem-label {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .problem-content h1 {
        font-size: 35px;
        margin-bottom: 18px;
    }

    .problem-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .problem-content p {
        font-size: 14.8px;
        line-height: 1.62;
    }

    .problem-result {
        padding: 52px 18px 58px;
    }

    .result-head {
        margin-bottom: 36px;
    }

    .result-head h2 {
        font-size: 29px;
    }

    .result-head p {
        font-size: 14.8px;
    }

    .result-card {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .result-card i {
        font-size: 31px;
    }

    .result-card p {
        font-size: 14.2px;
    }

    .future-card-section {
        padding: 18px 18px 58px;
    }

    .future-card {
        min-height: 480px;
        border-radius: 20px;
    }

    .future-content {
        padding: 30px 22px;
    }

    .future-icon {
        font-size: 38px;
    }

    .future-content h2 {
        font-size: 28px;
    }

    .future-content p {
        font-size: 14.8px;
        line-height: 1.62;
    }
}

/* ========================= */
/* EXTRA SMALL MOBILE */
/* ========================= */

@media (max-width: 380px) {
    .problem-banner {
        padding: 120px 0 44px;
    }

    .problem-content h1 {
        font-size: 32px;
    }

    .problem-content h2 {
        font-size: 19px;
    }

    .problem-content p {
        font-size: 14.2px;
    }

    .result-head h2 {
        font-size: 27px;
    }

    .future-card {
        min-height: 455px;
    }

    .future-content h2 {
        font-size: 26px;
    }

    .future-content p {
        font-size: 14.2px;
    }
}
/* ================================================= */
/* FUTURE CARD - MOBILE FIX ONLY */

/* ================================================= */

@media (max-width: 768px) {
    .future-card-section {
        padding: 20px 20px 54px;
    }

    .future-card {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 20px;
        overflow: hidden;
        align-items: stretch;
    }

    .future-card::before {
        display: none;
    }

    .future-content {
        order: 1;
        width: 100%;
        padding: 28px 24px 24px;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .future-icon {
        font-size: 34px;
        line-height: 1;
        margin-top: 4px;
    }

    .future-content h2 {
        font-size: clamp(26px, 7.5vw, 32px);
        line-height: 1.12;
        letter-spacing: -1px;
        margin: 0 0 14px;
    }

    .future-content p {
        font-size: 15px;
        line-height: 1.55;
    }

    .future-image {
        position: relative;
        order: 2;
        inset: auto;
        height: 160px;
        width: 100%;
        z-index: 1;
    }

    .future-image::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(
            180deg,
            #000000 0%,
            rgba(0,0,0,.36) 20%,
            rgba(0,0,0,0) 58%
        );
        pointer-events: none;
    }

    .future-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

@media (max-width: 480px) {
    .future-card-section {
        padding: 18px 18px 46px;
    }

    .future-card {
        border-radius: 18px;
    }

    .future-content {
        padding: 24px 20px 20px;
        gap: 14px;
    }

    .future-icon {
        font-size: 30px;
    }

    .future-content h2 {
        font-size: 25px;
        margin-bottom: 12px;
    }

    .future-content p {
        font-size: 14.5px;
        line-height: 1.55;
    }

    .future-image {
        height: 135px;
    }
}

@media (max-width: 380px) {
    .future-content {
        padding: 22px 18px 18px;
        flex-direction: column;
        gap: 12px;
    }

    .future-icon {
        font-size: 30px;
    }

    .future-content h2 {
        font-size: 24px;
    }

    .future-content p {
        font-size: 14px;
    }

    .future-image {
        height: 125px;
    }
}