/* =========================================================
   BIZNIS MARKET - GOOGLE ADS
   ========================================================= */

.bm-ads-page{
    --ads-dark:#0d171d;
    --ads-blue:#12aee8;
    --ads-blue-dark:#078fc3;
    --ads-text:#15191c;
    --ads-muted:#68737b;
    --ads-line:#e3e9ed;
    --ads-soft:#f4f8fa;

    width:100%;
    color:var(--ads-text);
    overflow:visible;
}

.bm-ads-page,
.bm-ads-page *,
.bm-ads-page *::before,
.bm-ads-page *::after{
    box-sizing:border-box !important;
}

.bm-ads-inner{
    width:min(1500px,94vw);
    max-width:1500px;
    margin:0 auto;
    padding-left:28px;
    padding-right:28px;
}

.bm-ads-page h2{
    margin:0;
    color:var(--ads-text);
    font-size:clamp(32px,3vw,46px);
    line-height:1.08;
    letter-spacing:-1.3px;
    font-weight:800;
}

.bm-ads-page h3{
    margin:0;
    color:var(--ads-text);
    font-size:20px;
    line-height:1.25;
    font-weight:700;
}

.bm-ads-page p{
    margin:0;
    color:var(--ads-muted);
    font-size:16px;
    line-height:1.72;
}

.bm-ads-kicker{
    display:flex;
    align-items:center;
    gap:9px;
    margin-bottom:14px;
    color:var(--ads-blue);
    font-size:11px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.bm-ads-kicker::before{
    content:"";
    width:26px;
    height:2px;
    border-radius:10px;
    background:currentColor;
}

.bm-ads-lead{
    max-width:1100px;
    font-size:17px !important;
    line-height:1.76 !important;
}


/* INTRO */

.bm-ads-intro{
    padding:62px 0 74px;
}

.bm-ads-intro-grid{
    display:grid;
    grid-template-columns:minmax(0,1.42fr) minmax(330px,.58fr);
    gap:68px;
    align-items:start;
}

.bm-ads-intro-copy h2{
    max-width:950px;
    margin-bottom:22px;
}

.bm-ads-intro-copy p{
    max-width:980px;
    margin-bottom:17px;
}

.bm-ads-intro-copy p:last-child{
    margin-bottom:0;
}

.bm-ads-intro-copy strong{
    color:var(--ads-text);
}

.bm-ads-pill-list{
    display:grid;
    gap:10px;
}

.bm-ads-pill{
    position:relative;
    padding:21px 20px 21px 65px;
    border:1px solid var(--ads-line);
    border-radius:14px;
    background:var(--ads-soft);
}

.bm-ads-pill-num{
    position:absolute;
    left:19px;
    top:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    border-radius:8px;
    background:var(--ads-dark);
    color:#fff;
    font-size:10px;
    font-weight:800;
}

.bm-ads-pill h3{
    margin-bottom:6px;
    font-size:17px;
}

.bm-ads-pill p{
    font-size:13px;
    line-height:1.55;
}


/* FULL WIDTH */

.bm-ads-dark,
.bm-ads-search,
.bm-ads-process,
.bm-ads-seo{
    position:relative;
    width:auto;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
}


/* DARK */

.bm-ads-dark{
    padding:76px 0;
    background:
        radial-gradient(circle at 88% 12%,rgba(18,174,232,.23),transparent 28%),
        linear-gradient(135deg,#0b141a,#122731);
    color:#fff;
}

.bm-ads-dark .bm-ads-kicker{
    color:#4ccafa;
}

.bm-ads-dark h2{
    max-width:1180px;
    color:#fff;
}

.bm-ads-dark > .bm-ads-inner > p{
    max-width:1240px;
    margin-top:20px;
    color:rgba(255,255,255,.72);
    font-size:17px;
}

.bm-ads-dark-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-top:42px;
}

.bm-ads-dark-card{
    min-height:205px;
    padding:28px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:17px;
    background:rgba(255,255,255,.055);
}

.bm-ads-dark-card > span{
    display:block;
    margin-bottom:20px;
    color:#51cffb;
    font-size:11px;
    font-weight:800;
}

.bm-ads-dark-card h3{
    margin-bottom:10px;
    color:#fff;
}

.bm-ads-dark-card p{
    color:rgba(255,255,255,.67);
    font-size:14px;
}


/* SERVICES */

.bm-ads-services{
    padding:78px 0;
    background:#fff;
}

.bm-ads-section-head{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(500px,.82fr);
    gap:70px;
    align-items:end;
    margin-bottom:40px;
}

.bm-ads-section-head > p{
    max-width:760px;
    justify-self:end;
    font-size:17px;
}

.bm-ads-service-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}

.bm-ads-service-card{
    min-height:270px;
    padding:28px;
    border:1px solid var(--ads-line);
    border-radius:16px;
    background:#fff;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.bm-ads-service-card:hover{
    transform:translateY(-4px);
    border-color:rgba(18,174,232,.32);
    box-shadow:0 16px 38px rgba(13,25,33,.07);
}

.bm-ads-service-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    margin-bottom:24px;
    border-radius:11px;
    background:#e9f7fc;
    color:var(--ads-blue-dark);
    font-size:0;
}

.bm-ads-service-icon::before{
    content:"";
    display:block;
    width:23px;
    height:23px;
    background:currentColor;
    -webkit-mask-position:center;
    mask-position:center;
    -webkit-mask-repeat:no-repeat;
    mask-repeat:no-repeat;
    -webkit-mask-size:23px 23px;
    mask-size:23px 23px;
}

.bm-ads-service-card h3{
    margin-bottom:10px;
}

.bm-ads-service-card p{
    font-size:14px;
    line-height:1.65;
}


/* ICONS */

.icon-research::before{
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='M15.5 15.5L21 21'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='M15.5 15.5L21 21'/%3E%3C/svg%3E");
}

.icon-structure::before{
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='8.5' y='14' width='7' height='7' rx='1'/%3E%3Cpath d='M6.5 10v2h11v-2M12 12v2'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='8.5' y='14' width='7' height='7' rx='1'/%3E%3Cpath d='M6.5 10v2h11v-2M12 12v2'/%3E%3C/svg%3E");
}

.icon-copy::before{
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 20h4L19 9a2.8 2.8 0 0 0-4-4L4 16v4Z'/%3E%3Cpath d='m13.5 6.5 4 4'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 20h4L19 9a2.8 2.8 0 0 0-4-4L4 16v4Z'/%3E%3Cpath d='m13.5 6.5 4 4'/%3E%3C/svg%3E");
}

.icon-negative::before{
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m7 7 10 10'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m7 7 10 10'/%3E%3C/svg%3E");
}

.icon-track::before{
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v3M22 12h-3M12 22v-3M2 12h3'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v3M22 12h-3M12 22v-3M2 12h3'/%3E%3C/svg%3E");
}

.icon-optimize::before{
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 17l5-5 4 3 7-8'/%3E%3Cpath d='M15 7h5v5'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 17l5-5 4 3 7-8'/%3E%3Cpath d='M15 7h5v5'/%3E%3C/svg%3E");
}


/* SEARCH */

.bm-ads-search{
    padding:74px 0;
    background:var(--ads-soft);
}

.bm-ads-search-grid{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(380px,.85fr);
    gap:74px;
    align-items:center;
}

.bm-ads-search-grid h2{
    max-width:900px;
    margin-bottom:20px;
}

.bm-ads-search-list{
    display:grid;
}

.bm-ads-search-item{
    padding:17px 0;
    border-bottom:1px solid #dce4e8;
}

.bm-ads-search-item:last-child{
    border-bottom:0;
}

.bm-ads-search-item strong{
    display:block;
    margin-bottom:4px;
    color:var(--ads-text);
    font-size:16px;
}

.bm-ads-search-item p{
    font-size:13px;
}


/* LANDING */

.bm-ads-landing{
    padding:72px 0;
    background:#fff;
}

.bm-ads-landing-box{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);
    gap:50px;
    align-items:end;
    padding:46px;
    border-radius:19px;
    background:
        radial-gradient(circle at 90% 0%,rgba(18,174,232,.24),transparent 31%),
        var(--ads-dark);
    color:#fff;
}

.bm-ads-landing-box .bm-ads-kicker{
    color:#4ccafa;
}

.bm-ads-landing-box h2{
    max-width:900px;
    margin-bottom:17px;
    color:#fff;
}

.bm-ads-landing-box p{
    max-width:950px;
    color:rgba(255,255,255,.70);
}

.bm-ads-landing-side{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.bm-ads-landing-side > span{
    margin-bottom:12px;
    color:rgba(255,255,255,.52);
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.bm-ads-landing-side a{
    display:inline-flex;
    align-items:center;
    min-height:46px;
    padding:12px 18px;
    border-radius:8px;
    background:var(--ads-blue);
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}


/* PROCESS */

.bm-ads-process{
    padding:76px 0;
    background:
        radial-gradient(circle at 15% 100%,rgba(18,174,232,.12),transparent 30%),
        var(--ads-dark);
}

.bm-ads-process .bm-ads-kicker{
    color:#4ccafa;
}

.bm-ads-process h2{
    color:#fff;
}

.bm-ads-process > .bm-ads-inner > p{
    max-width:950px;
    margin-top:18px;
    color:rgba(255,255,255,.68);
}

.bm-ads-process-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:0;
    margin-top:42px;
    border-top:1px solid rgba(255,255,255,.13);
}

.bm-ads-step{
    padding:28px 24px 0 0;
}

.bm-ads-step + .bm-ads-step{
    padding-left:20px;
}

.bm-ads-step > span{
    display:block;
    margin-bottom:16px;
    color:#4ccafa;
    font-size:11px;
    font-weight:800;
}

.bm-ads-step h3{
    margin-bottom:9px;
    color:#fff;
    font-size:17px;
}

.bm-ads-step p{
    color:rgba(255,255,255,.62);
    font-size:13px;
    line-height:1.6;
}


/* SEO */

.bm-ads-seo{
    padding:74px 0;
    background:var(--ads-soft);
}

.bm-ads-seo-grid{
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(360px,.8fr);
    gap:72px;
    align-items:center;
}

.bm-ads-seo-grid h2{
    max-width:900px;
    margin-bottom:20px;
}

.bm-ads-seo-card{
    padding:30px;
    border:1px solid var(--ads-line);
    border-radius:17px;
    background:#fff;
}

.bm-ads-seo-card strong{
    display:block;
    margin-bottom:9px;
    color:var(--ads-text);
    font-size:19px;
}

.bm-ads-seo-card p{
    margin-bottom:16px;
    font-size:14px;
}

.bm-ads-seo-card a{
    color:var(--ads-blue-dark);
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}


/* FAQ */

.bm-ads-faq{
    padding:70px 0 54px;
    background:#fff;
}

.bm-ads-faq h2{
    max-width:1100px;
    margin-bottom:10px;
}

.bm-ads-faq-intro{
    max-width:1100px;
    font-size:17px !important;
}

.bm-ads-page .bm-service-faq-list{
    display:grid;
    gap:11px;
    margin-top:34px;
}

.bm-ads-page .bm-service-faq-item{
    overflow:hidden;
    border:1px solid var(--ads-line);
    border-radius:14px;
    background:#fff;
    box-shadow:0 7px 22px rgba(13,25,33,.035);
}

.bm-ads-page .bm-service-faq-question{
    position:relative;
    display:flex;
    align-items:center;
    min-height:69px;
    padding:18px 68px 18px 24px;
    color:var(--ads-text);
    font-size:16px;
    line-height:1.4;
    font-weight:700;
    cursor:pointer;
}

.bm-ads-page .bm-service-faq-question:hover{
    background:#f8fbfc;
}

.bm-ads-page .bm-service-faq-item.is-open .bm-service-faq-question{
    color:#087fa9;
    background:#f5fafc;
}

.bm-ads-page .bm-service-faq-icon{
    position:absolute;
    right:21px;
    top:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    transform:translateY(-50%);
    border-radius:50%;
    background:#eaf8fd;
    color:var(--ads-blue-dark);
    font-size:21px;
}

.bm-ads-page .bm-service-faq-item.is-open .bm-service-faq-icon{
    background:var(--ads-blue);
    color:#fff;
}

.bm-ads-page .bm-service-faq-answer{
    display:none;
    padding:0 24px 22px;
    background:#f5fafc;
}

.bm-ads-page .bm-service-faq-item.is-open .bm-service-faq-answer{
    display:block;
}

.bm-ads-page .bm-service-faq-answer p{
    max-width:1200px;
    padding-top:18px;
    border-top:1px solid rgba(18,174,232,.13);
    font-size:15px;
}


/* FINAL */

.bm-ads-final{
    padding:0 0 12px;
}

.bm-ads-final-box{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:30px;
    align-items:center;
    padding:42px 46px;
    border-radius:18px;
    background:
        radial-gradient(circle at 90% 15%,rgba(18,174,232,.20),transparent 31%),
        var(--ads-dark);
}

.bm-ads-final-box h2{
    max-width:1050px;
    margin-bottom:9px;
    color:#fff;
    font-size:34px;
}

.bm-ads-final-box p{
    max-width:970px;
    color:rgba(255,255,255,.68);
    font-size:15px;
}

.bm-ads-final-box > a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:13px 21px;
    border-radius:9px;
    background:var(--ads-blue);
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
}


/* OVERFLOW */

html,
body{
    max-width:100%;
    overflow-x:hidden;
}

@supports (overflow:clip){
    html,
    body{
        overflow-x:clip;
    }
}


/* RESPONSIVE */

@media(max-width:1100px){

    .bm-ads-service-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:991px){

    .bm-ads-intro-grid,
    .bm-ads-section-head,
    .bm-ads-search-grid,
    .bm-ads-landing-box,
    .bm-ads-seo-grid{
        grid-template-columns:1fr;
    }

    .bm-ads-dark-grid{
        grid-template-columns:1fr;
    }

    .bm-ads-process-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .bm-ads-section-head > p{
        justify-self:start;
        max-width:900px;
    }

    .bm-ads-final-box{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .bm-ads-inner{
        width:min(100%,94vw);
        padding-left:10px;
        padding-right:10px;
    }

    .bm-ads-intro,
    .bm-ads-dark,
    .bm-ads-services,
    .bm-ads-search,
    .bm-ads-landing,
    .bm-ads-process,
    .bm-ads-seo,
    .bm-ads-faq{
        padding-top:50px;
        padding-bottom:50px;
    }

    .bm-ads-service-grid,
    .bm-ads-process-grid{
        grid-template-columns:1fr;
    }

    .bm-ads-step,
    .bm-ads-step + .bm-ads-step{
        padding:21px 0;
        border-bottom:1px solid rgba(255,255,255,.12);
    }

    .bm-ads-landing-box,
    .bm-ads-final-box{
        padding:29px 24px;
    }

    .bm-ads-landing-side a,
    .bm-ads-final-box > a{
        width:100%;
    }

    .bm-ads-page .bm-service-faq-question{
        min-height:64px;
        padding:16px 57px 16px 17px;
        font-size:15px;
    }

    .bm-ads-page .bm-service-faq-icon{
        right:15px;
        width:30px;
        height:30px;
    }

    .bm-ads-page .bm-service-faq-answer{
        padding:0 17px 18px;
    }

}