/* =========================================================
   PAGINA SERVICII
========================================================= */
.services-page{
    background:#fff;
    color:var(--dark);
}

.services-page .section-kicker{
    margin:0 0 16px;
    border:1px solid rgba(227,27,120,.16);
    background:#fff;
    box-shadow:none;
}

.services-page .gl-faq-classic-head .section-kicker{
    margin-left:auto;
    margin-right:auto;
}

.services-hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#f7fbfb 0%,#fff 100%);
}

.services-hero::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(90deg,rgba(7,67,67,.045) 1px,transparent 1px),
        linear-gradient(180deg,rgba(7,67,67,.035) 1px,transparent 1px);
    background-size:74px 74px;
    opacity:.42;
    -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 68%,transparent 100%);
    mask-image:linear-gradient(180deg,#000 0%,#000 68%,transparent 100%);
}

.services-hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(0,1.06fr) minmax(320px,.94fr);
    gap:54px;
    align-items:center;
    min-height:520px;
    padding:82px 0 88px;
}

.services-hero-copy h1{
    max-width:840px;
    margin:0 0 22px;
    color:var(--dark);
    font-size:46px;
    font-weight:650;
    line-height:1.05;
}

.services-hero-copy p{
    max-width:720px;
    margin:0;
    color:#536970;
    font-size:17px;
    line-height:1.76;
}

.services-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:34px;
}

.services-hero-panel{
    position:relative;
    overflow:hidden;
    padding:32px;
    border:1px solid rgba(7,67,67,.10);
    border-radius:8px;
    background:#fff;
    box-shadow:0 22px 58px rgba(7,67,67,.09);
}

.services-hero-panel::before{
    content:"";
    position:absolute;
    top:0;
    left:32px;
    right:32px;
    height:3px;
    border-radius:0 0 999px 999px;
    background:linear-gradient(90deg,var(--pink),var(--cyan));
}

.services-panel-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:28px;
}

.services-panel-top span{
    color:var(--dark);
    font-size:28px;
    font-weight:650;
    line-height:1.1;
}

.services-panel-top i{
    display:grid;
    place-items:center;
    width:48px;
    height:48px;
    border-radius:8px;
    background:#074343;
    color:#fff;
}

.services-panel-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.services-panel-list span{
    padding:14px;
    border:1px solid rgba(7,67,67,.08);
    border-radius:8px;
    background:#f8fbfb;
    color:#074343;
    font-size:14px;
    font-weight:650;
}

.services-catalog{
    padding:96px 0;
    background:#fff;
}

.services-catalog-head{
    display:grid;
    justify-items:center;
    max-width:820px;
    margin:0 auto 42px;
    text-align:center;
}

.services-catalog-head .section-kicker{
    margin-left:auto;
    margin-right:auto;
}

.services-catalog-head h2{
    margin:0;
    color:var(--dark);
    font-size:38px;
    font-weight:650;
    line-height:1.08;
}

.services-catalog-head p{
    max-width:680px;
    margin:16px auto 0;
    color:#60737b;
    font-size:16px;
    line-height:1.7;
}

.services-page-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.services-page-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:350px;
    padding:30px;
    border:1px solid rgba(7,67,67,.09);
    border-radius:8px;
    background:#fff;
    box-shadow:0 18px 50px rgba(7,67,67,.06);
    transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;
}

.services-page-card::after{
    content:"";
    position:absolute;
    left:30px;
    right:30px;
    bottom:0;
    height:4px;
    border-radius:8px 8px 0 0;
    background:linear-gradient(90deg,var(--pink),var(--cyan));
}

.services-page-card:hover{
    transform:translateY(-6px);
    border-color:rgba(227,27,120,.18);
    box-shadow:0 30px 76px rgba(7,67,67,.11);
}

.services-page-number{
    position:absolute;
    top:24px;
    right:28px;
    color:rgba(7,67,67,.06);
    font-size:48px;
    font-weight:800;
    line-height:1;
}

.services-page-icon{
    display:grid;
    place-items:center;
    width:66px;
    height:66px;
    margin-bottom:22px;
    border-radius:8px;
    background:#074343;
    color:#fff;
    font-size:26px;
}

.services-page-tag{
    display:inline-flex;
    width:max-content;
    max-width:100%;
    margin-bottom:14px;
    padding:7px 10px;
    border-radius:999px;
    background:#f3f8fa;
    color:var(--pink);
    font-size:12px;
    font-weight:800;
    line-height:1.2;
}

.services-page-card h3{
    margin:0 0 12px;
    color:var(--dark);
    font-size:22px;
    font-weight:650;
    line-height:1.18;
}

.services-page-card p{
    margin:0 0 26px;
    color:#60737b;
    font-size:15px;
    line-height:1.7;
}

.services-page-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:max-content;
    max-width:100%;
    margin-top:auto;
    color:var(--pink);
    font-size:14px;
    font-weight:800;
}

.services-included{
    padding:92px 0;
    background:#f8fbfb;
}

.services-included-grid{
    display:grid;
    grid-template-columns:minmax(280px,.42fr) minmax(0,.58fr);
    gap:56px;
    align-items:center;
}

.services-included-copy h2{
    margin:0;
    color:var(--dark);
    font-size:38px;
    font-weight:650;
    line-height:1.08;
}

.services-included-copy p{
    max-width:560px;
    margin:18px 0 0;
    color:#60737b;
    font-size:16px;
    line-height:1.72;
}

.services-included-note{
    display:flex;
    gap:14px;
    align-items:flex-start;
    max-width:560px;
    margin-top:28px;
    padding:18px;
    border:1px solid rgba(7,67,67,.10);
    border-radius:8px;
    background:#fff;
    color:#074343;
    font-size:15px;
    font-weight:650;
    line-height:1.55;
}

.services-included-note i{
    display:grid;
    flex:0 0 auto;
    place-items:center;
    width:34px;
    height:34px;
    border-radius:8px;
    background:#074343;
    color:#fff;
}

.services-included-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.services-included-card{
    display:grid;
    grid-template-columns:54px 1fr;
    gap:18px;
    min-height:176px;
    padding:22px;
    border:1px solid rgba(7,67,67,.09);
    border-radius:8px;
    background:#fff;
}

.services-included-icon{
    display:grid;
    place-items:center;
    width:54px;
    height:54px;
    border-radius:8px;
    background:#074343;
    color:var(--pink);
    font-size:20px;
}

.services-included-card h3{
    margin:0 0 10px;
    color:var(--dark);
    font-size:18px;
    font-weight:650;
    line-height:1.2;
}

.services-included-card p{
    margin:0;
    color:#60737b;
    font-size:14px;
    line-height:1.65;
}

.services-method{
    padding:88px 0;
    background:#074343;
    color:#fff;
}

.services-method .section-kicker{
    border-color:rgba(255,255,255,.18);
    background:rgba(255,255,255,.08);
    color:#fff;
}

.services-method-grid{
    display:grid;
    grid-template-columns:minmax(260px,.36fr) minmax(0,.64fr);
    gap:52px;
    align-items:start;
}

.services-method h2{
    max-width:520px;
    margin:0;
    color:#fff;
    font-size:38px;
    font-weight:650;
    line-height:1.08;
}

.services-method-steps{
    display:grid;
    gap:0;
    border-top:1px solid rgba(255,255,255,.14);
}

.services-method-steps div{
    display:grid;
    grid-template-columns:52px 160px 1fr;
    gap:18px;
    padding:22px 0;
    border-bottom:1px solid rgba(255,255,255,.14);
}

.services-method-steps span{
    color:var(--cyan);
    font-size:13px;
    font-weight:800;
    letter-spacing:.12em;
}

.services-method-steps strong{
    color:#fff;
    font-size:18px;
    font-weight:650;
}

.services-method-steps p{
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:15px;
    line-height:1.65;
}

.services-packages{
    padding:96px 0;
    background:#fff;
}

.services-packages-head{
    display:grid;
    justify-items:center;
    max-width:820px;
    margin:0 auto 40px;
    text-align:center;
}

.services-packages-head h2{
    margin:0;
    color:var(--dark);
    font-size:38px;
    font-weight:650;
    line-height:1.08;
}

.services-packages-head p{
    max-width:690px;
    margin:16px auto 0;
    color:#60737b;
    font-size:16px;
    line-height:1.7;
}

.services-packages-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.services-package-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:380px;
    padding:28px;
    border:1px solid rgba(7,67,67,.10);
    border-radius:8px;
    background:#fff;
}

.services-package-card:nth-child(2){
    border-color:rgba(227,27,120,.28);
    background:linear-gradient(180deg,#fff 0%,#fff8fb 100%);
}

.services-package-label{
    display:inline-flex;
    width:max-content;
    max-width:100%;
    margin-bottom:22px;
    padding:8px 11px;
    border-radius:999px;
    background:#f3f8fa;
    color:var(--pink);
    font-size:12px;
    font-weight:800;
    line-height:1.2;
}

.services-package-card h3{
    margin:0 0 12px;
    color:var(--dark);
    font-size:24px;
    font-weight:650;
    line-height:1.16;
}

.services-package-card p{
    margin:0 0 22px;
    color:#60737b;
    font-size:15px;
    line-height:1.7;
}

.services-package-card ul{
    display:grid;
    gap:12px;
    margin:0 0 26px;
    padding:0;
    list-style:none;
}

.services-package-card li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:#074343;
    font-size:14px;
    font-weight:650;
    line-height:1.45;
}

.services-package-card li i{
    margin-top:2px;
    color:var(--pink);
}

.services-package-card .services-page-link{
    margin-top:auto;
}

.services-page-cta{
    padding:82px 0;
    background:#fff;
}

.services-page-cta-box{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:30px;
    align-items:center;
    padding:34px;
    border:1px solid rgba(7,67,67,.10);
    border-radius:8px;
    background:#f8fbfb;
}

.services-page-cta-box h2{
    max-width:760px;
    margin:0 0 12px;
    color:var(--dark);
    font-size:34px;
    font-weight:650;
    line-height:1.08;
}

.services-page-cta-box p{
    max-width:760px;
    margin:0;
    color:#60737b;
    font-size:16px;
    line-height:1.7;
}

@media (max-width:1024px){
    .services-hero-grid,
    .services-included-grid,
    .services-method-grid{
        grid-template-columns:1fr;
    }

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

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

@media (max-width:680px){
    .services-hero-grid{
        min-height:auto;
        padding:58px 0 54px;
    }

    .services-hero-copy h1{
        font-size:34px;
        line-height:1.12;
    }

    .services-hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .services-hero-panel,
    .services-page-cta-box{
        padding:24px;
    }

    .services-panel-list,
    .services-page-grid,
    .services-included-list,
    .services-packages-grid{
        grid-template-columns:1fr;
    }

    .services-catalog,
    .services-included,
    .services-method,
    .services-packages,
    .services-page-cta{
        padding:64px 0;
    }

    .services-catalog-head h2,
    .services-included-copy h2,
    .services-method h2,
    .services-packages-head h2,
    .services-page-cta-box h2{
        font-size:30px;
        line-height:1.14;
    }

    .services-page-card{
        min-height:auto;
        padding:24px;
    }

    .services-method-steps div{
        grid-template-columns:1fr;
        gap:6px;
    }

    .services-included-card{
        grid-template-columns:1fr;
        min-height:auto;
        padding:20px;
    }

    .services-package-card{
        min-height:auto;
        padding:24px;
    }

    .services-page-cta-box{
        grid-template-columns:1fr;
    }
}
