/* =====================================================
   OFERTA
   ===================================================== */

.offer-preview{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:
        radial-gradient(circle at 90% 5%,rgba(37,99,235,.06),transparent 28%),
        linear-gradient(180deg,#fff 0%,#f7faff 100%);

}

.offer-preview::before{

    content:"";

    position:absolute;

    left:-180px;

    bottom:-220px;

    width:520px;

    height:520px;

    border:1px solid rgba(37,99,235,.08);

    border-radius:50%;

}

.offer-layout{

    display:grid;

    grid-template-columns:360px 1fr;

    gap:72px;

    align-items:start;

}

.offer-intro{

    position:sticky;

    top:120px;

}

.offer-intro h2{

    margin:14px 0 26px;

    font-size:clamp(42px,4vw,64px);

    line-height:.95;

    letter-spacing:-.05em;

    max-width:420px;

}

.offer-intro__text{

    max-width:420px;

    color:var(--muted);

    line-height:1.8;

    font-size:17px;

}

.offer-intro__line{

    display:block;

    width:64px;

    height:2px;

    margin:36px 0;

    background:var(--blue);

}

.offer-intro__button{

    display:inline-flex;

    align-items:center;

    gap:16px;

}

/* =====================================================
   GRID
   ===================================================== */

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:18px;

}

.service-card{

    position:relative;

    display:flex;

    flex-direction:column;

    min-height:225px;

    padding:24px;

    border:1px solid rgba(15,23,42,.08);

    border-radius:22px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(10px);

    text-decoration:none;

    overflow:hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

    box-shadow:
        0 10px 35px rgba(15,23,42,.05);

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            140deg,
            rgba(37,99,235,.05),
            transparent 45%
        );

    opacity:0;

    transition:.25s;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:rgba(37,99,235,.25);

    box-shadow:
        0 24px 55px rgba(15,23,42,.12);

}

.service-card:hover::before{

    opacity:1;

}

.service-card__top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:22px;

    position:relative;

    z-index:2;

}

.service-card__icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:52px;

    height:52px;

    border-radius:15px;

    background:#f2f6ff;

    color:var(--blue);

    transition:.25s;

}

.service-card:hover .service-card__icon{

    background:var(--blue);

    color:#fff;

}

.service-card__icon svg{

    width:24px;

    height:24px;

    stroke:currentColor;

    fill:none;

    stroke-width:1.8;

}

.service-card__arrow{

    font-size:24px;

    color:var(--blue);

    transition:.25s;

}

.service-card:hover .service-card__arrow{

    transform:translateX(5px);

}

.service-card h3{

    position:relative;

    z-index:2;

    margin:0 0 12px;

    font-size:20px;

    line-height:1.3;

    color:#0f172a;

}

.service-card p{

    position:relative;

    z-index:2;

    margin:0;

    font-size:15px;

    line-height:1.65;

    color:var(--muted);

}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width:1180px){

    .offer-layout{

        grid-template-columns:1fr;

        gap:52px;

    }

    .offer-intro{

        position:static;

    }

    .service-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:720px){

    .offer-preview{

        padding:70px 0;

    }

    .offer-intro h2{

        font-size:42px;

    }

    .service-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        min-height:190px;

    }

}