/* =========================================================
   BIZNIS MARKET - ISTRAŽIVANJE TRŽIŠTA
   ========================================================= */

.bm-research-page{
    --research-dark:#0d171d;
    --research-blue:#12aee8;
    --research-blue-dark:#078fc3;
    --research-text:#15191c;
    --research-muted:#68737b;
    --research-line:#e3e9ed;
    --research-soft:#f4f8fa;

    width:100%;
    color:var(--research-text);
    overflow:visible;
}

.bm-research-page,
.bm-research-page *,
.bm-research-page *::before,
.bm-research-page *::after{
    box-sizing:border-box !important;
}

.bm-research-inner{
    width:min(1500px,94vw);
    max-width:1500px;
    margin:0 auto;
    padding-left:28px;
    padding-right:28px;
}

.bm-research-page h2{
    margin:0;
    color:var(--research-text);
    font-size:clamp(32px,3vw,46px);
    line-height:1.08;
    letter-spacing:-1.3px;
    font-weight:800;
}

.bm-research-page h3{
    margin:0;
    color:var(--research-text);
    font-size:20px;
    line-height:1.25;
    font-weight:700;
}

.bm-research-page p{
    margin:0;
    color:var(--research-muted);
    font-size:16px;
    line-height:1.72;
}

.bm-research-kicker{
    display:flex;
    align-items:center;
    gap:9px;
    margin-bottom:14px;
    color:var(--research-blue);
    font-size:11px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.bm-research-kicker::before{
    content:"";
    width:26px;
    height:2px;
    border-radius:10px;
    background:currentColor;
}

.bm-research-lead{
    max-width:1100px;
    font-size:17px !important;
    line-height:1.76 !important;
}


/* INTRO */

.bm-research-intro{
    padding:62px 0 74px;
}

.bm-research-intro-grid{
    display:grid;
    grid-template-columns:minmax(0,1.42fr) minmax(330px,.58fr);
    gap:68px;
    align-items:start;
}

.bm-research-intro-copy h2{
    max-width:950px;
    margin-bottom:22px;
}

.bm-research-intro-copy p{
    max-width:980px;
    margin-bottom:17px;
}

.bm-research-intro-copy p:last-child{
    margin-bottom:0;
}

.bm-research-intro-copy strong{
    color:var(--research-text);
}

.bm-research-pill-list{
    display:grid;
    gap:10px;
}

.bm-research-pill{
    position:relative;
    padding:21px 20px 21px 65px;
    border:1px solid var(--research-line);
    border-radius:14px;
    background:var(--research-soft);
}

.bm-research-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(--research-dark);
    color:#fff;

    font-size:10px;
    font-weight:800;
}

.bm-research-pill h3{
    margin-bottom:6px;
    font-size:17px;
}

.bm-research-pill p{
    font-size:13px;
    line-height:1.55;
}


/* FULL WIDTH BACKGROUNDS */

.bm-research-dark,
.bm-research-location,
.bm-research-process,
.bm-research-method{
    position:relative;
    width:auto;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
}


/* DARK */

.bm-research-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-research-dark .bm-research-kicker{
    color:#4ccafa;
}

.bm-research-dark h2{
    max-width:1180px;
    color:#fff;
}

.bm-research-dark > .bm-research-inner > p{
    max-width:1240px;
    margin-top:20px;
    color:rgba(255,255,255,.72);
    font-size:17px;
}

.bm-research-dark-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-top:42px;
}

.bm-research-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-research-dark-card > span{
    display:block;
    margin-bottom:20px;
    color:#51cffb;
    font-size:11px;
    font-weight:800;
}

.bm-research-dark-card h3{
    margin-bottom:10px;
    color:#fff;
}

.bm-research-dark-card p{
    color:rgba(255,255,255,.67);
    font-size:14px;
}


/* SERVICES */

.bm-research-services{
    padding:78px 0;
    background:#fff;
}

.bm-research-section-head{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(500px,.82fr);
    gap:70px;
    align-items:end;
    margin-bottom:40px;
}

.bm-research-section-head > p{
    max-width:760px;
    justify-self:end;
    font-size:17px;
}

.bm-research-service-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}

.bm-research-service-card{
    min-height:270px;
    padding:28px;

    border:1px solid var(--research-line);
    border-radius:16px;

    background:#fff;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.bm-research-service-card:hover{
    transform:translateY(-4px);
    border-color:rgba(18,174,232,.32);
    box-shadow:0 16px 38px rgba(13,25,33,.07);
}

.bm-research-service-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:44px;
    height:44px;

    margin-bottom:24px;

    border-radius:11px;
    background:#e9f7fc;
    color:var(--research-blue-dark);

    font-size:0;
}

.bm-research-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-research-service-card h3{
    margin-bottom:10px;
}

.bm-research-service-card p{
    font-size:14px;
    line-height:1.65;
}


/* ICONS */

.icon-competition::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%3Cpath d='M4 20V10h5v10M10 20V4h5v16M16 20v-7h4v7M3 20h18'/%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%3Cpath d='M4 20V10h5v10M10 20V4h5v16M16 20v-7h4v7M3 20h18'/%3E%3C/svg%3E");
}

.icon-price::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%3Cpath d='M20 13 13 20 4 11V4h7l9 9Z'/%3E%3Ccircle cx='8' cy='8' r='1.5'/%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%3Cpath d='M20 13 13 20 4 11V4h7l9 9Z'/%3E%3Ccircle cx='8' cy='8' r='1.5'/%3E%3C/svg%3E");
}

.icon-location::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%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%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%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.icon-customer::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='9' cy='8' r='3'/%3E%3Cpath d='M3 19c0-3.3 2.7-6 6-6s6 2.7 6 6M16 6a3 3 0 0 1 0 5.8M17 14c2.4.5 4 2.4 4 5'/%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='9' cy='8' r='3'/%3E%3Cpath d='M3 19c0-3.3 2.7-6 6-6s6 2.7 6 6M16 6a3 3 0 0 1 0 5.8M17 14c2.4.5 4 2.4 4 5'/%3E%3C/svg%3E");
}

.icon-entry::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='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%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='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E");
}

.icon-position::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");
}


/* LOCATION */

.bm-research-location{
    padding:74px 0;
    background:var(--research-soft);
}

.bm-research-location-grid{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(380px,.85fr);
    gap:74px;
    align-items:center;
}

.bm-research-location-grid h2{
    max-width:900px;
    margin-bottom:20px;
}

.bm-research-location-list{
    display:grid;
}

.bm-research-location-item{
    padding:17px 0;
    border-bottom:1px solid #dce4e8;
}

.bm-research-location-item:last-child{
    border-bottom:0;
}

.bm-research-location-item strong{
    display:block;
    margin-bottom:4px;
    color:var(--research-text);
    font-size:16px;
}

.bm-research-location-item p{
    font-size:13px;
}


/* ADAPTATION */

.bm-research-adaptation{
    padding:72px 0;
    background:#fff;
}

.bm-research-adaptation-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(--research-dark);

    color:#fff;
}

.bm-research-adaptation-box .bm-research-kicker{
    color:#4ccafa;
}

.bm-research-adaptation-box h2{
    max-width:900px;
    margin-bottom:17px;
    color:#fff;
}

.bm-research-adaptation-box p{
    max-width:950px;
    color:rgba(255,255,255,.70);
}

.bm-research-adaptation-side{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.bm-research-adaptation-side > span{
    margin-bottom:12px;
    color:rgba(255,255,255,.52);
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.bm-research-adaptation-side a{
    display:inline-flex;
    align-items:center;
    min-height:46px;
    padding:12px 18px;
    border-radius:8px;
    background:var(--research-blue);
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}


/* PROCESS */

.bm-research-process{
    padding:76px 0;

    background:
        radial-gradient(circle at 15% 100%,rgba(18,174,232,.12),transparent 30%),
        var(--research-dark);
}

.bm-research-process .bm-research-kicker{
    color:#4ccafa;
}

.bm-research-process h2{
    color:#fff;
}

.bm-research-process > .bm-research-inner > p{
    max-width:950px;
    margin-top:18px;
    color:rgba(255,255,255,.68);
}

.bm-research-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-research-step{
    padding:28px 24px 0 0;
}

.bm-research-step + .bm-research-step{
    padding-left:20px;
}

.bm-research-step > span{
    display:block;
    margin-bottom:16px;
    color:#4ccafa;
    font-size:11px;
    font-weight:800;
}

.bm-research-step h3{
    margin-bottom:9px;
    color:#fff;
    font-size:17px;
}

.bm-research-step p{
    color:rgba(255,255,255,.62);
    font-size:13px;
    line-height:1.6;
}


/* METHOD */

.bm-research-method{
    padding:74px 0;
    background:var(--research-soft);
}

.bm-research-method-grid{
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(360px,.8fr);
    gap:72px;
    align-items:center;
}

.bm-research-method-grid h2{
    max-width:900px;
    margin-bottom:20px;
}

.bm-research-method-card{
    padding:30px;
    border:1px solid var(--research-line);
    border-radius:17px;
    background:#fff;
}

.bm-research-method-card strong{
    display:block;
    margin-bottom:9px;
    color:var(--research-text);
    font-size:19px;
}

.bm-research-method-card p{
    margin-bottom:16px;
    font-size:14px;
}

.bm-research-method-card a{
    color:var(--research-blue-dark);
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}


/* FAQ */

.bm-research-faq{
    padding:70px 0 54px;
    background:#fff;
}

.bm-research-faq h2{
    max-width:1100px;
    margin-bottom:10px;
}

.bm-research-faq-intro{
    max-width:1100px;
    font-size:17px !important;
}

.bm-research-page .bm-service-faq-list{
    display:grid;
    gap:11px;
    margin-top:34px;
}

.bm-research-page .bm-service-faq-item{
    overflow:hidden;
    border:1px solid var(--research-line);
    border-radius:14px;
    background:#fff;
    box-shadow:0 7px 22px rgba(13,25,33,.035);
}

.bm-research-page .bm-service-faq-question{
    position:relative;
    display:flex;
    align-items:center;
    min-height:69px;
    padding:18px 68px 18px 24px;
    color:var(--research-text);
    font-size:16px;
    line-height:1.4;
    font-weight:700;
    cursor:pointer;
}

.bm-research-page .bm-service-faq-question:hover{
    background:#f8fbfc;
}

.bm-research-page .bm-service-faq-item.is-open .bm-service-faq-question{
    color:#087fa9;
    background:#f5fafc;
}

.bm-research-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(--research-blue-dark);

    font-size:21px;
}

.bm-research-page .bm-service-faq-item.is-open .bm-service-faq-icon{
    background:var(--research-blue);
    color:#fff;
}

.bm-research-page .bm-service-faq-answer{
    display:none;
    padding:0 24px 22px;
    background:#f5fafc;
}

.bm-research-page .bm-service-faq-item.is-open .bm-service-faq-answer{
    display:block;
}

.bm-research-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-research-final{
    padding:0 0 12px;
}

.bm-research-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(--research-dark);
}

.bm-research-final-box h2{
    max-width:1050px;
    margin-bottom:9px;
    color:#fff;
    font-size:34px;
}

.bm-research-final-box p{
    max-width:970px;
    color:rgba(255,255,255,.68);
    font-size:15px;
}

.bm-research-final-box > a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:48px;
    padding:13px 21px;

    border-radius:9px;

    background:var(--research-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-research-service-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:991px){

    .bm-research-intro-grid,
    .bm-research-section-head,
    .bm-research-location-grid,
    .bm-research-adaptation-box,
    .bm-research-method-grid{
        grid-template-columns:1fr;
    }

    .bm-research-dark-grid{
        grid-template-columns:1fr;
    }

    .bm-research-process-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .bm-research-section-head > p{
        justify-self:start;
        max-width:900px;
    }

    .bm-research-final-box{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .bm-research-inner{
        width:min(100%,94vw);
        padding-left:10px;
        padding-right:10px;
    }

    .bm-research-intro,
    .bm-research-dark,
    .bm-research-services,
    .bm-research-location,
    .bm-research-adaptation,
    .bm-research-process,
    .bm-research-method,
    .bm-research-faq{
        padding-top:50px;
        padding-bottom:50px;
    }

    .bm-research-service-grid,
    .bm-research-process-grid{
        grid-template-columns:1fr;
    }

    .bm-research-step,
    .bm-research-step + .bm-research-step{
        padding:21px 0;
        border-bottom:1px solid rgba(255,255,255,.12);
    }

    .bm-research-adaptation-box,
    .bm-research-final-box{
        padding:29px 24px;
    }

    .bm-research-adaptation-side a,
    .bm-research-final-box > a{
        width:100%;
    }

    .bm-research-page .bm-service-faq-question{
        min-height:64px;
        padding:16px 57px 16px 17px;
        font-size:15px;
    }

    .bm-research-page .bm-service-faq-icon{
        right:15px;
        width:30px;
        height:30px;
    }

    .bm-research-page .bm-service-faq-answer{
        padding:0 17px 18px;
    }

}