/* =========================================================
   SERVICE COMMERCE
   shared template:
   catalog + shop
   ========================================================= */

.svc-page {
    --svc-blue: #176fe8;
    --svc-blue-2: #28a8f5;
    --svc-dark: #101a2b;
    --svc-text: #66758b;
    --svc-border: #dfe8f3;
    --svc-bg: #f6faff;

    color: var(--svc-dark);
}


/* =========================================================
   BREADCRUMBS
   ========================================================= */

.svc-breadcrumbs {
    padding-top: 18px;
}


/* =========================================================
   HERO
   ========================================================= */

.svc-hero {
    position: relative;

    padding: 58px 0 76px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(63,174,255,.15),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fff 0%,
            #f5faff 100%
        );
}


.svc-hero__grid {
    display: grid;

    grid-template-columns:
        minmax(0, .93fr)
        minmax(420px, 1.07fr);

    gap: 70px;

    align-items: center;
}


.svc-hero__content {
    max-width: 720px;
}


.svc-hero__label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 17px;
    padding: 7px 13px;

    border-radius: 999px;

    background: #eaf4ff;
    color: #086ce9;

    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}


.svc-hero__title {
    margin: 0;

    color: var(--svc-dark);

    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.03;
    font-weight: 750;
    letter-spacing: -.035em;
}


.svc-hero__description {
    max-width: 660px;

    margin: 21px 0 0;

    color: var(--svc-text);

    font-size: 17px;
    line-height: 1.65;
}


.svc-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 31px;
}


.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 22px;

    border: 0;
    border-radius: 12px;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease,
        border-color .2s ease;
}


.svc-btn--primary {
    background:
        linear-gradient(
            135deg,
            #126de7,
            #238ff2
        );

    color: #fff;

    box-shadow:
        0 12px 28px rgba(23,111,232,.22);
}


.svc-btn--secondary {
    gap: 10px;

    border: 1px solid #d7e2ee;

    background: #fff;
    color: #182236;
}


.svc-btn--light {
    flex: 0 0 auto;

    background: #fff;
    color: #126de7;

    box-shadow:
        0 12px 30px rgba(0,0,0,.10);
}


@media (hover:hover) {

    .svc-btn:hover {
        transform: translateY(-2px);
    }

    .svc-btn--primary:hover {
        box-shadow:
            0 17px 34px rgba(23,111,232,.29);
    }

    .svc-btn--secondary:hover {
        border-color: #b9d5f8;

        box-shadow:
            0 12px 28px rgba(25,70,120,.07);
    }

}


.svc-hero__note {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 23px;

    color: #778499;

    font-size: 13px;
    line-height: 1.45;
}


.svc-hero__note p {
    margin: 0;
}


.svc-hero__note > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 22px;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #e2f8ec;
    color: #18a55e;

    font-weight: 800;
}


/* visual */

.svc-hero__visual {
    position: relative;

    min-height: 460px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.svc-hero__visual-bg {
    position: absolute;

    inset: 4%;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(40,168,245,.13),
            rgba(255,255,255,0) 62%
        );
}


.svc-hero__image-wrap {
    position: relative;
    z-index: 2;

    width: min(100%, 680px);

    padding: 14px;

    border: 1px solid rgba(203,219,237,.75);
    border-radius: 28px;

    background: rgba(255,255,255,.78);

    box-shadow:
        0 28px 70px rgba(28,72,120,.13);

    backdrop-filter: blur(8px);

    transform: perspective(1100px)
               rotateY(-3deg)
               rotateX(1deg);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.svc-hero__image {
    display: block;

    width: 100%;
    max-height: 410px;

    border-radius: 18px;

    object-fit: contain;
}


.svc-hero__visual-label {
    position: absolute;
    z-index: 3;

    right: 1%;
    bottom: 12%;

    padding: 9px 14px;

    border: 1px solid rgba(255,255,255,.9);
    border-radius: 999px;

    background: rgba(255,255,255,.88);

    color: #2373db;

    font-size: 11px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(30,77,125,.12);

    backdrop-filter: blur(10px);
}


@media (hover:hover) {

    .svc-hero__visual:hover
    .svc-hero__image-wrap {
        transform:
            perspective(1100px)
            rotateY(0)
            rotateX(0)
            translateY(-5px);

        box-shadow:
            0 35px 78px rgba(28,72,120,.17);
    }

}


/* points */

.svc-hero__points {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    margin-top: 42px;

    border: 1px solid var(--svc-border);
    border-radius: 18px;

    background: rgba(255,255,255,.82);

    overflow: hidden;

    box-shadow:
        0 16px 40px rgba(20,60,105,.045);
}


.svc-hero-point {
    display: flex;
    align-items: center;

    gap: 11px;

    min-height: 78px;

    padding: 18px 22px;

    border-right: 1px solid var(--svc-border);
}


.svc-hero-point:last-child {
    border-right: 0;
}


.svc-hero-point > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    border-radius: 9px;

    background: #e8f3ff;
    color: #1372eb;

    font-size: 12px;
}


.svc-hero-point strong {
    color: #263349;

    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   COMMON SECTION HEAD
   ========================================================= */

.svc-section-head {
    max-width: 780px;

    margin-bottom: 38px;
}


.svc-section-head--center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.svc-section-label {
    display: inline-flex;

    margin-bottom: 13px;
    padding: 7px 12px;

    border-radius: 999px;

    background: #eaf4ff;
    color: #086ce9;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}


.svc-section-title {
    margin: 0;

    color: var(--svc-dark);

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -.025em;
}


.svc-section-intro {
    max-width: 720px;

    margin: 14px 0 0;

    color: var(--svc-text);

    font-size: 16px;
    line-height: 1.6;
}


.svc-section-head--center
.svc-section-intro {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

.svc-capabilities {
    padding: 90px 0;

    background: #fff;
}


.svc-cap-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 16px;
}


.svc-cap-card {
    position: relative;

    min-height: 205px;

    padding: 27px;

    border: 1px solid var(--svc-border);
    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fbfdff
        );

    box-shadow:
        0 12px 35px rgba(24,62,105,.04);

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}


.svc-cap-card__num {
    margin-bottom: 27px;

    color: #1873ec;

    font-size: 12px;
    font-weight: 800;
}


.svc-cap-card__title {
    margin: 0 0 9px;

    color: #182337;

    font-size: 19px;
    line-height: 1.3;
}


.svc-cap-card__text {
    margin: 0;

    color: #718096;

    font-size: 14px;
    line-height: 1.6;
}


@media (hover:hover) {

    .svc-cap-card:hover {
        transform: translateY(-5px);

        border-color: #bddafb;

        box-shadow:
            0 24px 50px rgba(23,73,130,.09);
    }

}


/* =========================================================
   RESOURCE CONTENT
   ========================================================= */

.svc-resource-content {
    padding: 82px 0;

    background: #f6faff;
}


.svc-resource-content__inner {
    max-width: 1100px;

    margin: 0 auto;

    color: #617087;

    font-size: 16px;
    line-height: 1.75;
}


.svc-resource-content__inner h2 {
    margin:
        45px 0
        17px;

    color: var(--svc-dark);

    font-size: clamp(28px,3vw,38px);
    line-height: 1.15;
}


.svc-resource-content__inner h2:first-child {
    margin-top: 0;
}


.svc-resource-content__inner h3 {
    margin:
        32px 0
        12px;

    color: #182337;

    font-size: 22px;
}


.svc-resource-content__inner p {
    margin:
        0 0
        17px;
}


.svc-resource-content__inner ul,
.svc-resource-content__inner ol {
    padding-left: 22px;
}


/* =========================================================
   STRUCTURE
   ========================================================= */

.svc-structure {
    padding: 92px 0;

    background:
        linear-gradient(
            180deg,
            #f7fbff,
            #f2f8ff
        );
}


.svc-structure__diagram {
    position: relative;

    max-width: 1160px;

    margin: 0 auto;
}


.svc-structure__root {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    width: fit-content;

    gap: 12px;

    margin: 0 auto 46px;
    padding: 14px 21px;

    border: 1px solid #bfdafa;
    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 15px 38px rgba(24,75,130,.08);
}


.svc-structure__root-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    background: #eaf4ff;
    color: #1071ea;
}


.svc-structure__root-icon svg {
    width: 20px;
}


.svc-structure__root strong {
    font-size: 15px;
}


.svc-structure__line {
    position: absolute;

    top: 67px;
    bottom: 20px;

    left: 50%;

    width: 1px;

    background:
        linear-gradient(
            #1675ef,
            rgba(22,117,239,.15)
        );
}


.svc-structure__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 14px 80px;
}


.svc-structure-item {
    display: flex;
    align-items: center;

    gap: 14px;

    min-height: 72px;

    padding: 15px 19px;

    border: 1px solid #dce7f2;
    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 11px 28px rgba(30,65,105,.04);

    transition:
        transform .25s ease,
        border-color .25s ease;
}


.svc-structure-item:nth-child(odd) {
    margin-right: 22px;
}


.svc-structure-item:nth-child(even) {
    margin-left: 22px;
}


.svc-structure-item__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 39px;

    width: 39px;
    height: 39px;

    border-radius: 11px;

    background: #eaf4ff;
    color: #1071ea;

    font-size: 11px;
    font-weight: 800;
}


.svc-structure-item__text {
    color: #344257;

    font-size: 14px;
    line-height: 1.4;
}


@media (hover:hover) {

    .svc-structure-item:hover {
        transform: translateY(-3px);

        border-color: #b9d7fa;
    }

}


/* =========================================================
   RESULT
   ========================================================= */

.svc-result {
    padding: 90px 0;

    background: #fff;
}


.svc-result__grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 16px;
}


.svc-result-card {
    padding: 27px;

    border: 1px solid var(--svc-border);
    border-radius: 20px;

    background: #fff;
}


.svc-result-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 21px;

    border-radius: 14px;

    background: #eaf4ff;
    color: #1071ea;
}


.svc-result-card__icon svg {
    width: 23px;
    height: 23px;
}


.svc-result-card h3 {
    margin:
        0 0
        8px;

    color: #192438;

    font-size: 18px;
}


.svc-result-card p {
    margin: 0;

    color: #718096;

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   CASES
   ========================================================= */

.svc-cases {
    padding: 90px 0 94px;

    background: #f6faff;
}


.svc-cases__grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 18px;
}


.svc-case {
    overflow: hidden;

    border: 1px solid var(--svc-border);
    border-radius: 21px;

    background: #fff;

    box-shadow:
        0 14px 38px rgba(20,60,105,.04);

    transition:
        transform .28s ease,
        box-shadow .28s ease;
}


.svc-case__image {
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #edf3fa;
}


.svc-case__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;

    transition: transform .4s ease;
}


.svc-case__content {
    padding: 23px;
}


.svc-case__type {
    display: inline-flex;

    margin-bottom: 10px;
    padding: 6px 10px;

    border-radius: 999px;

    background: #edf5ff;
    color: #1071ea;

    font-size: 10px;
    font-weight: 700;
}


.svc-case h3 {
    margin:
        0 0
        10px;

    color: #182337;

    font-size: 20px;
}


.svc-case p {
    margin: 0;

    color: #718096;

    font-size: 13px;
    line-height: 1.6;
}


.svc-case__tags {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 18px;
}


.svc-case__tags span {
    padding: 6px 9px;

    border-radius: 999px;

    background: #f0f5fb;
    color: #50627b;

    font-size: 10px;
    font-weight: 600;
}


.svc-cases__action {
    margin-top: 28px;
}


@media (hover:hover) {

    .svc-case:hover {
        transform: translateY(-5px);

        box-shadow:
            0 25px 52px rgba(20,67,120,.09);
    }

    .svc-case:hover
    .svc-case__image img {
        transform: scale(1.03);
    }

}


/* =========================================================
   CTA
   ========================================================= */

.svc-cta {
    padding: 82px 0;

    background: #fff;
}


.svc-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 48px 54px;

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(62,181,255,.30),
            transparent 35%
        ),
        #111d30;

    color: #fff;

    box-shadow:
        0 24px 60px rgba(10,35,70,.13);
}


.svc-cta__label {
    display: inline-block;

    margin-bottom: 10px;

    color: #87c7ff;

    font-size: 12px;
    font-weight: 700;
}


.svc-cta h2 {
    margin:
        0 0
        10px;

    color: #fff;

    font-size: clamp(30px,4vw,44px);
    line-height: 1.1;
}


.svc-cta p {
    max-width: 650px;

    margin: 0;

    color: #c2ccda;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   FAQ
   ========================================================= */

.svc-faq {
    padding: 90px 0;

    background: #f7fbff;
}


.svc-faq__grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:
        0 34px;

    max-width: 1200px;

    margin: 0 auto;
}


.svc-faq-item {
    border-bottom:
        1px solid #dce5ef;
}


.svc-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 76px;

    padding: 18px 0;

    list-style: none;

    color: #192438;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    cursor: pointer;
}


.svc-faq-item__question::-webkit-details-marker {
    display: none;
}


.svc-faq-item__plus {
    position: relative;

    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    border: 1px solid #b9dafa;
    border-radius: 7px;

    background: #eef6ff;
}


.svc-faq-item__plus::before,
.svc-faq-item__plus::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    background: #0e72eb;

    transform:
        translate(-50%,-50%);

    transition:
        transform .2s ease,
        opacity .2s ease;
}


.svc-faq-item__plus::before {
    width: 10px;
    height: 1px;
}


.svc-faq-item__plus::after {
    width: 1px;
    height: 10px;
}


.svc-faq-item[open]
.svc-faq-item__plus::after {
    opacity: 0;

    transform:
        translate(-50%,-50%)
        rotate(90deg);
}


.svc-faq-item__answer {
    padding:
        0 42px
        20px 0;
}


.svc-faq-item__answer p {
    margin: 0;

    color: #708096;

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .svc-hero__grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .svc-hero__visual {
        min-height: 360px;
    }


    .svc-hero__image-wrap {
        max-width: 700px;
    }


    .svc-cap-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .svc-result__grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .svc-cases__grid {
        grid-template-columns: 1fr;

        max-width: 760px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .svc-hero {
        padding:
            38px 0
            55px;
    }


    .svc-hero__title {
        font-size: 40px;
    }


    .svc-hero__description {
        font-size: 15px;
        line-height: 1.55;
    }


    .svc-hero__actions {
        align-items: stretch;
    }


    .svc-btn {
        width: 100%;
    }


    .svc-hero__visual {
        min-height: auto;
    }


    .svc-hero__image-wrap {
        padding: 8px;

        border-radius: 20px;

        transform: none;
    }


    .svc-hero__image {
        border-radius: 14px;
    }


    .svc-hero__visual-label {
        display: none;
    }


    .svc-hero__points {
        grid-template-columns: 1fr;
    }


    .svc-hero-point {
        min-height: 62px;

        border-right: 0;
        border-bottom:
            1px solid var(--svc-border);
    }


    .svc-hero-point:last-child {
        border-bottom: 0;
    }


    .svc-capabilities,
    .svc-resource-content,
    .svc-structure,
    .svc-result,
    .svc-cases,
    .svc-faq {
        padding: 62px 0;
    }


    .svc-section-title {
        font-size: 34px;
    }


    .svc-section-intro {
        font-size: 14px;
    }


    .svc-cap-grid {
        grid-template-columns: 1fr;
    }


    .svc-cap-card {
        min-height: 0;

        padding: 22px;
    }


    .svc-structure__line {
        left: 21px;
    }


    .svc-structure__root {
        margin-left: 0;
        margin-right: 0;
    }


    .svc-structure__grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .svc-structure-item,
    .svc-structure-item:nth-child(odd),
    .svc-structure-item:nth-child(even) {
        margin: 0 0 0 44px;
    }


    .svc-result__grid {
        grid-template-columns: 1fr;
    }


    .svc-cta {
        padding: 55px 0;
    }


    .svc-cta__inner {
        display: grid;

        padding: 32px 24px;

        border-radius: 21px;
    }


    .svc-faq__grid {
        grid-template-columns: 1fr;
    }

}