
/* Control Basics — Professional Service Pages */
.service-page{
    --cb-blue:#0b8fe9;
    --cb-blue-dark:#071624;
    --cb-ink:#101820;
    --cb-muted:#5f6b76;
    --cb-line:#e5ebf0;
    --cb-surface:#ffffff;
    --cb-soft:#f5f8fb;
    width:100%;
    min-height:100vh;
    background:#fff;
    color:var(--cb-ink);
    box-sizing:border-box;
    overflow:hidden;
}
.service-page *{box-sizing:border-box}
.service-page .service-container{
    width:min(1180px, calc(100% - 48px));
    margin:0 auto;
}
.service-page .service-hero{
    position:relative;
    padding:clamp(34px,5vw,76px) 0 clamp(42px,6vw,88px);
    background:
      radial-gradient(circle at 12% 20%, rgba(11,143,233,.10), transparent 30%),
      linear-gradient(180deg,#f8fbfd 0%,#fff 100%);
}
.service-page .service-hero:before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:linear-gradient(rgba(11,143,233,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(11,143,233,.035) 1px,transparent 1px);
    background-size:42px 42px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.7),transparent 78%);
}
.service-page .service-hero-grid{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    align-items:center;
    gap:clamp(34px,6vw,86px);
}
.service-page.rtl .service-hero-grid{direction:rtl}
.service-page.ltr .service-hero-grid{direction:ltr}
.service-page .service-copy{max-width:610px}
.service-page.rtl .service-copy{text-align:right}
.service-page.ltr .service-copy{text-align:left}
.service-page .service-kicker{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:16px;
    padding:8px 14px;
    border:1px solid rgba(11,143,233,.18);
    border-radius:999px;
    background:rgba(255,255,255,.84);
    color:var(--cb-blue);
    font-size:14px;
    font-weight:700;
    letter-spacing:.02em;
}
.service-page .service-kicker:before{
    content:"";
    width:8px;height:8px;border-radius:50%;
    background:var(--cb-blue);
    box-shadow:0 0 0 5px rgba(11,143,233,.10);
}
.service-page .service-title{
    margin:0 0 18px;
    color:var(--cb-blue-dark);
    font-size:clamp(30px,4vw,52px);
    line-height:1.15;
    font-weight:800;
}
.service-page .service-description{
    margin:0;
    color:#4f5d68;
    font-size:clamp(16px,1.45vw,19px);
    line-height:2;
    font-weight:400;
}
.service-page .service-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}
.service-page.rtl .service-actions{justify-content:flex-start}
.service-page.ltr .service-actions{justify-content:flex-start}
.service-page .service-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:50px;
    padding:12px 22px;
    border-radius:12px;
    text-decoration:none!important;
    font-weight:700;
    border:1px solid transparent;
    transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.service-page .service-cta:hover{transform:translateY(-2px)}
.service-page .service-cta.primary{
    background:linear-gradient(135deg,#18a3f4,#087fda);
    color:#fff!important;
    box-shadow:0 10px 25px rgba(11,143,233,.22);
}
.service-page .service-cta.secondary{
    background:#fff;
    color:var(--cb-blue-dark)!important;
    border-color:#dce5ec;
}
.service-page .service-cta.secondary:hover{box-shadow:0 8px 20px rgba(16,24,32,.08)}
.service-page .service-cta img{
    width:20px;height:20px;object-fit:contain;display:block;
}
.service-page .service-visual{
    position:relative;
    min-width:0;
}
.service-page .service-visual-frame{
    position:relative;
    min-height:clamp(310px,38vw,500px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:clamp(24px,4vw,52px);
    overflow:hidden;
    border:1px solid rgba(11,143,233,.16);
    border-radius:28px;
    background:
      radial-gradient(circle at 50% 35%,rgba(11,143,233,.10),transparent 42%),
      linear-gradient(145deg,#fff,#f1f6fa);
    box-shadow:0 25px 70px rgba(7,22,36,.12);
}
.service-page .service-visual-frame:before{
    content:"";
    position:absolute;
    inset:14px;
    border:1px solid rgba(11,143,233,.09);
    border-radius:20px;
    pointer-events:none;
}
.service-page .service-visual-frame:after{
    content:"";
    position:absolute;
    width:180px;height:180px;
    right:-80px;bottom:-90px;
    border-radius:50%;
    background:rgba(11,143,233,.08);
}
.service-page .service-visual img{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    height:clamp(220px,30vw,400px);
    object-fit:contain;
    object-position:center;
    border-radius:18px;
    filter:drop-shadow(0 18px 24px rgba(7,22,36,.12));
}
.service-page .service-visual-label{
    position:absolute;
    z-index:2;
    left:22px;
    bottom:20px;
    padding:8px 12px;
    border-radius:9px;
    background:rgba(7,22,36,.88);
    color:#fff;
    font-size:12px;
    font-weight:700;
}
.service-page .service-scope{
    padding:clamp(42px,6vw,78px) 0;
    background:#fff;
}
.service-page .section-heading{
    margin-bottom:30px;
}
.service-page.rtl .section-heading{text-align:right}
.service-page.ltr .section-heading{text-align:left}
.service-page .section-heading h2{
    margin:0 0 8px;
    color:var(--cb-blue-dark);
    font-size:clamp(24px,3vw,34px);
    line-height:1.25;
    font-weight:800;
}
.service-page .section-heading p{
    margin:0;
    color:var(--cb-muted);
    font-size:16px;
    line-height:1.8;
}
.service-page .scope-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:16px;
}
.service-page .scope-card{
    min-height:140px;
    padding:20px 18px;
    border:1px solid var(--cb-line);
    border-radius:16px;
    background:#fff;
    box-shadow:0 8px 24px rgba(7,22,36,.045);
    transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.service-page .scope-card:hover{
    transform:translateY(-4px);
    border-color:rgba(11,143,233,.25);
    box-shadow:0 14px 30px rgba(7,22,36,.09);
}
.service-page .scope-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;height:32px;
    margin-bottom:14px;
    border-radius:9px;
    background:#e9f6ff;
    color:var(--cb-blue);
    font-size:13px;
    font-weight:800;
}
.service-page.rtl .scope-number{margin-right:0}
.service-page .scope-card span:last-child{
    display:block;
    color:#263640;
    font-size:15px;
    line-height:1.7;
    font-weight:700;
}
.service-page .service-note{
    margin-top:30px;
    padding:22px 24px;
    border-radius:16px;
    background:linear-gradient(135deg,#071624,#102a3e);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.service-page.rtl .service-note{flex-direction:row}
.service-page.ltr .service-note{flex-direction:row}
.service-page .service-note strong{font-size:18px}
.service-page .service-note p{margin:4px 0 0;color:#c8d6df;line-height:1.7;font-size:14px}
.service-page .service-note a{white-space:nowrap}
.service-page .service-footer-space{height:8px;background:#fff}

@media (max-width:1100px){
    .service-page .scope-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .service-page .service-hero-grid{gap:42px}
}
@media (max-width:767px){
    .service-page .service-container{width:min(100% - 30px,680px)}
    .service-page .service-hero{padding:30px 0 50px}
    .service-page .service-hero-grid{grid-template-columns:1fr;gap:30px}
    .service-page .service-visual{order:-1}
    .service-page .service-visual-frame{min-height:300px;border-radius:22px;padding:24px}
    .service-page .service-visual img{height:245px}
    .service-page .service-copy,
    .service-page.rtl .service-copy,
    .service-page.ltr .service-copy{text-align:center}
    .service-page .service-actions{justify-content:center}
    .service-page .service-description{font-size:16px;line-height:1.9}
    .service-page .section-heading,
    .service-page.rtl .section-heading,
    .service-page.ltr .section-heading{text-align:center}
    .service-page .scope-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
    .service-page .scope-card{min-height:125px;padding:16px 14px}
    .service-page .service-note{flex-direction:column!important;text-align:center}
}
@media (max-width:480px){
    .service-page .service-container{width:calc(100% - 22px)}
    .service-page .service-title{font-size:29px}
    .service-page .service-kicker{font-size:12px}
    .service-page .service-actions{flex-direction:column;width:100%}
    .service-page .service-cta{width:100%}
    .service-page .service-visual-frame{min-height:250px;padding:18px}
    .service-page .service-visual img{height:205px}
    .service-page .scope-grid{grid-template-columns:1fr}
    .service-page .scope-card{min-height:auto}
    .service-page .service-note{padding:20px 16px}
}

.service-page .brand-section{padding:0 0 clamp(44px,6vw,76px);background:#fff}
.service-page .brand-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.service-page .brand-card{height:100px;display:flex;align-items:center;justify-content:center;padding:14px 18px;border:1px solid var(--cb-line);border-radius:14px;background:#fff;box-shadow:0 7px 20px rgba(7,22,36,.04)}
.service-page .brand-card img{display:block;max-width:100%;max-height:58px;width:auto;height:auto;object-fit:contain}
@media (max-width:767px){.service-page .brand-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:420px){.service-page .brand-grid{grid-template-columns:1fr}}
